|
1 | 1 | package dagger
|
2 | 2 |
|
3 | 3 | import (
|
4 |
| - "regexp" |
5 |
| - "strings" |
| 4 | + "encoding/json" |
| 5 | + "os" |
| 6 | + "time" |
| 7 | + "unicode" |
6 | 8 |
|
7 | 9 | "github.com/rsteube/carapace"
|
| 10 | + "github.com/rsteube/carapace/pkg/cache" |
| 11 | + "github.com/rsteube/carapace/pkg/cache/key" |
| 12 | + "github.com/spf13/cobra" |
8 | 13 | )
|
9 | 14 |
|
10 |
| -// ActionFunctions completes functions |
| 15 | +type function struct { |
| 16 | + Name string `json:"Name"` |
| 17 | + Description string `json:"Description"` |
| 18 | + Args []struct { |
| 19 | + Name string `json:"Name"` |
| 20 | + Description string `json:"Description"` |
| 21 | + TypeDef struct { |
| 22 | + Kind string `json:"Kind"` |
| 23 | + Optional bool `json:"Optional"` |
| 24 | + AsObject *struct { |
| 25 | + Name string `json:"Name"` |
| 26 | + Functions any `json:"Functions"` |
| 27 | + Fields any `json:"Fields"` |
| 28 | + Constructor any `json:"Constructor"` |
| 29 | + SourceModuleName string `json:"SourceModuleName"` |
| 30 | + } `json:"AsObject"` |
| 31 | + AsInterface any `json:"AsInterface"` |
| 32 | + AsInput any `json:"AsInput"` |
| 33 | + AsList any `json:"AsList"` |
| 34 | + } `json:"TypeDef"` |
| 35 | + DefaultValue string `json:"DefaultValue"` |
| 36 | + } `json:"Args"` |
| 37 | +} |
| 38 | + |
| 39 | +type daggerFile struct { |
| 40 | + Name string |
| 41 | + Sdk string |
| 42 | + Source string |
| 43 | +} |
| 44 | + |
| 45 | +// ActionFunctions completes functions and their arguments |
11 | 46 | //
|
12 |
| -// container-echo (dagger call container-echo --string-arg yo stdout) |
13 | 47 | // grep-dir (dagger call grep-dir --directory-arg . --pattern GrepDir)
|
| 48 | +// --directory-arg |
14 | 49 | func ActionFunctions() carapace.Action {
|
15 |
| - return carapace.ActionExecCommand("dagger", "functions", "--silent")(func(output []byte) carapace.Action { |
16 |
| - lines := strings.Split(string(output), "\n") |
17 |
| - r := regexp.MustCompile(`^(?P<name>[^ ]+) +example usage: "(?P<example>.*)"$`) |
18 |
| - |
19 |
| - vals := make([]string, 0) |
20 |
| - for _, line := range lines[1:] { |
21 |
| - if matches := r.FindStringSubmatch(line); matches != nil { |
22 |
| - vals = append(vals, matches[1], matches[2]) |
| 50 | + return carapace.ActionCallback(func(c carapace.Context) carapace.Action { |
| 51 | + content, err := os.ReadFile("dagger.json") |
| 52 | + if err != nil { |
| 53 | + return carapace.ActionMessage(err.Error()) |
| 54 | + } |
| 55 | + |
| 56 | + var d daggerFile |
| 57 | + if err := json.Unmarshal(content, &d); err != nil { |
| 58 | + return carapace.ActionMessage(err.Error()) |
| 59 | + } |
| 60 | + |
| 61 | + output, err := cache.Cache(24*time.Hour, key.FolderStats(d.Source))(func() ([]byte, error) { |
| 62 | + return c.Command("dagger", "functions", "--json").Output() |
| 63 | + }) |
| 64 | + if err != nil { |
| 65 | + return carapace.ActionMessage(err.Error()) |
| 66 | + } |
| 67 | + |
| 68 | + var functions []function |
| 69 | + if err := json.Unmarshal(output, &functions); err != nil { |
| 70 | + return carapace.ActionMessage(err.Error()) |
| 71 | + } |
| 72 | + |
| 73 | + cmd := &cobra.Command{} |
| 74 | + carapace.Gen(cmd).Standalone() |
| 75 | + for _, f := range functions { |
| 76 | + f.Name = toKebab(f.Name) |
| 77 | + subCmd := &cobra.Command{ |
| 78 | + Use: f.Name, |
| 79 | + Short: f.Description, |
| 80 | + Run: func(cmd *cobra.Command, args []string) {}, |
23 | 81 | }
|
| 82 | + carapace.Gen(subCmd).Standalone() |
| 83 | + |
| 84 | + for _, arg := range f.Args { |
| 85 | + arg.Name = toKebab(arg.Name) |
| 86 | + |
| 87 | + // TODO transform camelcase to kebab |
| 88 | + switch arg.TypeDef.Kind { // TODO more types |
| 89 | + case "STRING_KIND", "OBJECT_KIND": |
| 90 | + subCmd.Flags().String(arg.Name, arg.DefaultValue, arg.Description) |
| 91 | + default: |
| 92 | + return carapace.ActionMessage("unknown kind %s", arg.TypeDef.Kind) |
| 93 | + } |
| 94 | + |
| 95 | + if arg.TypeDef.Optional { |
| 96 | + subCmd.Flag(arg.Name).NoOptDefVal = " " |
| 97 | + } |
| 98 | + |
| 99 | + localArg := arg |
| 100 | + carapace.Gen(subCmd).FlagCompletion(carapace.ActionMap{ |
| 101 | + arg.Name: carapace.ActionCallback(func(c carapace.Context) carapace.Action { |
| 102 | + if localArg.TypeDef.AsObject == nil { |
| 103 | + return carapace.ActionValues() |
| 104 | + } |
| 105 | + |
| 106 | + switch localArg.TypeDef.AsObject.Name { // TODO more |
| 107 | + case "Directory": |
| 108 | + return carapace.ActionDirectories() |
| 109 | + default: |
| 110 | + return carapace.ActionValues() |
| 111 | + } |
| 112 | + }), |
| 113 | + }) |
| 114 | + } |
| 115 | + |
| 116 | + cmd.AddCommand(subCmd) |
24 | 117 | }
|
25 |
| - return carapace.ActionValuesDescribed(vals...) |
| 118 | + |
| 119 | + return carapace.ActionExecute(cmd) |
26 | 120 | })
|
27 | 121 | }
|
| 122 | + |
| 123 | +func toKebab(s string) string { |
| 124 | + runes := make([]rune, 0) |
| 125 | + for _, r := range []rune(s) { |
| 126 | + if unicode.IsUpper(r) { |
| 127 | + runes = append(runes, '-') |
| 128 | + } |
| 129 | + runes = append(runes, unicode.ToLower(r)) |
| 130 | + } |
| 131 | + return string(runes) |
| 132 | +} |
0 commit comments