mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Make sure album is updated if external cover changes
This commit is contained in:
parent
f5719a7571
commit
9ec349dce0
4 changed files with 28 additions and 11 deletions
|
@ -5,6 +5,7 @@ import (
|
|||
"fmt"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/Masterminds/squirrel"
|
||||
"github.com/navidrome/navidrome/log"
|
||||
|
@ -93,7 +94,11 @@ func (r *refresher) refreshAlbums(ids ...string) error {
|
|||
for _, group := range grouped {
|
||||
songs := model.MediaFiles(group)
|
||||
a := songs.ToAlbum()
|
||||
a.ImageFiles = r.getImageFiles(songs.Dirs())
|
||||
var updatedAt time.Time
|
||||
a.ImageFiles, updatedAt = r.getImageFiles(songs.Dirs())
|
||||
if updatedAt.After(a.UpdatedAt) {
|
||||
a.UpdatedAt = updatedAt
|
||||
}
|
||||
err := repo.Put(&a)
|
||||
if err != nil {
|
||||
return err
|
||||
|
@ -102,14 +107,19 @@ func (r *refresher) refreshAlbums(ids ...string) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (r *refresher) getImageFiles(dirs []string) string {
|
||||
func (r *refresher) getImageFiles(dirs []string) (string, time.Time) {
|
||||
var imageFiles []string
|
||||
var updatedAt time.Time
|
||||
for _, dir := range dirs {
|
||||
for _, img := range r.dirMap[dir].Images {
|
||||
stats := r.dirMap[dir]
|
||||
for _, img := range stats.Images {
|
||||
imageFiles = append(imageFiles, filepath.Join(dir, img))
|
||||
}
|
||||
if stats.ImagesUpdatedAt.After(updatedAt) {
|
||||
updatedAt = stats.ImagesUpdatedAt
|
||||
}
|
||||
}
|
||||
return strings.Join(imageFiles, string(filepath.ListSeparator))
|
||||
return strings.Join(imageFiles, string(filepath.ListSeparator)), updatedAt
|
||||
}
|
||||
|
||||
func (r *refresher) refreshArtists(ids ...string) error {
|
||||
|
|
|
@ -20,6 +20,7 @@ type (
|
|||
Path string
|
||||
ModTime time.Time
|
||||
Images []string
|
||||
ImagesUpdatedAt time.Time
|
||||
HasPlaylist bool
|
||||
AudioFilesCount uint32
|
||||
}
|
||||
|
@ -93,12 +94,15 @@ func loadDir(ctx context.Context, dirPath string) ([]string, *dirStats, error) {
|
|||
if fileInfo.ModTime().After(stats.ModTime) {
|
||||
stats.ModTime = fileInfo.ModTime()
|
||||
}
|
||||
if utils.IsAudioFile(entry.Name()) {
|
||||
switch {
|
||||
case utils.IsAudioFile(entry.Name()):
|
||||
stats.AudioFilesCount++
|
||||
} else {
|
||||
stats.HasPlaylist = stats.HasPlaylist || model.IsValidPlaylist(entry.Name())
|
||||
if utils.IsImageFile(entry.Name()) {
|
||||
stats.Images = append(stats.Images, entry.Name())
|
||||
case model.IsValidPlaylist(entry.Name()):
|
||||
stats.HasPlaylist = true
|
||||
case utils.IsImageFile(entry.Name()):
|
||||
stats.Images = append(stats.Images, entry.Name())
|
||||
if fileInfo.ModTime().After(stats.ImagesUpdatedAt) {
|
||||
stats.ImagesUpdatedAt = fileInfo.ModTime()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue