diff --git a/cmd/action.go b/cmd/action.go index e587e6a..ca2cf97 100644 --- a/cmd/action.go +++ b/cmd/action.go @@ -5,8 +5,9 @@ import ( ) var actionCmd = &cobra.Command{ - Use: "action", - Short: "Manage and run source actions", + Use: "action", + GroupID: sourceGroup.ID, + Short: "Manage and run source actions", Long: `Add, edit, delete, and run source actions on items. A feed source is updated by the "fetch" action, which receives no input and diff --git a/cmd/channel.go b/cmd/channel.go index 59d6ebb..6112638 100644 --- a/cmd/channel.go +++ b/cmd/channel.go @@ -10,8 +10,9 @@ import ( ) var channelCmd = &cobra.Command{ - Use: "channel --channel name {--add source | --remove source | --delete [-y]}", - Short: "Manage channels", + Use: "channel --channel name {--add source | --remove source | --delete [-y]}", + GroupID: sourceGroup.ID, + Short: "Manage channels", Long: `A channel is a group of sources that can be viewed together. Adding a source to a channel creates it and removing all sources from a channel deletes it. `, diff --git a/cmd/deactivate.go b/cmd/deactivate.go index 6cef56a..64ac619 100644 --- a/cmd/deactivate.go +++ b/cmd/deactivate.go @@ -12,6 +12,7 @@ import ( var deactivateCmd = &cobra.Command{ Use: "deactivate --source source [--item item]", + GroupID: feedGroup.ID, Aliases: []string{"deac"}, Short: "Deactivate items", Long: `Deactivate items, hiding them from feeds and marking them for deletion. diff --git a/cmd/edit.go b/cmd/edit.go index cb63bd7..9a9db4e 100644 --- a/cmd/edit.go +++ b/cmd/edit.go @@ -7,8 +7,9 @@ import ( ) var editCmd = &cobra.Command{ - Use: "edit", - Short: "Edit an item", + Use: "edit", + GroupID: feedGroup.ID, + Short: "Edit an item", Long: ` `, Run: func(cmd *cobra.Command, args []string) { diff --git a/cmd/env.go b/cmd/env.go index e0cf9dc..723f9cd 100644 --- a/cmd/env.go +++ b/cmd/env.go @@ -8,8 +8,9 @@ import ( ) var envCmd = &cobra.Command{ - Use: "env", - Short: "Manage source environment variables", + Use: "env", + GroupID: sourceGroup.ID, + Short: "Manage source environment variables", Long: `Add, edit, list, or delete environment variables. --env KEY=VALUE will add or edit an environment variable to be set in all diff --git a/cmd/feed.go b/cmd/feed.go index b914189..900f6e2 100644 --- a/cmd/feed.go +++ b/cmd/feed.go @@ -9,8 +9,9 @@ import ( ) var feedCmd = &cobra.Command{ - Use: "feed", - Short: "Display the item feed", + Use: "feed", + GroupID: feedGroup.ID, + Short: "Display the item feed", Long: fmt.Sprintf(`Display the intake item feed in various formats. The default format is "headlines". diff --git a/cmd/fetch.go b/cmd/fetch.go index 44204d9..3dfadad 100644 --- a/cmd/fetch.go +++ b/cmd/fetch.go @@ -11,8 +11,9 @@ import ( ) var fetchCmd = &cobra.Command{ - Use: "fetch [--source name] [-n|--dry-run] [--env NAME-VALUE [-- env NAME=VALUE ...]] [-- argv...]", - Short: "Fetch items for a source and update the feed", + Use: "fetch [--source name] [-n|--dry-run] [--env NAME-VALUE [-- env NAME=VALUE ...]] [-- argv...]", + GroupID: feedGroup.ID, + Short: "Fetch items for a source and update the feed", Long: fmt.Sprintf(`Fetch items for a source and update the feed. Items returned by a successful fetch will be used to update the source. diff --git a/cmd/item.go b/cmd/item.go index c298c80..4c26a2a 100644 --- a/cmd/item.go +++ b/cmd/item.go @@ -10,8 +10,9 @@ import ( ) var itemCmd = &cobra.Command{ - Use: "item", - Short: "Add an item", + Use: "item", + GroupID: feedGroup.ID, + Short: "Add an item", Long: `Create an ad-hoc item in a source. By default, the item is created in the "default" source, which is created diff --git a/cmd/list.go b/cmd/list.go index 6de7431..f818005 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -12,6 +12,7 @@ import ( var listCmd = &cobra.Command{ Use: "list", + GroupID: sourceGroup.ID, Aliases: []string{"ls"}, Short: "List sources, channels, or actions", Long: `List sources, channels, or actions. diff --git a/cmd/monitor.go b/cmd/monitor.go index 995f5a3..e5a2eec 100644 --- a/cmd/monitor.go +++ b/cmd/monitor.go @@ -9,8 +9,9 @@ import ( ) var monitorCmd = &cobra.Command{ - Use: "monitor", - Short: "Run continuously and update sources according to their fetch schedule", + Use: "monitor", + GroupID: webGroup.ID, + Short: "Run continuously and update sources according to their fetch schedule", Long: `Run continuously and update sources. Sources are monitored and fetched according to the schedule specified by diff --git a/cmd/passwd.go b/cmd/passwd.go index 13349df..eb9871e 100644 --- a/cmd/passwd.go +++ b/cmd/passwd.go @@ -11,8 +11,9 @@ import ( ) var passwdCmd = &cobra.Command{ - Use: "passwd", - Short: "Set the password for the web interface", + Use: "passwd", + GroupID: webGroup.ID, + Short: "Set the password for the web interface", Long: `Set the password for the web interface. Access through the command line should be controlled by standard filesystem diff --git a/cmd/root.go b/cmd/root.go index 92896d5..9e2f2f0 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -25,10 +25,18 @@ func Execute() { var dataPath string +var sourceGroup = &cobra.Group{ID: "manage", Title: "Source management:"} +var feedGroup = &cobra.Group{ID: "feed", Title: "Feed management:"} +var webGroup = &cobra.Group{ID: "web", Title: "Service management:"} + func init() { // Disable the automatic help command rootCmd.SetHelpCommand(&cobra.Command{Hidden: true}) + rootCmd.AddGroup(sourceGroup) + rootCmd.AddGroup(feedGroup) + rootCmd.AddGroup(webGroup) + // All commands need to operate on a database // Setting the env-derived path as the default allows the command line to override the env dbPathFromEnv := core.ResolveEnvDataDir() diff --git a/cmd/serve.go b/cmd/serve.go index f4ee368..4694739 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -11,8 +11,9 @@ import ( ) var serveCmd = &cobra.Command{ - Use: "serve", - Short: "Serve the web interface", + Use: "serve", + GroupID: webGroup.ID, + Short: "Serve the web interface", Long: `Serve the intake web interface. `, Run: func(cmd *cobra.Command, args []string) { diff --git a/cmd/source.go b/cmd/source.go index 07a60df..19c75cf 100644 --- a/cmd/source.go +++ b/cmd/source.go @@ -8,8 +8,9 @@ import ( ) var sourceCmd = &cobra.Command{ - Use: "source", - Short: "Manage sources", + Use: "source", + GroupID: sourceGroup.ID, + Short: "Manage sources", Long: `Manage sources. A source represents a single content feed that generates discrete feed items.