2020-02-28 23:54:14 +01:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
2020-04-29 19:52:15 +02:00
|
|
|
|
|
|
|
"git.ctrlz.es/mgdelacroix/campaigner/app"
|
2020-02-28 23:54:14 +01:00
|
|
|
)
|
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
func withApp(f func(*app.App, *cobra.Command, []string)) func(*cobra.Command, []string) {
|
|
|
|
a, err := app.NewApp("./campaign.json")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, "ERROR: "+err.Error())
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
return func(cmd *cobra.Command, args []string) {
|
|
|
|
f(a, cmd, args)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func withAppE(f func(*app.App, *cobra.Command, []string) error) func(*cobra.Command, []string) error {
|
|
|
|
a, err := app.NewApp("./campaign.json")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, "ERROR: "+err.Error())
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
return func(cmd *cobra.Command, args []string) error {
|
|
|
|
return f(a, cmd, args)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-29 00:02:56 +01:00
|
|
|
func RootCmd() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "campaigner",
|
|
|
|
Short: "Create and manage Open Source campaigns",
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.AddCommand(
|
2020-02-29 00:59:54 +01:00
|
|
|
AddCmd(),
|
2020-04-27 12:22:15 +02:00
|
|
|
// FilterCmd(),
|
2020-02-29 00:49:55 +01:00
|
|
|
InitCmd(),
|
2020-03-06 19:54:52 +01:00
|
|
|
StatusCmd(),
|
2020-03-04 22:22:16 +01:00
|
|
|
PublishCmd(),
|
2020-03-04 22:26:04 +01:00
|
|
|
SyncCmd(),
|
2020-02-29 00:02:56 +01:00
|
|
|
)
|
2020-02-29 00:23:26 +01:00
|
|
|
|
2020-02-29 00:02:56 +01:00
|
|
|
return cmd
|
2020-02-28 23:54:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func Execute() {
|
2020-02-29 00:02:56 +01:00
|
|
|
if err := RootCmd().Execute(); err != nil {
|
2020-02-28 23:54:14 +01:00
|
|
|
fmt.Fprintln(os.Stderr, err)
|
|
|
|
}
|
|
|
|
}
|