9872cfaa50
- Includes refactoring of existing packages to enable testing of commands
60 lines
1.2 KiB
Go
60 lines
1.2 KiB
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/photoprism/photoprism/internal/context"
|
|
"github.com/photoprism/photoprism/internal/photoprism"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// Pre-renders thumbnails
|
|
var ThumbnailsCommand = cli.Command{
|
|
Name: "thumbnails",
|
|
Usage: "Pre-renders thumbnails",
|
|
Flags: []cli.Flag{
|
|
cli.IntSliceFlag{
|
|
Name: "size, s",
|
|
Usage: "Thumbnail size in pixels",
|
|
},
|
|
cli.BoolFlag{
|
|
Name: "default, d",
|
|
Usage: "Render default sizes: 320, 500, 640, 1280, 1920 and 2560px",
|
|
},
|
|
cli.BoolFlag{
|
|
Name: "square, q",
|
|
Usage: "Square aspect ratio",
|
|
},
|
|
},
|
|
Action: thumbnailsAction,
|
|
}
|
|
|
|
func thumbnailsAction(ctx *cli.Context) error {
|
|
conf := context.NewConfig(ctx)
|
|
|
|
if err := conf.CreateDirectories(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
fmt.Printf("Creating thumbnails in %s...\n", conf.GetThumbnailsPath())
|
|
|
|
sizes := ctx.IntSlice("size")
|
|
|
|
if ctx.Bool("default") {
|
|
sizes = []int{320, 500, 640, 1280, 1920, 2560}
|
|
}
|
|
|
|
if len(sizes) == 0 {
|
|
fmt.Println("No sizes selected. Nothing to do.")
|
|
return nil
|
|
}
|
|
|
|
for _, size := range sizes {
|
|
photoprism.CreateThumbnailsFromOriginals(conf.GetOriginalsPath(), conf.GetThumbnailsPath(), size, ctx.Bool("square"))
|
|
}
|
|
|
|
fmt.Println("Done.")
|
|
|
|
return nil
|
|
}
|