-
Notifications
You must be signed in to change notification settings - Fork 20
/
x.go
73 lines (56 loc) · 1.97 KB
/
x.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
package cmd
import (
"fmt"
"github.com/spf13/cobra"
"github.com/exoscale/egoscale"
"github.com/exoscale/cli/cmd/internal/x"
)
var xCmd *cobra.Command
func init() {
xCmd = x.InitCommand()
xCmd.Use = "x"
xCmd.Hidden = true
xCmd.Long = `Low-level Exoscale API calls -- don't use this unless you have to.
These commands are automatically generated using openapi-cli-generator[1],
input parameters can be supplied either via stdin or using Shorthands[2].
[1]: https://github.com/exoscale/openapi-cli-generator
[2]: https://github.com/exoscale/openapi-cli-generator/tree/master/shorthand
`
// This code being executed very early, at this point some information is not ready
// to be used such as the account's configuration and some global variables, so we
// we use the subcommand pre-run hook to perform last second changes to the
// outgoing requests.
xCmd.PersistentPreRunE = func(cmd *cobra.Command, _ []string) error {
// If no value is provided for flag `--server`, infer the server URL from the current
// CLI profile's default zone (or explicit `--zone` flag if specified) and environment
// (or explicit `--environment` flag if speficied):
if server, _ := cmd.Flags().GetString("server"); server == "" {
zone := gCurrentAccount.DefaultZone
if z, _ := cmd.Flags().GetString("zone"); z != "" {
zone = z
}
env := gCurrentAccount.Environment
if e, _ := cmd.Flags().GetString("environment"); e != "" {
env = e
}
if err := cmd.Flags().Set("server", buildServerURL(zone, env)); err != nil {
return err
}
}
x.SetClientUserAgent(fmt.Sprintf(
"Exoscale-CLI-X/%s (%s) %s",
gVersion,
gCommit,
egoscale.UserAgent,
))
return x.SetClientCredentials(gCurrentAccount.Key, gCurrentAccount.Secret)
}
RootCmd.AddCommand(xCmd)
}
func buildServerURL(zone, env string) string {
server := "https://api-ch-gva-2.exoscale.com/v2"
if zone != "" && env != "" {
server = fmt.Sprintf("https://%s-%s.exoscale.com/v2", env, zone)
}
return server
}