Remove size from public image ID JWT

This commit is contained in:
Deluan 2023-01-11 18:14:34 -05:00 committed by Deluan Quintão
parent 8f0d002922
commit 69e0a266f4
11 changed files with 150 additions and 87 deletions

View file

@ -5,6 +5,8 @@ import (
"time"
"github.com/google/uuid"
"github.com/navidrome/navidrome/utils/slice"
"golang.org/x/exp/maps"
"github.com/navidrome/navidrome/model"
)
@ -34,7 +36,7 @@ func (m *MockMediaFileRepo) SetData(mfs model.MediaFiles) {
func (m *MockMediaFileRepo) Exists(id string) (bool, error) {
if m.err {
return false, errors.New("Error!")
return false, errors.New("error")
}
_, found := m.data[id]
return found, nil
@ -42,7 +44,7 @@ func (m *MockMediaFileRepo) Exists(id string) (bool, error) {
func (m *MockMediaFileRepo) Get(id string) (*model.MediaFile, error) {
if m.err {
return nil, errors.New("Error!")
return nil, errors.New("error")
}
if d, ok := m.data[id]; ok {
return d, nil
@ -50,6 +52,16 @@ func (m *MockMediaFileRepo) Get(id string) (*model.MediaFile, error) {
return nil, model.ErrNotFound
}
func (m *MockMediaFileRepo) GetAll(...model.QueryOptions) (model.MediaFiles, error) {
if m.err {
return nil, errors.New("error")
}
values := maps.Values(m.data)
return slice.Map(values, func(p *model.MediaFile) model.MediaFile {
return *p
}), nil
}
func (m *MockMediaFileRepo) Put(mf *model.MediaFile) error {
if m.err {
return errors.New("error")
@ -75,7 +87,7 @@ func (m *MockMediaFileRepo) IncPlayCount(id string, timestamp time.Time) error {
func (m *MockMediaFileRepo) FindByAlbum(artistId string) (model.MediaFiles, error) {
if m.err {
return nil, errors.New("Error!")
return nil, errors.New("error")
}
var res = make(model.MediaFiles, len(m.data))
i := 0