mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Refactor file type functions
This commit is contained in:
parent
9ec349dce0
commit
8c1cd9c273
10 changed files with 75 additions and 98 deletions
|
@ -402,7 +402,7 @@ func loadAllAudioFiles(dirPath string) (map[string]fs.DirEntry, error) {
|
|||
continue
|
||||
}
|
||||
filePath := filepath.Join(dirPath, f.Name())
|
||||
if !utils.IsAudioFile(filePath) {
|
||||
if !model.IsAudioFile(filePath) {
|
||||
continue
|
||||
}
|
||||
fileInfos[filePath] = f
|
||||
|
|
|
@ -95,11 +95,11 @@ func loadDir(ctx context.Context, dirPath string) ([]string, *dirStats, error) {
|
|||
stats.ModTime = fileInfo.ModTime()
|
||||
}
|
||||
switch {
|
||||
case utils.IsAudioFile(entry.Name()):
|
||||
case model.IsAudioFile(entry.Name()):
|
||||
stats.AudioFilesCount++
|
||||
case model.IsValidPlaylist(entry.Name()):
|
||||
stats.HasPlaylist = true
|
||||
case utils.IsImageFile(entry.Name()):
|
||||
case model.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