mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Log artwork origin (tag, file, etc...)
This commit is contained in:
parent
92b42b35b3
commit
e0da1d1589
2 changed files with 29 additions and 27 deletions
|
@ -15,7 +15,6 @@ import (
|
||||||
"reflect"
|
"reflect"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/dhowden/tag"
|
"github.com/dhowden/tag"
|
||||||
"github.com/disintegration/imaging"
|
"github.com/disintegration/imaging"
|
||||||
|
@ -122,16 +121,6 @@ func (a *artwork) extractMediaFileImage(ctx context.Context, artID model.Artwork
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *artwork) fromAlbum(ctx context.Context, id model.ArtworkID) func() (io.ReadCloser, string) {
|
|
||||||
return func() (io.ReadCloser, string) {
|
|
||||||
r, path, err := a.get(ctx, id, 0)
|
|
||||||
if err != nil {
|
|
||||||
return nil, ""
|
|
||||||
}
|
|
||||||
return r, path
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a *artwork) resizedFromOriginal(ctx context.Context, artID model.ArtworkID, size int) (io.ReadCloser, string, error) {
|
func (a *artwork) resizedFromOriginal(ctx context.Context, artID model.ArtworkID, size int) (io.ReadCloser, string, error) {
|
||||||
r, path, err := a.get(ctx, artID, 0)
|
r, path, err := a.get(ctx, artID, 0)
|
||||||
if err != nil || r == nil {
|
if err != nil || r == nil {
|
||||||
|
@ -141,18 +130,27 @@ func (a *artwork) resizedFromOriginal(ctx context.Context, artID model.ArtworkID
|
||||||
usePng := strings.ToLower(filepath.Ext(path)) == ".png"
|
usePng := strings.ToLower(filepath.Ext(path)) == ".png"
|
||||||
r, err = resizeImage(r, size, usePng)
|
r, err = resizeImage(r, size, usePng)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warn("Could not resize image", "artID", artID, "size", size, err)
|
log.Warn(ctx, "Could not resize image. Using placeholder", "artID", artID, "size", size, err)
|
||||||
r, path := fromPlaceholder()()
|
r, path := fromPlaceholder()()
|
||||||
return r, path, nil
|
return r, path, nil
|
||||||
}
|
}
|
||||||
return r, fmt.Sprintf("%s@%d", path, size), nil
|
return r, fmt.Sprintf("%s@%d", path, size), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func extractImage(ctx context.Context, artID model.ArtworkID, extractFuncs ...func() (io.ReadCloser, string)) (io.ReadCloser, string) {
|
type fromFunc func() (io.ReadCloser, string)
|
||||||
|
|
||||||
|
func (f fromFunc) String() string {
|
||||||
|
name := runtime.FuncForPC(reflect.ValueOf(f).Pointer()).Name()
|
||||||
|
name = strings.TrimPrefix(name, "github.com/navidrome/navidrome/core.")
|
||||||
|
name = strings.TrimSuffix(name, ".func1")
|
||||||
|
return name
|
||||||
|
}
|
||||||
|
|
||||||
|
func extractImage(ctx context.Context, artID model.ArtworkID, extractFuncs ...fromFunc) (io.ReadCloser, string) {
|
||||||
for _, f := range extractFuncs {
|
for _, f := range extractFuncs {
|
||||||
r, path := f()
|
r, path := f()
|
||||||
if r != nil {
|
if r != nil {
|
||||||
log.Trace(ctx, "Found artwork", "artID", artID, "path", path, "from", getFunctionName(f))
|
log.Trace(ctx, "Found artwork", "artID", artID, "path", path, "origin", f)
|
||||||
return r, path
|
return r, path
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -160,16 +158,19 @@ func extractImage(ctx context.Context, artID model.ArtworkID, extractFuncs ...fu
|
||||||
return nil, ""
|
return nil, ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func getFunctionName(i interface{}) string {
|
func (a *artwork) fromAlbum(ctx context.Context, id model.ArtworkID) fromFunc {
|
||||||
name := runtime.FuncForPC(reflect.ValueOf(i).Pointer()).Name()
|
return func() (io.ReadCloser, string) {
|
||||||
name = strings.TrimPrefix(name, "github.com/navidrome/navidrome/core.")
|
r, path, err := a.get(ctx, id, 0)
|
||||||
name = strings.TrimSuffix(name, ".func1")
|
if err != nil {
|
||||||
return name
|
return nil, ""
|
||||||
|
}
|
||||||
|
return r, path
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// This is a bit unoptimized, but we need to make sure the priority order of validNames
|
// This is a bit unoptimized, but we need to make sure the priority order of validNames
|
||||||
// is preserved (i.e. png is better than jpg)
|
// is preserved (i.e. png is better than jpg)
|
||||||
func fromExternalFile(files string, validNames ...string) func() (io.ReadCloser, string) {
|
func fromExternalFile(files string, validNames ...string) fromFunc {
|
||||||
return func() (io.ReadCloser, string) {
|
return func() (io.ReadCloser, string) {
|
||||||
fileList := filepath.SplitList(files)
|
fileList := filepath.SplitList(files)
|
||||||
for _, validName := range validNames {
|
for _, validName := range validNames {
|
||||||
|
@ -189,7 +190,7 @@ func fromExternalFile(files string, validNames ...string) func() (io.ReadCloser,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func fromTag(path string) func() (io.ReadCloser, string) {
|
func fromTag(path string) fromFunc {
|
||||||
return func() (io.ReadCloser, string) {
|
return func() (io.ReadCloser, string) {
|
||||||
if path == "" {
|
if path == "" {
|
||||||
return nil, ""
|
return nil, ""
|
||||||
|
@ -213,7 +214,7 @@ func fromTag(path string) func() (io.ReadCloser, string) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func fromFFmpegTag(ctx context.Context, ffmpeg ffmpeg.FFmpeg, path string) func() (io.ReadCloser, string) {
|
func fromFFmpegTag(ctx context.Context, ffmpeg ffmpeg.FFmpeg, path string) fromFunc {
|
||||||
return func() (io.ReadCloser, string) {
|
return func() (io.ReadCloser, string) {
|
||||||
if path == "" {
|
if path == "" {
|
||||||
return nil, ""
|
return nil, ""
|
||||||
|
@ -226,7 +227,7 @@ func fromFFmpegTag(ctx context.Context, ffmpeg ffmpeg.FFmpeg, path string) func(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func fromPlaceholder() func() (io.ReadCloser, string) {
|
func fromPlaceholder() fromFunc {
|
||||||
return func() (io.ReadCloser, string) {
|
return func() (io.ReadCloser, string) {
|
||||||
r, _ := resources.FS().Open(consts.PlaceholderAlbumArt)
|
r, _ := resources.FS().Open(consts.PlaceholderAlbumArt)
|
||||||
return r, consts.PlaceholderAlbumArt
|
return r, consts.PlaceholderAlbumArt
|
||||||
|
@ -265,7 +266,6 @@ type artworkKey struct {
|
||||||
a *artwork
|
a *artwork
|
||||||
artID model.ArtworkID
|
artID model.ArtworkID
|
||||||
size int
|
size int
|
||||||
lastUpdate time.Time
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (k *artworkKey) Key() string {
|
func (k *artworkKey) Key() string {
|
||||||
|
|
|
@ -252,6 +252,8 @@ func addFields(logger *logrus.Entry, keyValuePairs []interface{}) *logrus.Entry
|
||||||
switch v := keyValuePairs[i+1].(type) {
|
switch v := keyValuePairs[i+1].(type) {
|
||||||
case time.Duration:
|
case time.Duration:
|
||||||
logger = logger.WithField(name, ShortDur(v))
|
logger = logger.WithField(name, ShortDur(v))
|
||||||
|
case fmt.Stringer:
|
||||||
|
logger = logger.WithField(name, v.String())
|
||||||
default:
|
default:
|
||||||
logger = logger.WithField(name, v)
|
logger = logger.WithField(name, v)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue