-
Notifications
You must be signed in to change notification settings - Fork 102
/
gpg_key.go
255 lines (206 loc) · 6.13 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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
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://developer.hashicorp.com/terraform/cloud-docs/api-docs/private-registry/gpg-keys
type GPGKeys interface {
// Lists GPG keys in a private registry.
ListPrivate(ctx context.Context, options GPGKeyListOptions) (*GPGKeyList, error)
// 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
}
// GPGKeyList represents a list of GPG keys.
type GPGKeyList struct {
*Pagination
Items []*GPGKey
}
// GPGKey represents a signed GPG key for a HCP Terraform or Terraform Enterprise 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
}
// GPGKeyListOptions represents all the available options to list keys in a registry.
type GPGKeyListOptions struct {
ListOptions
// Required: A list of one or more namespaces. Must be authorized HCP Terraform or Terraform Enterprise organization names.
Namespaces []string `url:"filter[namespace]"`
}
// 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"`
}
// ListPrivate lists the private registry GPG keys for specified namespaces.
func (s *gpgKeys) ListPrivate(ctx context.Context, options GPGKeyListOptions) (*GPGKeyList, error) {
if err := options.valid(); err != nil {
return nil, err
}
u := fmt.Sprintf("/api/registry/%s/v2/gpg-keys", url.PathEscape(string(PrivateRegistry)))
req, err := s.client.NewRequest("GET", u, &options)
if err != nil {
return nil, err
}
keyl := &GPGKeyList{}
err = req.Do(ctx, keyl)
if err != nil {
return nil, err
}
return keyl, nil
}
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.PathEscape(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.PathEscape(string(keyID.RegistryName)),
url.PathEscape(keyID.Namespace),
url.PathEscape(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.PathEscape(string(keyID.RegistryName)),
url.PathEscape(keyID.Namespace),
url.PathEscape(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.PathEscape(string(keyID.RegistryName)),
url.PathEscape(keyID.Namespace),
url.PathEscape(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 *GPGKeyListOptions) valid() error {
if len(o.Namespaces) == 0 {
return ErrInvalidNamespace
}
for _, namespace := range o.Namespaces {
if namespace == "" || !validString(&namespace) {
return ErrInvalidNamespace
}
}
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
}