forked from hashicorp/go-tfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpg_key.go
200 lines (163 loc) · 4.74 KB
/
gpg_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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package tfe
import (
"context"
"fmt"
"net/url"
"strings"
"time"
)
// Compile-time proof of interface implementation
var _ GPGKeys = (*gpgKeys)(nil)
// GPGKeys describes all the GPG key related methods that the Terraform Private Registry API supports.
//
// TFE API Docs: https://www.terraform.io/cloud-docs/api-docs/private-registry/gpg-keys
type GPGKeys interface {
// Uploads a GPG Key to a private registry scoped with a namespace.
Create(ctx context.Context, registryName RegistryName, options GPGKeyCreateOptions) (*GPGKey, error)
// Read a GPG key.
Read(ctx context.Context, keyID GPGKeyID) (*GPGKey, error)
// Update a GPG key.
Update(ctx context.Context, keyID GPGKeyID, options GPGKeyUpdateOptions) (*GPGKey, error)
// Delete a GPG key.
Delete(ctx context.Context, keyID GPGKeyID) error
}
// gpgKeys implements GPGKeys
type gpgKeys struct {
client *Client
}
// GPGKey represents a signed GPG key for a TFC/E private provider.
type GPGKey struct {
ID string `jsonapi:"primary,gpg-keys"`
AsciiArmor string `jsonapi:"attr,ascii-armor"`
CreatedAt time.Time `jsonapi:"attr,created-at,iso8601"`
KeyID string `jsonapi:"attr,key-id"`
Namespace string `jsonapi:"attr,namespace"`
Source string `jsonapi:"attr,source"`
SourceURL *string `jsonapi:"attr,source-url"`
TrustSignature string `jsonapi:"attr,trust-signature"`
UpdatedAt time.Time `jsonapi:"attr,updated-at,iso8601"`
}
// GPGKeyID represents the set of identifiers used to fetch a GPG key.
type GPGKeyID struct {
RegistryName RegistryName
Namespace string
KeyID string
}
// GPGKeyCreateOptions represents all the available options used to create a GPG key.
type GPGKeyCreateOptions struct {
Type string `jsonapi:"primary,gpg-keys"`
Namespace string `jsonapi:"attr,namespace"`
AsciiArmor string `jsonapi:"attr,ascii-armor"`
}
// GPGKeyCreateOptions represents all the available options used to update a GPG key.
type GPGKeyUpdateOptions struct {
Type string `jsonapi:"primary,gpg-keys"`
Namespace string `jsonapi:"attr,namespace"`
}
func (s *gpgKeys) Create(ctx context.Context, registryName RegistryName, options GPGKeyCreateOptions) (*GPGKey, error) {
if err := options.valid(); err != nil {
return nil, err
}
if registryName != PrivateRegistry {
return nil, ErrInvalidRegistryName
}
u := fmt.Sprintf("/api/registry/%s/v2/gpg-keys", url.QueryEscape(string(registryName)))
req, err := s.client.NewRequest("POST", u, &options)
if err != nil {
return nil, err
}
g := &GPGKey{}
err = req.Do(ctx, g)
if err != nil {
return nil, err
}
return g, nil
}
func (s *gpgKeys) Read(ctx context.Context, keyID GPGKeyID) (*GPGKey, error) {
if err := keyID.valid(); err != nil {
return nil, err
}
u := fmt.Sprintf("/api/registry/%s/v2/gpg-keys/%s/%s",
url.QueryEscape(string(keyID.RegistryName)),
url.QueryEscape(keyID.Namespace),
url.QueryEscape(keyID.KeyID),
)
req, err := s.client.NewRequest("GET", u, nil)
if err != nil {
return nil, err
}
g := &GPGKey{}
err = req.Do(ctx, g)
if err != nil {
return nil, err
}
return g, nil
}
func (s *gpgKeys) Update(ctx context.Context, keyID GPGKeyID, options GPGKeyUpdateOptions) (*GPGKey, error) {
if err := options.valid(); err != nil {
return nil, err
}
if err := keyID.valid(); err != nil {
return nil, err
}
u := fmt.Sprintf("/api/registry/%s/v2/gpg-keys/%s/%s",
url.QueryEscape(string(keyID.RegistryName)),
url.QueryEscape(keyID.Namespace),
url.QueryEscape(keyID.KeyID),
)
req, err := s.client.NewRequest("PATCH", u, &options)
if err != nil {
return nil, err
}
g := &GPGKey{}
err = req.Do(ctx, g)
if err != nil {
if strings.Contains(err.Error(), "namespace not authorized") {
return nil, ErrNamespaceNotAuthorized
}
return nil, err
}
return g, nil
}
func (s *gpgKeys) Delete(ctx context.Context, keyID GPGKeyID) error {
if err := keyID.valid(); err != nil {
return err
}
u := fmt.Sprintf("/api/registry/%s/v2/gpg-keys/%s/%s",
url.QueryEscape(string(keyID.RegistryName)),
url.QueryEscape(keyID.Namespace),
url.QueryEscape(keyID.KeyID),
)
req, err := s.client.NewRequest("DELETE", u, nil)
if err != nil {
return err
}
return req.Do(ctx, nil)
}
func (o GPGKeyID) valid() error {
if o.RegistryName != PrivateRegistry {
return ErrInvalidRegistryName
}
if !validString(&o.Namespace) {
return ErrInvalidNamespace
}
if !validString(&o.KeyID) {
return ErrInvalidKeyID
}
return nil
}
func (o GPGKeyCreateOptions) valid() error {
if !validString(&o.Namespace) {
return ErrInvalidNamespace
}
if !validString(&o.AsciiArmor) {
return ErrInvalidAsciiArmor
}
return nil
}
func (o GPGKeyUpdateOptions) valid() error {
if !validString(&o.Namespace) {
return ErrInvalidNamespace
}
return nil
}