photoprism/internal/commands/show_config.go

34 lines
756 B
Go
Raw Normal View History

package commands
import (
"fmt"
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/pkg/report"
)
2022-04-14 10:30:47 +00:00
// ShowConfigCommand configures the command name, flags, and action.
var ShowConfigCommand = cli.Command{
Name: "config",
Usage: "Displays global config options and their current values",
Flags: report.CliFlags,
Action: showConfigAction,
}
2022-04-14 10:30:47 +00:00
// showConfigAction shows global config option names and values.
func showConfigAction(ctx *cli.Context) error {
conf := config.NewConfig(ctx)
conf.SetLogLevel(logrus.FatalLevel)
rows, cols := conf.Report()
result, err := report.Render(rows, cols, report.CliFormat(ctx))
fmt.Println(result)
return err
}