mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
* fix(artwork): get the first image from vorbis comments, not the last. fixes #3254 This uses a fork for now. * fix(artwork): prioritize getting embedded types that are listed as "front" covers * fix: cleanup
64 lines
1.4 KiB
Go
64 lines
1.4 KiB
Go
package artwork
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"time"
|
|
|
|
"github.com/navidrome/navidrome/conf"
|
|
"github.com/navidrome/navidrome/model"
|
|
)
|
|
|
|
type mediafileArtworkReader struct {
|
|
cacheKey
|
|
a *artwork
|
|
mediafile model.MediaFile
|
|
album model.Album
|
|
}
|
|
|
|
func newMediafileArtworkReader(ctx context.Context, artwork *artwork, artID model.ArtworkID) (*mediafileArtworkReader, error) {
|
|
mf, err := artwork.ds.MediaFile(ctx).Get(artID.ID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
al, err := artwork.ds.Album(ctx).Get(mf.AlbumID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
a := &mediafileArtworkReader{
|
|
a: artwork,
|
|
mediafile: *mf,
|
|
album: *al,
|
|
}
|
|
a.cacheKey.artID = artID
|
|
if al.UpdatedAt.After(mf.UpdatedAt) {
|
|
a.cacheKey.lastUpdate = al.UpdatedAt
|
|
} else {
|
|
a.cacheKey.lastUpdate = mf.UpdatedAt
|
|
}
|
|
return a, nil
|
|
}
|
|
|
|
func (a *mediafileArtworkReader) Key() string {
|
|
return fmt.Sprintf(
|
|
"%s.%t",
|
|
a.cacheKey.Key(),
|
|
conf.Server.EnableMediaFileCoverArt,
|
|
)
|
|
}
|
|
func (a *mediafileArtworkReader) LastUpdated() time.Time {
|
|
return a.lastUpdate
|
|
}
|
|
|
|
func (a *mediafileArtworkReader) Reader(ctx context.Context) (io.ReadCloser, string, error) {
|
|
var ff []sourceFunc
|
|
if a.mediafile.CoverArtID().Kind == model.KindMediaFileArtwork {
|
|
ff = []sourceFunc{
|
|
fromTag(ctx, a.mediafile.Path),
|
|
fromFFmpegTag(ctx, a.a.ffmpeg, a.mediafile.Path),
|
|
}
|
|
}
|
|
ff = append(ff, fromAlbum(ctx, a.a, a.mediafile.AlbumCoverArtID()))
|
|
return selectImageReader(ctx, a.artID, ff...)
|
|
}
|