-
Notifications
You must be signed in to change notification settings - Fork 20
/
sshkey_list.go
91 lines (72 loc) · 1.53 KB
/
sshkey_list.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package cmd
import (
"fmt"
"os"
"strings"
"github.com/exoscale/cli/table"
"github.com/exoscale/egoscale"
"github.com/spf13/cobra"
)
// listCmd represents the list command
var listCmd = &cobra.Command{
Use: "list",
Short: "List SSH key pairs",
Aliases: gListAlias,
RunE: func(cmd *cobra.Command, args []string) error {
t := table.NewTable(os.Stdout)
err := listSSHKey(t, args)
if err == nil {
t.Render()
}
return err
},
}
func listSSHKey(t *table.Table, filters []string) error {
sshKeys, err := getSSHKeys(cs)
if err != nil {
return err
}
data := make([][]string, 0)
for _, k := range sshKeys {
keep := true
if len(filters) > 0 {
keep = false
s := strings.ToLower(fmt.Sprintf("%s§%s", k.Name, k.Fingerprint))
for _, filter := range filters {
substr := strings.ToLower(filter)
if strings.Contains(s, substr) {
keep = true
break
}
}
}
if !keep {
continue
}
data = append(data, []string{k.Name, k.Fingerprint})
}
headers := []string{"Name", "Fingerprint"}
if len(data) > 0 {
t.SetHeader(headers)
}
if len(data) > 10 {
t.SetFooter(headers)
}
t.AppendBulk(data)
return nil
}
func getSSHKeys(cs *egoscale.Client) ([]egoscale.SSHKeyPair, error) {
sshKeys, err := cs.ListWithContext(gContext, &egoscale.SSHKeyPair{})
if err != nil {
return nil, err
}
res := make([]egoscale.SSHKeyPair, len(sshKeys))
for i, key := range sshKeys {
k := key.(*egoscale.SSHKeyPair)
res[i] = *k
}
return res, nil
}
func init() {
sshkeyCmd.AddCommand(listCmd)
}