forked from Gitlink/gitlink-cli
74 lines
2.6 KiB
Go
74 lines
2.6 KiB
Go
package shortcuts
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/branch"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/ci"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/common"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/compliance"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/contrib"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/onboard"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/issue"
|
|
// "github.com/gitlink-org/gitlink-cli/shortcuts/milestone" // broken: syntax errors
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/org"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/pr"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/release"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/repo"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/search"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/team"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/user"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/webhook"
|
|
"github.com/gitlink-org/gitlink-cli/shortcuts/wiki"
|
|
)
|
|
|
|
// RegisterAll mounts all shortcut groups onto the root command.
|
|
func RegisterAll(root *cobra.Command) {
|
|
groups := map[string][]*common.Shortcut{
|
|
"repo": repo.Shortcuts(),
|
|
"issue": issue.Shortcuts(),
|
|
"pr": pr.Shortcuts(),
|
|
"release": release.Shortcuts(),
|
|
"branch": branch.Shortcuts(),
|
|
"org": org.Shortcuts(),
|
|
"user": user.Shortcuts(),
|
|
"search": search.Shortcuts(),
|
|
"ci": ci.Shortcuts(),
|
|
// "milestone": milestone.Shortcuts(), // broken
|
|
"team": team.Shortcuts(),
|
|
"wiki": wiki.Shortcuts(),
|
|
"webhook": webhook.Shortcuts(),
|
|
"contrib": contrib.Shortcuts(),
|
|
"compliance": compliance.Shortcuts(),
|
|
"onboard": onboard.Shortcuts(),
|
|
}
|
|
|
|
descriptions := map[string]string{
|
|
"repo": "Repository operations",
|
|
"issue": "Issue operations",
|
|
"pr": "Pull request operations",
|
|
"release": "Release operations",
|
|
"branch": "Branch operations",
|
|
"org": "Organization operations",
|
|
"user": "User operations",
|
|
"search": "Search operations",
|
|
"ci": "CI/CD operations",
|
|
// "milestone": "Milestone operations", // broken
|
|
"team": "Team operations",
|
|
"wiki": "Wiki operations",
|
|
"webhook": "Webhook operations",
|
|
"contrib": "Contribution report operations",
|
|
"compliance": "Compliance and security scan operations",
|
|
"onboard": "New contributor onboarding operations",
|
|
}
|
|
|
|
for name, shortcuts := range groups {
|
|
groupCmd := &cobra.Command{
|
|
Use: name,
|
|
Short: descriptions[name],
|
|
}
|
|
common.MountShortcuts(groupCmd, shortcuts)
|
|
root.AddCommand(groupCmd)
|
|
}
|
|
}
|