Skip to content

Commit 09a4fb2

Browse files
authored
Merge pull request #140 from criteo/group-help-by-registry
[NEW] Group top level commands by registry
2 parents e82d0ff + 37f9c77 commit 09a4fb2

File tree

6 files changed

+78
-0
lines changed

6 files changed

+78
-0
lines changed

gh-pages/content/en/docs/overview/config.md

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ toc: true
4545
| verify_package_signature | bool | whether to verify the package signature during package installation (will be available in 1.8) |
4646
| extra_remotes | map | extra remote registry configurations, see extra remote configuration (available 1.8+) |
4747
| enable_package_setup_hook | bool | call setup hook after a new version of package is installed (available 1.9+) |
48+
| group_help_by_registry | bool | group help by registry, default true (available 1.13+) |
4849

4950
### extra remote configuration
5051

internal/config/load.go

+3
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ func setDefaultConfig() {
114114

115115
viper.SetDefault(EXTRA_REMOTES_KEY, []map[string]string{})
116116
viper.SetDefault(ENABLE_PACKAGE_SETUP_HOOK_KEY, false)
117+
118+
// by default, group the top level command by registry in the help message
119+
viper.SetDefault(GROUP_HELP_BY_REGISTRY_KEY, true)
117120
}
118121

119122
func initDefaultConfigFile() {

internal/config/settings.go

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ const (
3737
EXTRA_REMOTE_REPOSITORY_DIR_KEY = "REPOSITORY_DIR"
3838
EXTRA_REMOTE_SYNC_POLICY_KEY = "SYNC_POLICY"
3939
ENABLE_PACKAGE_SETUP_HOOK_KEY = "ENABLE_PACKAGE_SETUP_HOOK"
40+
GROUP_HELP_BY_REGISTRY_KEY = "GROUP_HELP_BY_REGISTRY"
4041

4142
// internal commands are the commands with start partition number > INTERNAL_START_PARTITION
4243
INTERNAL_COMMAND_ENABLED_KEY = "INTERNAL_COMMAND_ENABLED"
@@ -77,6 +78,7 @@ func init() {
7778
SYSTEM_PACKAGE_KEY,
7879
SYSTEM_PACKAGE_PUBLIC_KEY_FILE_KEY,
7980
ENABLE_PACKAGE_SETUP_HOOK_KEY,
81+
GROUP_HELP_BY_REGISTRY_KEY,
8082
)
8183
}
8284

@@ -133,6 +135,8 @@ func SetSettingValue(key string, value string) error {
133135
return setBooleanConfig(upperKey, value)
134136
case ENABLE_PACKAGE_SETUP_HOOK_KEY:
135137
return setBooleanConfig(upperKey, value)
138+
case GROUP_HELP_BY_REGISTRY_KEY:
139+
return setBooleanConfig(upperKey, value)
136140
}
137141

138142
return fmt.Errorf("unsupported config %s", key)

internal/frontend/default-frontend.go

+26
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ type defaultFrontend struct {
3939

4040
groupCmds map[string]*cobra.Command
4141
executableCmds map[string]*cobra.Command
42+
43+
cmdCategories []*cobra.Group
4244
}
4345

4446
func NewDefaultFrontend(appCtx context.LauncherContext, rootCmd *cobra.Command, backend backend.Backend) Frontend {
@@ -50,9 +52,24 @@ func NewDefaultFrontend(appCtx context.LauncherContext, rootCmd *cobra.Command,
5052
groupCmds: make(map[string]*cobra.Command),
5153
executableCmds: make(map[string]*cobra.Command),
5254
}
55+
// add all command categories
56+
if viper.GetBool(config.GROUP_HELP_BY_REGISTRY_KEY) {
57+
frontend.RegisterCommandCategory()
58+
}
5359
return frontend
5460
}
5561

62+
func (self *defaultFrontend) RegisterCommandCategory() {
63+
self.cmdCategories = []*cobra.Group{}
64+
for _, source := range self.backend.AllPackageSources() {
65+
self.cmdCategories = append(self.cmdCategories, &cobra.Group{
66+
ID: source.Repo.Name(),
67+
Title: fmt.Sprintf("Commands from '%s' registry", source.Repo.Name()),
68+
})
69+
}
70+
self.rootCmd.AddGroup(self.cmdCategories...)
71+
}
72+
5673
func (self *defaultFrontend) AddUserCommands() {
5774
self.addGroupCommands()
5875
self.addExecutableCommands()
@@ -61,6 +78,7 @@ func (self *defaultFrontend) AddUserCommands() {
6178
func (self *defaultFrontend) addGroupCommands() {
6279
groups := self.backend.GroupCommands()
6380
for _, v := range groups {
81+
registryName := v.RepositoryID()
6482
group := v.RuntimeGroup()
6583
name := v.RuntimeName()
6684
usage := strings.TrimSpace(fmt.Sprintf("%s %s",
@@ -99,13 +117,18 @@ func (self *defaultFrontend) addGroupCommands() {
99117
self.processFlags(false, group, name, cmd, flags, exclusiveFlags, groupFlags)
100118

101119
self.groupCmds[v.RuntimeName()] = cmd
120+
121+
if viper.GetBool(config.GROUP_HELP_BY_REGISTRY_KEY) {
122+
cmd.GroupID = registryName
123+
}
102124
self.rootCmd.AddCommand(cmd)
103125
}
104126
}
105127

106128
func (self *defaultFrontend) addExecutableCommands() {
107129
executables := self.backend.ExecutableCommands()
108130
for _, v := range executables {
131+
registryName := v.RepositoryID()
109132
group := v.RuntimeGroup()
110133
name := v.RuntimeName()
111134
usage := strings.TrimSpace(fmt.Sprintf("%s %s",
@@ -205,6 +228,9 @@ func (self *defaultFrontend) addExecutableCommands() {
205228
}
206229

207230
if v.RuntimeGroup() == "" {
231+
if viper.GetBool(config.GROUP_HELP_BY_REGISTRY_KEY) {
232+
cmd.GroupID = registryName
233+
}
208234
self.rootCmd.AddCommand(cmd)
209235
} else {
210236
if group, exists := self.groupCmds[v.RuntimeGroup()]; exists {

test/integration/test-basic.sh

+35
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,38 @@ else
4848
echo "KO - hello command shouldn't exist"
4949
exit 1
5050
fi
51+
52+
##
53+
# test help message
54+
##
55+
56+
# clean up the dropin folder
57+
rm -rf $CL_HOME/dropins
58+
mkdir -p $CL_HOME/dropins
59+
60+
# copy the example to the dropin folder for the test
61+
cp -R $SCRIPT_DIR/../packages-src/bonjour $CL_HOME/dropins
62+
63+
echo "> test group help message"
64+
RESULT=$($CL_PATH)
65+
echo "$RESULT" | grep -q "Commands from 'dropin' registry"
66+
if [ $? -eq 0 ]; then
67+
# ok
68+
echo "OK"
69+
else
70+
echo "KO - should group help message by registry"
71+
exit 1
72+
fi
73+
74+
echo "> test help message without group"
75+
# set group_help_by_registry to false
76+
$CL_PATH config group_help_by_registry false
77+
# run command launcher to show the help message
78+
RESULT=$($CL_PATH)
79+
echo "$RESULT" | grep -q "Commands from 'dropin' registry"
80+
if [ $? -eq 0 ]; then
81+
echo "KO - should group help message by registry"
82+
exit 1
83+
else
84+
echo "OK"
85+
fi

test/integration/test-config.sh

+9
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,12 @@ else
4040
exit 1
4141
fi
4242

43+
echo "> test group_help_by_registry config exist, and default true"
44+
RESULT=$($OUTPUT_DIR/cl config --json)
45+
VALUE=$(echo "$RESULT" | jq -r '.group_help_by_registry')
46+
if [ $VALUE == "true" ]; then
47+
echo "OK"
48+
else
49+
echo "KO - incorrect config value"
50+
exit 1
51+
fi

0 commit comments

Comments
 (0)