mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
Fix album's image_files
This commit is contained in:
parent
0c3ac906b8
commit
b68ed2e4f9
1 changed files with 59 additions and 0 deletions
|
@ -0,0 +1,59 @@
|
||||||
|
package migrations
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/navidrome/navidrome/consts"
|
||||||
|
"github.com/navidrome/navidrome/log"
|
||||||
|
"github.com/pressly/goose"
|
||||||
|
"golang.org/x/exp/slices"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
goose.AddMigration(upChangeImageFilesListSeparator, downChangeImageFilesListSeparator)
|
||||||
|
}
|
||||||
|
|
||||||
|
func upChangeImageFilesListSeparator(tx *sql.Tx) error {
|
||||||
|
//nolint:gosec
|
||||||
|
rows, err := tx.Query(`select id, image_files from album`)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
stmt, err := tx.Prepare("update album set image_files = ? where id = ?")
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
var id, imageFiles string
|
||||||
|
for rows.Next() {
|
||||||
|
err = rows.Scan(&id, &imageFiles)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
files := upChangeImageFilesListSeparatorDirs(imageFiles)
|
||||||
|
if files == imageFiles {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
_, err = stmt.Exec(files, id)
|
||||||
|
if err != nil {
|
||||||
|
log.Error("Error updating album's image file list", "files", files, "id", id, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return rows.Err()
|
||||||
|
}
|
||||||
|
|
||||||
|
func upChangeImageFilesListSeparatorDirs(filePaths string) string {
|
||||||
|
allPaths := filepath.SplitList(filePaths)
|
||||||
|
slices.Sort(allPaths)
|
||||||
|
allPaths = slices.Compact(allPaths)
|
||||||
|
return strings.Join(allPaths, consts.Zwsp)
|
||||||
|
}
|
||||||
|
|
||||||
|
func downChangeImageFilesListSeparator(tx *sql.Tx) error {
|
||||||
|
// This code is executed when the migration is rolled back.
|
||||||
|
return nil
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue