-
Notifications
You must be signed in to change notification settings - Fork 20
/
sshkey_create.go
68 lines (56 loc) · 1.55 KB
/
sshkey_create.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
package cmd
import (
"fmt"
"strings"
"github.com/exoscale/egoscale"
"github.com/spf13/cobra"
)
type sshkeyCreateOutput struct {
Name string `json:"name"`
Fingerprint string `json:"fingerprint"`
PrivateKey string `json:"private_key"`
}
func (o *sshkeyCreateOutput) Type() string { return "SSH Key" }
func (o *sshkeyCreateOutput) toJSON() { outputJSON(o) }
func (o *sshkeyCreateOutput) toText() { outputText(o) }
func (o *sshkeyCreateOutput) toTable() { outputTable(o) }
func init() {
sshkeyCmd.AddCommand(&cobra.Command{
Use: "create NAME",
Short: "Create SSH key",
Long: fmt.Sprintf(`This command creates an SSH key.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&sshkeyCreateOutput{}), ", ")),
Aliases: gCreateAlias,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) != 1 {
return cmd.Usage()
}
sshKey, err := createSSHKey(args[0])
if err != nil {
return err
}
if !gQuiet {
return output(&sshkeyCreateOutput{
Name: sshKey.Name,
Fingerprint: sshKey.Fingerprint,
PrivateKey: sshKey.PrivateKey,
}, err)
}
return nil
},
})
}
func createSSHKey(name string) (*egoscale.SSHKeyPair, error) {
resp, err := cs.RequestWithContext(gContext, &egoscale.CreateSSHKeyPair{
Name: name,
})
if err != nil {
return nil, err
}
sshKeyPair, ok := resp.(*egoscale.SSHKeyPair)
if !ok {
return nil, fmt.Errorf("wrong type expected %q, got %T", "egoscale.CreateSSHKeyPairResponse", resp)
}
return sshKeyPair, nil
}