-
Notifications
You must be signed in to change notification settings - Fork 3
/
ssh_key.go
167 lines (139 loc) · 4.69 KB
/
ssh_key.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package scalr
import (
"context"
"errors"
"fmt"
"net/url"
)
// Compile-time proof of interface implementation.
var _ SSHKeys = (*sshKeys)(nil)
// SSHKeys describes all the SSH keys related methods that the Scalr API supports.
type SSHKeys interface {
List(ctx context.Context, options SSHKeysListOptions) (*SSHKeysList, error)
Create(ctx context.Context, options SSHKeyCreateOptions) (*SSHKey, error)
Read(ctx context.Context, sshKeyID string) (*SSHKey, error)
Update(ctx context.Context, sshKeyID string, options SSHKeyUpdateOptions) (*SSHKey, error)
Delete(ctx context.Context, sshKeyID string) error
}
// sshKeys implements SSHKeys.
type sshKeys struct {
client *Client
}
// SSHKeysList represents a list of SSH keys.
type SSHKeysList struct {
*Pagination
Items []*SSHKey
}
// SSHKey represents a Scalr SSH key.
type SSHKey struct {
ID string `jsonapi:"primary,account-ssh-keys"`
Name string `jsonapi:"attr,name"`
PrivateKey string `jsonapi:"attr,private_key,omitempty"`
IsShared bool `jsonapi:"attr,is-shared"`
Account *Account `jsonapi:"relation,account"`
Environments []*Environment `jsonapi:"relation,environments"`
}
// SSHKeysListOptions represents the options for listing SSH keys.
type SSHKeysListOptions struct {
ListOptions
Sort string `url:"sort,omitempty"`
Include string `url:"include,omitempty"`
Filter *SSHKeyFilter `url:"filter,omitempty"`
}
// SSHKeyFilter represents the options for filtering SSH keys.
type SSHKeyFilter struct {
Name string `url:"name,omitempty"`
AccountID string `url:"account,omitempty"`
}
// SSHKeyCreateOptions represents the options for creating a new SSH key.
type SSHKeyCreateOptions struct {
ID string `jsonapi:"primary,account-ssh-keys"`
Name *string `jsonapi:"attr,name"`
PrivateKey *string `jsonapi:"attr,private_key"`
IsShared *bool `jsonapi:"attr,is_shared,omitempty"`
Account *Account `jsonapi:"relation,account"`
Environments []*Environment `jsonapi:"relation,environments,omitempty"`
}
// Create is used to create a new SSH key.
func (s *sshKeys) Create(ctx context.Context, options SSHKeyCreateOptions) (*SSHKey, error) {
options.ID = ""
req, err := s.client.newRequest("POST", "ssh-keys", &options)
if err != nil {
return nil, err
}
sshKey := &SSHKey{}
err = s.client.do(ctx, req, sshKey)
if err != nil {
return nil, err
}
return sshKey, nil
}
// Read an SSH key by its ID.
func (s *sshKeys) Read(ctx context.Context, sshKeyID string) (*SSHKey, error) {
if !validStringID(&sshKeyID) {
return nil, errors.New("invalid value for SSH key ID")
}
urlPath := fmt.Sprintf("ssh-keys/%s", url.QueryEscape(sshKeyID))
req, err := s.client.newRequest("GET", urlPath, nil)
if err != nil {
return nil, err
}
sshKey := &SSHKey{}
err = s.client.do(ctx, req, sshKey)
if err != nil {
return nil, err
}
return sshKey, nil
}
// SSHKeyUpdateOptions represents the options for updating an existing SSH key.
type SSHKeyUpdateOptions struct {
ID string `jsonapi:"primary,account-ssh-keys"`
Name *string `jsonapi:"attr,name,omitempty"`
PrivateKey *string `jsonapi:"attr,private_key,omitempty"`
IsShared *bool `jsonapi:"attr,is-shared,omitempty"`
Environments []*Environment `jsonapi:"relation,environments"`
}
// Update an existing SSH key.
func (s *sshKeys) Update(ctx context.Context, sshKeyID string, options SSHKeyUpdateOptions) (*SSHKey, error) {
if !validStringID(&sshKeyID) {
return nil, errors.New("invalid value for SSH key ID")
}
// Make sure we don't send a user provided ID.
options.ID = ""
urlPath := fmt.Sprintf("ssh-keys/%s", url.QueryEscape(sshKeyID))
req, err := s.client.newRequest("PATCH", urlPath, &options)
if err != nil {
return nil, err
}
sshKey := &SSHKey{}
err = s.client.do(ctx, req, sshKey)
if err != nil {
return nil, err
}
return sshKey, nil
}
// Delete deletes an SSH key by its ID.
func (s *sshKeys) Delete(ctx context.Context, sshKeyID string) error {
if !validStringID(&sshKeyID) {
return errors.New("invalid value for SSH key ID")
}
urlPath := fmt.Sprintf("ssh-keys/%s", url.QueryEscape(sshKeyID))
req, err := s.client.newRequest("DELETE", urlPath, nil)
if err != nil {
return err
}
return s.client.do(ctx, req, nil)
}
// List all SSH keys within a scalr account.
func (s *sshKeys) List(ctx context.Context, options SSHKeysListOptions) (*SSHKeysList, error) {
req, err := s.client.newRequest("GET", "ssh-keys", &options)
if err != nil {
return nil, err
}
sshKeysList := &SSHKeysList{}
err = s.client.do(ctx, req, sshKeysList)
if err != nil {
return nil, err
}
return sshKeysList, nil
}