ntfy/cmd/app.go

63 lines
1.7 KiB
Go
Raw Normal View History

// Package cmd provides the ntfy CLI application
package cmd
import (
"fmt"
"github.com/urfave/cli/v2"
"github.com/urfave/cli/v2/altsrc"
2021-10-30 06:58:14 +13:00
"heckel.io/ntfy/util"
"os"
)
2021-12-19 08:43:27 +13:00
var (
defaultClientRootConfigFile = "/etc/ntfy/client.yml"
defaultClientUserConfigFile = "~/.config/ntfy/client.yml"
)
2022-01-23 19:00:38 +13:00
const (
2022-01-24 09:30:30 +13:00
categoryClient = "Client commands"
categoryServer = "Server commands"
2022-01-23 19:00:38 +13:00
)
// New creates a new CLI application
func New() *cli.App {
return &cli.App{
Name: "ntfy",
Usage: "Simple pub-sub notification service",
UsageText: "ntfy [OPTION..]",
HideVersion: true,
UseShortOptionHandling: true,
Reader: os.Stdin,
Writer: os.Stdout,
ErrWriter: os.Stderr,
2021-12-17 14:33:01 +13:00
Commands: []*cli.Command{
2022-01-23 19:00:38 +13:00
// Server commands
2021-12-17 14:33:01 +13:00
cmdServe,
2022-01-23 19:00:38 +13:00
cmdUser,
2022-01-24 18:54:28 +13:00
cmdAccess,
2022-01-23 19:00:38 +13:00
// Client commands
2021-12-17 14:33:01 +13:00
cmdPublish,
cmdSubscribe,
},
}
}
// initConfigFileInputSource is like altsrc.InitInputSourceWithContext and altsrc.NewYamlSourceFromFlagFunc, but checks
// if the config flag is exists and only loads it if it does. If the flag is set and the file exists, it fails.
func initConfigFileInputSource(configFlag string, flags []cli.Flag) cli.BeforeFunc {
return func(context *cli.Context) error {
configFile := context.String(configFlag)
2021-10-30 06:58:14 +13:00
if context.IsSet(configFlag) && !util.FileExists(configFile) {
return fmt.Errorf("config file %s does not exist", configFile)
2021-10-30 06:58:14 +13:00
} else if !context.IsSet(configFlag) && !util.FileExists(configFile) {
return nil
}
inputSource, err := altsrc.NewYamlSourceFromFile(configFile)
if err != nil {
return err
}
return altsrc.ApplyInputSourceValues(context, inputSource, flags)
}
}