0c4aa86f85
This also adds support for specifying a path to the thumbs command. Signed-off-by: Michael Mayer <michael@photoprism.app>
63 lines
1.3 KiB
Go
63 lines
1.3 KiB
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/dustin/go-humanize/english"
|
|
"github.com/urfave/cli"
|
|
|
|
"github.com/photoprism/photoprism/internal/get"
|
|
"github.com/photoprism/photoprism/internal/photoprism"
|
|
)
|
|
|
|
// CleanUpCommand configures the command name, flags, and action.
|
|
var CleanUpCommand = cli.Command{
|
|
Name: "cleanup",
|
|
Usage: "Removes orphaned index entries, sidecar and thumbnail files",
|
|
Flags: cleanUpFlags,
|
|
Action: cleanUpAction,
|
|
}
|
|
|
|
var cleanUpFlags = []cli.Flag{
|
|
cli.BoolFlag{
|
|
Name: "dry",
|
|
Usage: "dry run, don't actually remove anything",
|
|
},
|
|
}
|
|
|
|
// cleanUpAction removes orphaned index entries, sidecar and thumbnail files.
|
|
func cleanUpAction(ctx *cli.Context) error {
|
|
cleanupStart := time.Now()
|
|
|
|
conf, err := InitConfig(ctx)
|
|
|
|
_, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
conf.InitDb()
|
|
defer conf.Shutdown()
|
|
|
|
if conf.ReadOnly() {
|
|
log.Infof("config: enabled read-only mode")
|
|
}
|
|
|
|
w := get.CleanUp()
|
|
|
|
opt := photoprism.CleanUpOptions{
|
|
Dry: ctx.Bool("dry"),
|
|
}
|
|
|
|
// Start cleanup worker.
|
|
if thumbnails, _, sidecars, err := w.Start(opt); err != nil {
|
|
return err
|
|
} else if total := thumbnails + sidecars; total > 0 {
|
|
log.Infof("removed %s in %s", english.Plural(total, "file", "files"), time.Since(cleanupStart))
|
|
}
|
|
|
|
return nil
|
|
}
|