This commit moves from the deprecated (exit.Error).Wrap function to the (exit.Error).WrapError instead.
41 lines
1 KiB
Go
41 lines
1 KiB
Go
package cmd
|
|
|
|
import (
|
|
wisski_distillery "github.com/FAU-CDI/wisski-distillery"
|
|
"github.com/FAU-CDI/wisski-distillery/internal/cli"
|
|
"github.com/tkw1536/goprogram/exit"
|
|
)
|
|
|
|
// Config is the configuration command
|
|
var Config wisski_distillery.Command = cfg{}
|
|
|
|
type cfg struct {
|
|
Human bool `long:"human" description:"Print configuration in human-readable format"`
|
|
}
|
|
|
|
func (c cfg) Description() wisski_distillery.Description {
|
|
return wisski_distillery.Description{
|
|
Requirements: cli.Requirements{
|
|
NeedsDistillery: true,
|
|
},
|
|
Command: "config",
|
|
Description: "prints information about configuration",
|
|
}
|
|
}
|
|
|
|
var errMarshalConfig = exit.Error{
|
|
Message: "unable to marshal config",
|
|
ExitCode: exit.ExitGeneric,
|
|
}
|
|
|
|
func (cfg cfg) Run(context wisski_distillery.Context) error {
|
|
if cfg.Human {
|
|
human := context.Environment.Config.MarshalSensitive()
|
|
context.Println(human)
|
|
return nil
|
|
}
|
|
if err := context.Environment.Config.Marshal(context.Stdout); err != nil {
|
|
return errMarshalConfig.WrapError(err)
|
|
}
|
|
return nil
|
|
}
|