mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
feat(server): add more logs to backup
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
d60e83176c
commit
ba2623e3f1
1 changed files with 5 additions and 3 deletions
|
@ -36,19 +36,19 @@ func backupOrRestore(ctx context.Context, isBackup bool, path string) error {
|
||||||
// heavily inspired by https://codingrabbits.dev/posts/go_and_sqlite_backup_and_maybe_restore/
|
// heavily inspired by https://codingrabbits.dev/posts/go_and_sqlite_backup_and_maybe_restore/
|
||||||
existingConn, err := Db().Conn(ctx)
|
existingConn, err := Db().Conn(ctx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return fmt.Errorf("getting existing connection: %w", err)
|
||||||
}
|
}
|
||||||
defer existingConn.Close()
|
defer existingConn.Close()
|
||||||
|
|
||||||
backupDb, err := sql.Open(Driver, path)
|
backupDb, err := sql.Open(Driver, path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return fmt.Errorf("opening backup database in '%s': %w", path, err)
|
||||||
}
|
}
|
||||||
defer backupDb.Close()
|
defer backupDb.Close()
|
||||||
|
|
||||||
backupConn, err := backupDb.Conn(ctx)
|
backupConn, err := backupDb.Conn(ctx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return fmt.Errorf("getting backup connection: %w", err)
|
||||||
}
|
}
|
||||||
defer backupConn.Close()
|
defer backupConn.Close()
|
||||||
|
|
||||||
|
@ -102,6 +102,7 @@ func backupOrRestore(ctx context.Context, isBackup bool, path string) error {
|
||||||
|
|
||||||
func Backup(ctx context.Context) (string, error) {
|
func Backup(ctx context.Context) (string, error) {
|
||||||
destPath := backupPath(time.Now())
|
destPath := backupPath(time.Now())
|
||||||
|
log.Debug(ctx, "Creating backup", "path", destPath)
|
||||||
err := backupOrRestore(ctx, true, destPath)
|
err := backupOrRestore(ctx, true, destPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
|
@ -111,6 +112,7 @@ func Backup(ctx context.Context) (string, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func Restore(ctx context.Context, path string) error {
|
func Restore(ctx context.Context, path string) error {
|
||||||
|
log.Debug(ctx, "Restoring backup", "path", path)
|
||||||
return backupOrRestore(ctx, false, path)
|
return backupOrRestore(ctx, false, path)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue