mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
29 lines
682 B
Go
29 lines
682 B
Go
package scanner2
|
|
|
|
import (
|
|
"io/fs"
|
|
"time"
|
|
|
|
"github.com/navidrome/navidrome/model"
|
|
)
|
|
|
|
type folderEntry struct {
|
|
scanCtx *scanContext
|
|
path string // Full path
|
|
id string // DB ID
|
|
updTime time.Time // From DB
|
|
modTime time.Time // From FS
|
|
audioFiles map[string]fs.DirEntry
|
|
imageFiles map[string]fs.DirEntry
|
|
playlists []fs.DirEntry
|
|
imagesUpdatedAt time.Time
|
|
tracks model.MediaFiles
|
|
albums model.Albums
|
|
artists model.Artists
|
|
tags model.FlattenedTags
|
|
missingTracks model.MediaFiles
|
|
}
|
|
|
|
func (f *folderEntry) isExpired() bool {
|
|
return f.updTime.Before(f.modTime)
|
|
}
|