mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
PreCache Playlists CoverArt
This commit is contained in:
parent
14032a524b
commit
0c7c6ba020
5 changed files with 34 additions and 12 deletions
|
@ -73,3 +73,10 @@ func artworkIDFromMediaFile(mf MediaFile) ArtworkID {
|
||||||
ID: mf.ID,
|
ID: mf.ID,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func artworkIDFromPlaylist(pls Playlist) ArtworkID {
|
||||||
|
return ArtworkID{
|
||||||
|
Kind: KindPlaylistArtwork,
|
||||||
|
ID: pls.ID,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -94,6 +94,10 @@ func (pls *Playlist) AddMediaFiles(mfs MediaFiles) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (pls Playlist) CoverArtID() ArtworkID {
|
||||||
|
return artworkIDFromPlaylist(pls)
|
||||||
|
}
|
||||||
|
|
||||||
type Playlists []Playlist
|
type Playlists []Playlist
|
||||||
|
|
||||||
type PlaylistRepository interface {
|
type PlaylistRepository interface {
|
||||||
|
|
|
@ -9,18 +9,20 @@ import (
|
||||||
"github.com/mattn/go-zglob"
|
"github.com/mattn/go-zglob"
|
||||||
"github.com/navidrome/navidrome/conf"
|
"github.com/navidrome/navidrome/conf"
|
||||||
"github.com/navidrome/navidrome/core"
|
"github.com/navidrome/navidrome/core"
|
||||||
|
"github.com/navidrome/navidrome/core/artwork"
|
||||||
"github.com/navidrome/navidrome/log"
|
"github.com/navidrome/navidrome/log"
|
||||||
"github.com/navidrome/navidrome/model"
|
"github.com/navidrome/navidrome/model"
|
||||||
)
|
)
|
||||||
|
|
||||||
type playlistImporter struct {
|
type playlistImporter struct {
|
||||||
ds model.DataStore
|
ds model.DataStore
|
||||||
pls core.Playlists
|
pls core.Playlists
|
||||||
rootFolder string
|
cacheWarmer artwork.CacheWarmer
|
||||||
|
rootFolder string
|
||||||
}
|
}
|
||||||
|
|
||||||
func newPlaylistImporter(ds model.DataStore, playlists core.Playlists, rootFolder string) *playlistImporter {
|
func newPlaylistImporter(ds model.DataStore, playlists core.Playlists, cacheWarmer artwork.CacheWarmer, rootFolder string) *playlistImporter {
|
||||||
return &playlistImporter{ds: ds, pls: playlists, rootFolder: rootFolder}
|
return &playlistImporter{ds: ds, pls: playlists, cacheWarmer: cacheWarmer, rootFolder: rootFolder}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *playlistImporter) processPlaylists(ctx context.Context, dir string) int64 {
|
func (s *playlistImporter) processPlaylists(ctx context.Context, dir string) int64 {
|
||||||
|
@ -46,6 +48,7 @@ func (s *playlistImporter) processPlaylists(ctx context.Context, dir string) int
|
||||||
} else {
|
} else {
|
||||||
log.Debug("Imported playlist", "name", pls.Name, "lastUpdated", pls.UpdatedAt, "path", pls.Path, "numTracks", pls.SongCount)
|
log.Debug("Imported playlist", "name", pls.Name, "lastUpdated", pls.UpdatedAt, "path", pls.Path, "numTracks", pls.SongCount)
|
||||||
}
|
}
|
||||||
|
s.cacheWarmer.PreCache(pls.CoverArtID())
|
||||||
count++
|
count++
|
||||||
}
|
}
|
||||||
return count
|
return count
|
||||||
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"context"
|
"context"
|
||||||
|
|
||||||
"github.com/navidrome/navidrome/core"
|
"github.com/navidrome/navidrome/core"
|
||||||
|
"github.com/navidrome/navidrome/core/artwork"
|
||||||
|
|
||||||
"github.com/navidrome/navidrome/conf"
|
"github.com/navidrome/navidrome/conf"
|
||||||
"github.com/navidrome/navidrome/consts"
|
"github.com/navidrome/navidrome/consts"
|
||||||
|
@ -17,6 +18,7 @@ var _ = Describe("playlistImporter", func() {
|
||||||
var ds model.DataStore
|
var ds model.DataStore
|
||||||
var ps *playlistImporter
|
var ps *playlistImporter
|
||||||
var pls core.Playlists
|
var pls core.Playlists
|
||||||
|
var cw artwork.CacheWarmer
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
|
@ -25,6 +27,8 @@ var _ = Describe("playlistImporter", func() {
|
||||||
MockedPlaylist: &mockedPlaylist{},
|
MockedPlaylist: &mockedPlaylist{},
|
||||||
}
|
}
|
||||||
pls = core.NewPlaylists(ds)
|
pls = core.NewPlaylists(ds)
|
||||||
|
|
||||||
|
cw = &noopCacheWarmer{}
|
||||||
})
|
})
|
||||||
|
|
||||||
Describe("processPlaylists", func() {
|
Describe("processPlaylists", func() {
|
||||||
|
@ -33,19 +37,19 @@ var _ = Describe("playlistImporter", func() {
|
||||||
conf.Server.PlaylistsPath = consts.DefaultPlaylistsPath
|
conf.Server.PlaylistsPath = consts.DefaultPlaylistsPath
|
||||||
})
|
})
|
||||||
It("finds and import playlists at the top level", func() {
|
It("finds and import playlists at the top level", func() {
|
||||||
ps = newPlaylistImporter(ds, pls, "tests/fixtures/playlists/subfolder1")
|
ps = newPlaylistImporter(ds, pls, cw, "tests/fixtures/playlists/subfolder1")
|
||||||
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists/subfolder1")).To(Equal(int64(1)))
|
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists/subfolder1")).To(Equal(int64(1)))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("finds and import playlists at any subfolder level", func() {
|
It("finds and import playlists at any subfolder level", func() {
|
||||||
ps = newPlaylistImporter(ds, pls, "tests")
|
ps = newPlaylistImporter(ds, pls, cw, "tests")
|
||||||
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists/subfolder1")).To(Equal(int64(1)))
|
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists/subfolder1")).To(Equal(int64(1)))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
It("ignores playlists not in the PlaylistsPath", func() {
|
It("ignores playlists not in the PlaylistsPath", func() {
|
||||||
conf.Server.PlaylistsPath = "subfolder1"
|
conf.Server.PlaylistsPath = "subfolder1"
|
||||||
ps = newPlaylistImporter(ds, pls, "tests/fixtures/playlists")
|
ps = newPlaylistImporter(ds, pls, cw, "tests/fixtures/playlists")
|
||||||
|
|
||||||
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists/subfolder1")).To(Equal(int64(1)))
|
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists/subfolder1")).To(Equal(int64(1)))
|
||||||
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists/subfolder2")).To(Equal(int64(0)))
|
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists/subfolder2")).To(Equal(int64(0)))
|
||||||
|
@ -53,7 +57,7 @@ var _ = Describe("playlistImporter", func() {
|
||||||
|
|
||||||
It("only imports playlists from the root of MusicFolder if PlaylistsPath is '.'", func() {
|
It("only imports playlists from the root of MusicFolder if PlaylistsPath is '.'", func() {
|
||||||
conf.Server.PlaylistsPath = "."
|
conf.Server.PlaylistsPath = "."
|
||||||
ps = newPlaylistImporter(ds, pls, "tests/fixtures/playlists")
|
ps = newPlaylistImporter(ds, pls, cw, "tests/fixtures/playlists")
|
||||||
|
|
||||||
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists")).To(Equal(int64(3)))
|
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists")).To(Equal(int64(3)))
|
||||||
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists/subfolder1")).To(Equal(int64(0)))
|
Expect(ps.processPlaylists(ctx, "tests/fixtures/playlists/subfolder1")).To(Equal(int64(0)))
|
||||||
|
@ -77,10 +81,14 @@ type mockedPlaylist struct {
|
||||||
model.PlaylistRepository
|
model.PlaylistRepository
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *mockedPlaylist) FindByPath(path string) (*model.Playlist, error) {
|
func (r *mockedPlaylist) FindByPath(_ string) (*model.Playlist, error) {
|
||||||
return nil, model.ErrNotFound
|
return nil, model.ErrNotFound
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *mockedPlaylist) Put(pls *model.Playlist) error {
|
func (r *mockedPlaylist) Put(_ *model.Playlist) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type noopCacheWarmer struct{}
|
||||||
|
|
||||||
|
func (a *noopCacheWarmer) PreCache(_ model.ArtworkID) {}
|
||||||
|
|
|
@ -34,7 +34,7 @@ type TagScanner struct {
|
||||||
func NewTagScanner(rootFolder string, ds model.DataStore, playlists core.Playlists, cacheWarmer artwork.CacheWarmer) FolderScanner {
|
func NewTagScanner(rootFolder string, ds model.DataStore, playlists core.Playlists, cacheWarmer artwork.CacheWarmer) FolderScanner {
|
||||||
s := &TagScanner{
|
s := &TagScanner{
|
||||||
rootFolder: rootFolder,
|
rootFolder: rootFolder,
|
||||||
plsSync: newPlaylistImporter(ds, playlists, rootFolder),
|
plsSync: newPlaylistImporter(ds, playlists, cacheWarmer, rootFolder),
|
||||||
ds: ds,
|
ds: ds,
|
||||||
cacheWarmer: cacheWarmer,
|
cacheWarmer: cacheWarmer,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue