0c4aa86f85
This also adds support for specifying a path to the thumbs command. Signed-off-by: Michael Mayer <michael@photoprism.app>
85 lines
1.7 KiB
Go
85 lines
1.7 KiB
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
"github.com/photoprism/photoprism/internal/get"
|
|
"github.com/photoprism/photoprism/pkg/clean"
|
|
)
|
|
|
|
// ThumbsCommand configures the command name, flags, and action.
|
|
var ThumbsCommand = cli.Command{
|
|
Name: "thumbs",
|
|
Usage: "Generates thumbnails using the current settings",
|
|
ArgsUsage: "[subfolder]",
|
|
Flags: []cli.Flag{
|
|
cli.BoolFlag{
|
|
Name: "force, f",
|
|
Usage: "replace existing thumbnail files",
|
|
},
|
|
cli.BoolFlag{
|
|
Name: "originals, o",
|
|
Usage: "scan originals only, skip sidecar folder",
|
|
},
|
|
},
|
|
Action: thumbsAction,
|
|
}
|
|
|
|
// thumbsAction generates thumbnails using the current settings.
|
|
func thumbsAction(ctx *cli.Context) error {
|
|
start := time.Now()
|
|
|
|
conf, err := InitConfig(ctx)
|
|
|
|
_, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
conf.RegisterDb()
|
|
defer conf.Shutdown()
|
|
|
|
dir := strings.TrimSpace(ctx.Args().First())
|
|
force := ctx.Bool("force")
|
|
originals := ctx.Bool("originals")
|
|
|
|
var action, ack string
|
|
if force {
|
|
action = "replacing"
|
|
ack = "replaced"
|
|
} else {
|
|
action = "creating"
|
|
ack = "created"
|
|
}
|
|
|
|
// Display info.
|
|
if dir == "" {
|
|
if originals {
|
|
log.Infof("%s thumbnails for originals only", action)
|
|
} else {
|
|
log.Infof("%s thumbnails for originals and sidecar files", action)
|
|
}
|
|
} else {
|
|
if originals {
|
|
log.Infof("%s thumbnails for originals in %s", action, clean.LogQuote(dir))
|
|
} else {
|
|
log.Infof("%s thumbnails for originals and sidecar files in %s", action, clean.LogQuote(dir))
|
|
}
|
|
}
|
|
|
|
w := get.Thumbs()
|
|
|
|
if err = w.Start(dir, ctx.Bool("force"), ctx.Bool("originals")); err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Infof("thumbnails %s in %s", ack, time.Since(start))
|
|
|
|
return nil
|
|
}
|