photoprism/internal/commands/thumbnails.go
Michael Mayer 182b169ac0 Backend: Improve thumbnail rendering #157
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-01-08 22:29:40 +01:00

48 lines
917 B
Go

package commands
import (
"time"
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/internal/photoprism"
"github.com/urfave/cli"
)
// Pre-renders thumbnails
var ThumbnailsCommand = cli.Command{
Name: "thumbnails",
Usage: "Render thumbnails for all originals",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "force, f",
Usage: "Re-create existing thumbnails",
},
},
Action: thumbnailsAction,
}
func thumbnailsAction(ctx *cli.Context) error {
start := time.Now()
conf := config.NewConfig(ctx)
if err := conf.CreateDirectories(); err != nil {
return err
}
log.Infof("creating thumbnails in \"%s\"", conf.ThumbnailsPath())
thumbnails := photoprism.NewThumbnails(conf)
if err := thumbnails.Start(ctx.Bool("force")); err != nil {
log.Error(err)
return err
}
elapsed := time.Since(start)
log.Infof("thumbnails created in %s", elapsed)
return nil
}