2018-09-24 09:53:16 +02:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
2019-05-13 18:01:50 +02:00
|
|
|
"time"
|
|
|
|
|
2019-05-06 23:18:10 +02:00
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
2020-04-05 22:26:53 +02:00
|
|
|
"github.com/photoprism/photoprism/internal/service"
|
2020-05-03 18:00:50 +02:00
|
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
2018-09-24 09:53:16 +02:00
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
2020-05-03 16:15:54 +02:00
|
|
|
// ResampleCommand is used to register the thumbs cli command
|
|
|
|
var ResampleCommand = cli.Command{
|
2020-05-03 18:00:50 +02:00
|
|
|
Name: "resample",
|
2020-05-03 16:15:54 +02:00
|
|
|
Aliases: []string{"thumbs"},
|
2020-05-03 18:00:50 +02:00
|
|
|
Usage: "Pre-renders thumbnails (significantly reduces memory and cpu usage)",
|
2018-09-24 09:53:16 +02:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.BoolFlag{
|
2019-05-13 18:01:50 +02:00
|
|
|
Name: "force, f",
|
2020-01-22 10:35:00 +01:00
|
|
|
Usage: "re-create existing thumbnails",
|
2018-09-24 09:53:16 +02:00
|
|
|
},
|
|
|
|
},
|
2020-05-03 16:15:54 +02:00
|
|
|
Action: resampleAction,
|
2018-09-24 09:53:16 +02:00
|
|
|
}
|
|
|
|
|
2020-05-03 16:15:54 +02:00
|
|
|
// resampleAction pre-render the thumbnails
|
|
|
|
func resampleAction(ctx *cli.Context) error {
|
2019-05-14 16:04:17 +02:00
|
|
|
start := time.Now()
|
|
|
|
|
2019-05-06 23:18:10 +02:00
|
|
|
conf := config.NewConfig(ctx)
|
2020-04-05 22:26:53 +02:00
|
|
|
service.SetConfig(conf)
|
2018-09-24 09:53:16 +02:00
|
|
|
|
2020-10-08 08:52:03 +02:00
|
|
|
if err := conf.Init(); err != nil {
|
2019-01-15 14:00:42 +01:00
|
|
|
return err
|
2018-09-24 09:53:16 +02:00
|
|
|
}
|
|
|
|
|
2020-05-05 17:04:13 +02:00
|
|
|
log.Infof("creating thumbnails in %s", txt.Quote(conf.ThumbPath()))
|
2018-09-24 09:53:16 +02:00
|
|
|
|
2020-04-05 22:26:53 +02:00
|
|
|
rs := service.Resample()
|
2020-01-08 22:29:40 +01:00
|
|
|
|
2020-01-31 17:29:55 +01:00
|
|
|
if err := rs.Start(ctx.Bool("force")); err != nil {
|
2019-05-13 18:01:50 +02:00
|
|
|
log.Error(err)
|
|
|
|
return err
|
2018-09-24 09:53:16 +02:00
|
|
|
}
|
|
|
|
|
2019-05-14 16:04:17 +02:00
|
|
|
elapsed := time.Since(start)
|
|
|
|
|
|
|
|
log.Infof("thumbnails created in %s", elapsed)
|
2018-09-24 09:53:16 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|