65 lines
1.3 KiB
Go
65 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/config"
|
|
"github.com/photoprism/photoprism/internal/photoprism"
|
|
"github.com/photoprism/photoprism/internal/service"
|
|
)
|
|
|
|
// CleanUpCommand registers the cleanup command.
|
|
var CleanUpCommand = cli.Command{
|
|
Name: "cleanup",
|
|
Usage: "Removes orphan index entries 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 orphan index entries and thumbnails.
|
|
func cleanUpAction(ctx *cli.Context) error {
|
|
start := time.Now()
|
|
|
|
conf := config.NewConfig(ctx)
|
|
service.SetConfig(conf)
|
|
|
|
_, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
|
|
if err := conf.Init(); err != nil {
|
|
return err
|
|
}
|
|
|
|
conf.InitDb()
|
|
|
|
if conf.ReadOnly() {
|
|
log.Infof("config: read-only mode enabled")
|
|
}
|
|
|
|
w := service.CleanUp()
|
|
|
|
opt := photoprism.CleanUpOptions{
|
|
Dry: ctx.Bool("dry"),
|
|
}
|
|
|
|
if thumbs, orphans, err := w.Start(opt); err != nil {
|
|
return err
|
|
} else {
|
|
log.Infof("removed %s and %s in %s", english.Plural(orphans, "index entry", "index entries"), english.Plural(thumbs, "thumbnail", "thumbnails"), time.Since(start))
|
|
}
|
|
|
|
conf.Shutdown()
|
|
|
|
return nil
|
|
}
|