roulette/cmd/root.go

62 lines
1.6 KiB
Go
Raw Normal View History

2022-09-08 15:12:06 +00:00
/*
2023-01-18 17:19:29 +00:00
Copyright © 2023 Seednode <seednode@seedno.de>
2022-09-08 15:12:06 +00:00
*/
package cmd
import (
"fmt"
2022-09-10 21:35:05 +00:00
"os"
2022-09-08 15:12:06 +00:00
"github.com/spf13/cobra"
)
var (
2023-02-08 13:50:40 +00:00
cache bool
cacheFile string
debug bool
2023-02-08 13:50:40 +00:00
filtering bool
port uint16
recursive bool
sorting bool
statistics bool
statisticsFile string
verbose bool
2022-09-08 15:12:06 +00:00
rootCmd = &cobra.Command{
Use: "roulette <path> [path]...",
Short: "Serves random images from the specified directories.",
Args: cobra.MinimumNArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
err := ServePage(args)
if err != nil {
return err
}
return nil
},
}
)
2022-09-08 15:12:06 +00:00
func Execute() {
err := rootCmd.Execute()
if err != nil {
fmt.Println(err)
2022-09-10 21:35:05 +00:00
os.Exit(1)
2022-09-08 15:12:06 +00:00
}
}
func init() {
rootCmd.Flags().BoolVarP(&cache, "cache", "c", false, "generate directory cache at startup")
2023-02-05 20:34:22 +00:00
rootCmd.Flags().StringVar(&cacheFile, "cache-file", "", "path to optional persistent cache file")
rootCmd.Flags().BoolVarP(&debug, "debug", "d", false, "expose debug endpoint")
rootCmd.Flags().BoolVarP(&filtering, "filter", "f", false, "enable filtering")
rootCmd.Flags().Uint16VarP(&port, "port", "p", 8080, "port to listen on")
rootCmd.Flags().BoolVarP(&recursive, "recursive", "r", false, "recurse into subdirectories")
rootCmd.Flags().BoolVarP(&sorting, "sort", "s", false, "enable sorting")
2023-02-05 20:34:22 +00:00
rootCmd.Flags().BoolVar(&statistics, "stats", false, "expose stats endpoint")
2023-02-08 13:50:40 +00:00
rootCmd.Flags().StringVar(&statisticsFile, "stats-file", "", "path to optional persistent stats file")
rootCmd.Flags().BoolVarP(&verbose, "verbose", "v", false, "log accessed files to stdout")
rootCmd.Flags().SetInterspersed(true)
2022-09-08 15:12:06 +00:00
}