-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathproject.go
383 lines (300 loc) · 10.5 KB
/
project.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package tfe
import (
"context"
"fmt"
"net/url"
"github.com/hashicorp/jsonapi"
)
// Compile-time proof of interface implementation.
var _ Projects = (*projects)(nil)
// Projects describes all the project related methods that the Terraform
// Enterprise API supports
//
// TFE API docs: https://developer.hashicorp.com/terraform/cloud-docs/api-docs/projects
type Projects interface {
// List all projects in the given organization
List(ctx context.Context, organization string, options *ProjectListOptions) (*ProjectList, error)
// Create a new project.
Create(ctx context.Context, organization string, options ProjectCreateOptions) (*Project, error)
// Read a project by its ID.
Read(ctx context.Context, projectID string) (*Project, error)
// Update a project.
Update(ctx context.Context, projectID string, options ProjectUpdateOptions) (*Project, error)
// Delete a project.
Delete(ctx context.Context, projectID string) error
// ListTagBindings lists all tag bindings associated with the project.
ListTagBindings(ctx context.Context, projectID string) ([]*TagBinding, error)
// ListEffectiveTagBindings lists all tag bindings associated with the project. In practice,
// this should be the same as ListTagBindings since projects do not currently inherit
// tag bindings.
ListEffectiveTagBindings(ctx context.Context, workspaceID string) ([]*EffectiveTagBinding, error)
// AddTagBindings adds or modifies the value of existing tag binding keys for a project.
AddTagBindings(ctx context.Context, projectID string, options ProjectAddTagBindingsOptions) ([]*TagBinding, error)
// DeleteAllTagBindings removes all existing tag bindings for a project.
DeleteAllTagBindings(ctx context.Context, projectID string) error
}
// projects implements Projects
type projects struct {
client *Client
}
// ProjectList represents a list of projects
type ProjectList struct {
*Pagination
Items []*Project
}
// Project represents a Terraform Enterprise project
type Project struct {
ID string `jsonapi:"primary,projects"`
IsUnified bool `jsonapi:"attr,is-unified"`
Name string `jsonapi:"attr,name"`
Description string `jsonapi:"attr,description"`
AutoDestroyActivityDuration jsonapi.NullableAttr[string] `jsonapi:"attr,auto-destroy-activity-duration,omitempty"`
// Relations
Organization *Organization `jsonapi:"relation,organization"`
EffectiveTagBindings []*EffectiveTagBinding `jsonapi:"relation,effective-tag-bindings"`
}
type ProjectIncludeOpt string
const (
ProjectEffectiveTagBindings ProjectIncludeOpt = "effective_tag_bindings"
)
// ProjectListOptions represents the options for listing projects
type ProjectListOptions struct {
ListOptions
// Optional: String (complete project name) used to filter the results.
// If multiple, comma separated values are specified, projects matching
// any of the names are returned.
Name string `url:"filter[names],omitempty"`
// Optional: A query string to search projects by names.
Query string `url:"q,omitempty"`
// Optional: A filter string to list projects filtered by key/value tags.
// These are not annotated and therefore not encoded by go-querystring
TagBindings []*TagBinding
// Optional: A list of relations to include
Include []ProjectIncludeOpt `url:"include,omitempty"`
}
// ProjectCreateOptions represents the options for creating a project
type ProjectCreateOptions struct {
// Type is a public field utilized by JSON:API to
// set the resource type via the field tag.
// It is not a user-defined value and does not need to be set.
// https://jsonapi.org/format/#crud-creating
Type string `jsonapi:"primary,projects"`
// Required: A name to identify the project.
Name string `jsonapi:"attr,name"`
// Optional: A description for the project.
Description *string `jsonapi:"attr,description,omitempty"`
// Associated TagBindings of the project.
TagBindings []*TagBinding `jsonapi:"relation,tag-bindings,omitempty"`
// Optional: For all workspaces in the project, the period of time to wait
// after workspace activity to trigger a destroy run. The format should roughly
// match a Go duration string limited to days and hours, e.g. "24h" or "1d".
AutoDestroyActivityDuration jsonapi.NullableAttr[string] `jsonapi:"attr,auto-destroy-activity-duration,omitempty"`
}
// ProjectUpdateOptions represents the options for updating a project
type ProjectUpdateOptions struct {
// Type is a public field utilized by JSON:API to
// set the resource type via the field tag.
// It is not a user-defined value and does not need to be set.
// https://jsonapi.org/format/#crud-creating
Type string `jsonapi:"primary,projects"`
// Optional: A name to identify the project
Name *string `jsonapi:"attr,name,omitempty"`
// Optional: A description for the project.
Description *string `jsonapi:"attr,description,omitempty"`
// Associated TagBindings of the project. Note that this will replace
// all existing tag bindings.
TagBindings []*TagBinding `jsonapi:"relation,tag-bindings,omitempty"`
// Optional: For all workspaces in the project, the period of time to wait
// after workspace activity to trigger a destroy run. The format should roughly
// match a Go duration string limited to days and hours, e.g. "24h" or "1d".
AutoDestroyActivityDuration jsonapi.NullableAttr[string] `jsonapi:"attr,auto-destroy-activity-duration,omitempty"`
}
// ProjectAddTagBindingsOptions represents the options for adding tag bindings
// to a project.
type ProjectAddTagBindingsOptions struct {
TagBindings []*TagBinding
}
// List all projects.
func (s *projects) List(ctx context.Context, organization string, options *ProjectListOptions) (*ProjectList, error) {
if !validStringID(&organization) {
return nil, ErrInvalidOrg
}
var tagFilters map[string][]string
if options != nil {
tagFilters = encodeTagFiltersAsParams(options.TagBindings)
}
u := fmt.Sprintf("organizations/%s/projects", url.PathEscape(organization))
req, err := s.client.NewRequestWithAdditionalQueryParams("GET", u, options, tagFilters)
if err != nil {
return nil, err
}
p := &ProjectList{}
err = req.Do(ctx, p)
if err != nil {
return nil, err
}
return p, nil
}
// Create a project with the given options
func (s *projects) Create(ctx context.Context, organization string, options ProjectCreateOptions) (*Project, error) {
if !validStringID(&organization) {
return nil, ErrInvalidOrg
}
if err := options.valid(); err != nil {
return nil, err
}
u := fmt.Sprintf("organizations/%s/projects", url.PathEscape(organization))
req, err := s.client.NewRequest("POST", u, &options)
if err != nil {
return nil, err
}
p := &Project{}
err = req.Do(ctx, p)
if err != nil {
return nil, err
}
return p, nil
}
// Read a single project by its ID.
func (s *projects) Read(ctx context.Context, projectID string) (*Project, error) {
if !validStringID(&projectID) {
return nil, ErrInvalidProjectID
}
u := fmt.Sprintf("projects/%s", url.PathEscape(projectID))
req, err := s.client.NewRequest("GET", u, nil)
if err != nil {
return nil, err
}
p := &Project{}
err = req.Do(ctx, p)
if err != nil {
return nil, err
}
return p, nil
}
func (s *projects) ListTagBindings(ctx context.Context, projectID string) ([]*TagBinding, error) {
if !validStringID(&projectID) {
return nil, ErrInvalidProjectID
}
u := fmt.Sprintf("projects/%s/tag-bindings", url.PathEscape(projectID))
req, err := s.client.NewRequest("GET", u, nil)
if err != nil {
return nil, err
}
var list struct {
*Pagination
Items []*TagBinding
}
err = req.Do(ctx, &list)
if err != nil {
return nil, err
}
return list.Items, nil
}
func (s *projects) ListEffectiveTagBindings(ctx context.Context, projectID string) ([]*EffectiveTagBinding, error) {
if !validStringID(&projectID) {
return nil, ErrInvalidProjectID
}
u := fmt.Sprintf("projects/%s/effective-tag-bindings", url.PathEscape(projectID))
req, err := s.client.NewRequest("GET", u, nil)
if err != nil {
return nil, err
}
var list struct {
*Pagination
Items []*EffectiveTagBinding
}
err = req.Do(ctx, &list)
if err != nil {
return nil, err
}
return list.Items, nil
}
// AddTagBindings adds or modifies the value of existing tag binding keys for a project
func (s *projects) AddTagBindings(ctx context.Context, projectID string, options ProjectAddTagBindingsOptions) ([]*TagBinding, error) {
if !validStringID(&projectID) {
return nil, ErrInvalidProjectID
}
if err := options.valid(); err != nil {
return nil, err
}
u := fmt.Sprintf("projects/%s/tag-bindings", url.PathEscape(projectID))
req, err := s.client.NewRequest("PATCH", u, options.TagBindings)
if err != nil {
return nil, err
}
var response = struct {
*Pagination
Items []*TagBinding
}{}
err = req.Do(ctx, &response)
return response.Items, err
}
// Update a project by its ID
func (s *projects) Update(ctx context.Context, projectID string, options ProjectUpdateOptions) (*Project, error) {
if !validStringID(&projectID) {
return nil, ErrInvalidProjectID
}
if err := options.valid(); err != nil {
return nil, err
}
u := fmt.Sprintf("projects/%s", url.PathEscape(projectID))
req, err := s.client.NewRequest("PATCH", u, &options)
if err != nil {
return nil, err
}
p := &Project{}
err = req.Do(ctx, p)
if err != nil {
return nil, err
}
return p, nil
}
// Delete a project by its ID
func (s *projects) Delete(ctx context.Context, projectID string) error {
if !validStringID(&projectID) {
return ErrInvalidProjectID
}
u := fmt.Sprintf("projects/%s", url.PathEscape(projectID))
req, err := s.client.NewRequest("DELETE", u, nil)
if err != nil {
return err
}
return req.Do(ctx, nil)
}
// Delete all tag bindings associated with a project.
func (s *projects) DeleteAllTagBindings(ctx context.Context, projectID string) error {
if !validStringID(&projectID) {
return ErrInvalidProjectID
}
type aliasOpts struct {
Type string `jsonapi:"primary,projects"`
TagBindings []*TagBinding `jsonapi:"relation,tag-bindings"`
}
opts := &aliasOpts{
TagBindings: []*TagBinding{},
}
u := fmt.Sprintf("projects/%s", url.PathEscape(projectID))
req, err := s.client.NewRequest("PATCH", u, opts)
if err != nil {
return err
}
return req.Do(ctx, nil)
}
func (o ProjectCreateOptions) valid() error {
if !validString(&o.Name) {
return ErrRequiredName
}
return nil
}
func (o ProjectUpdateOptions) valid() error {
return nil
}
func (o ProjectAddTagBindingsOptions) valid() error {
if len(o.TagBindings) == 0 {
return ErrRequiredTagBindings
}
return nil
}