photoprism/internal/commands/convert.go
Michael Mayer aa220a06fe Backend: Refactor package structure
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-04-05 22:26:53 +02:00

47 lines
979 B
Go

package commands
import (
"time"
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/internal/service"
"github.com/urfave/cli"
)
// ConvertCommand is used to register the convert cli command
var ConvertCommand = cli.Command{
Name: "convert",
Usage: "Converts originals in other formats to JPEG",
Action: convertAction,
}
// convertAction converts RAW files to JPEG images, if no JPEG already exists
func convertAction(ctx *cli.Context) error {
start := time.Now()
conf := config.NewConfig(ctx)
service.SetConfig(conf)
if conf.ReadOnly() {
return config.ErrReadOnly
}
if err := conf.CreateDirectories(); err != nil {
return err
}
log.Infof("converting RAW images in %s to JPEG", conf.OriginalsPath())
convert := service.Convert()
if err := convert.Start(conf.OriginalsPath()); err != nil {
log.Error(err)
}
elapsed := time.Since(start)
log.Infof("image conversion completed in %s", elapsed)
return nil
}