2026-03-26 12:48:47 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
|
|
import (
|
2026-03-29 18:58:34 +02:00
|
|
|
"axolotl/service"
|
|
|
|
|
"fmt"
|
2026-03-26 12:48:47 +00:00
|
|
|
"os"
|
2026-03-27 02:11:46 +01:00
|
|
|
"strings"
|
2026-03-26 12:48:47 +00:00
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var jsonFlag bool
|
2026-03-29 18:58:34 +02:00
|
|
|
var cfg service.Config
|
2026-03-27 02:11:46 +01:00
|
|
|
var rootCmd = &cobra.Command{Use: "ax", Short: "The axolotl issue tracker"}
|
2026-03-26 12:48:47 +00:00
|
|
|
|
|
|
|
|
func Execute() {
|
2026-03-29 18:58:34 +02:00
|
|
|
var err error
|
|
|
|
|
cfg, err = service.LoadConfig()
|
|
|
|
|
if err != nil {
|
|
|
|
|
fmt.Fprintln(os.Stderr, "failed to load config:", err)
|
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
|
|
|
|
registerAliasCommands()
|
2026-03-27 02:11:46 +01:00
|
|
|
rootCmd.SetArgs(transformArgs(os.Args[1:]))
|
2026-03-26 12:48:47 +00:00
|
|
|
if err := rootCmd.Execute(); err != nil {
|
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-29 18:58:34 +02:00
|
|
|
func registerAliasCommands() {
|
|
|
|
|
rootCmd.AddGroup(&cobra.Group{ID: "aliases", Title: "Aliases:"})
|
|
|
|
|
aliases, _ := cfg.ListAliases()
|
|
|
|
|
for _, a := range aliases {
|
|
|
|
|
a := a
|
|
|
|
|
rootCmd.AddCommand(&cobra.Command{
|
|
|
|
|
Use: a.Name,
|
|
|
|
|
Short: a.Description,
|
|
|
|
|
GroupID: "aliases",
|
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
|
expanded := service.ExpandAlias(a, args, cfg.GetUser())
|
|
|
|
|
rootCmd.SetArgs(transformArgs(expanded))
|
|
|
|
|
if err := rootCmd.Execute(); err != nil {
|
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-27 02:11:46 +01:00
|
|
|
func transformArgs(args []string) []string {
|
|
|
|
|
aliases := map[string]string{
|
|
|
|
|
"--status": "_status",
|
|
|
|
|
"--prio": "_prio",
|
|
|
|
|
"--type": "_type",
|
|
|
|
|
"--namespace": "_namespace",
|
|
|
|
|
}
|
|
|
|
|
result := []string{}
|
|
|
|
|
|
|
|
|
|
for i := 0; i < len(args); i++ {
|
|
|
|
|
if idx := strings.Index(args[i], "="); idx != -1 {
|
|
|
|
|
if prop, ok := aliases[args[i][:idx]]; ok {
|
|
|
|
|
result = append(result, "--tag", prop+"::"+args[i][idx+1:])
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if prop, ok := aliases[args[i]]; ok && i+1 < len(args) {
|
|
|
|
|
result, i = append(result, "--tag", prop+"::"+args[i+1]), i+1
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
result = append(result, args[i])
|
|
|
|
|
}
|
|
|
|
|
return result
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-26 12:48:47 +00:00
|
|
|
func init() {
|
2026-03-27 02:11:46 +01:00
|
|
|
rootCmd.PersistentFlags().BoolVar(&jsonFlag, "json", false, "")
|
2026-03-26 12:48:47 +00:00
|
|
|
}
|