forked from hasura/graphql-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions.go
77 lines (68 loc) · 2.28 KB
/
actions.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package commands
import (
"encoding/json"
"fmt"
"io/ioutil"
"path/filepath"
"github.com/hasura/graphql-engine/cli"
"github.com/hasura/graphql-engine/cli/util"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
// NewActionsCmd returns the actions command
func NewActionsCmd(ec *cli.ExecutionContext) *cobra.Command {
v := viper.New()
actionsCmd := &cobra.Command{
Use: "actions",
Short: "Manage actions on hasura",
SilenceUsage: true,
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
cmd.Root().PersistentPreRun(cmd, args)
ec.Viper = v
err := ec.Prepare()
if err != nil {
return err
}
err = ec.Validate()
if err != nil {
return err
}
if ec.Config.Version < cli.V2 {
return fmt.Errorf("actions commands can be executed only when config version is greater than 1")
}
if ec.MetadataDir == "" {
return fmt.Errorf("actions commands can be executed only when metadata_dir is set in config")
}
return nil
},
}
actionsCmd.AddCommand(
newActionsCreateCmd(ec, v),
newActionsCodegenCmd(ec),
newActionsUseCodegenCmd(ec),
)
f := actionsCmd.PersistentFlags()
f.String("endpoint", "", "http(s) endpoint for Hasura GraphQL Engine")
f.String("admin-secret", "", "admin secret for Hasura GraphQL Engine")
f.String("access-key", "", "access key for Hasura GraphQL Engine")
f.MarkDeprecated("access-key", "use --admin-secret instead")
f.Bool("insecure-skip-tls-verify", false, "skip TLS verification and disable cert checking (default: false)")
f.String("certificate-authority", "", "path to a cert file for the certificate authority")
util.BindPFlag(v, "endpoint", f.Lookup("endpoint"))
util.BindPFlag(v, "admin_secret", f.Lookup("admin-secret"))
util.BindPFlag(v, "access_key", f.Lookup("access-key"))
util.BindPFlag(v, "insecure_skip_tls_verify", f.Lookup("insecure-skip-tls-verify"))
util.BindPFlag(v, "certificate_authority", f.Lookup("certificate-authority"))
return actionsCmd
}
func getCodegenFrameworks() (allFrameworks []codegenFramework, err error) {
frameworkFileBytes, err := ioutil.ReadFile(filepath.Join(ec.GlobalConfigDir, util.ActionsCodegenDirName, "frameworks.json"))
if err != nil {
return
}
err = json.Unmarshal(frameworkFileBytes, &allFrameworks)
if err != nil {
return
}
return
}