forked from hashicorp/go-tfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_task.go
328 lines (260 loc) · 9.05 KB
/
run_task.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
package tfe
import (
"context"
"fmt"
"net/url"
)
// Compile-time proof of interface implementation
var _ RunTasks = (*runTasks)(nil)
// RunTasks represents all the run task related methods in the context of an organization
// that the Terraform Cloud/Enterprise API supports.
// **Note: This API is still in BETA and subject to change.**
// https://www.terraform.io/cloud-docs/api-docs/run-tasks#run-tasks-api
type RunTasks interface {
// Create a run task for an organization
Create(ctx context.Context, organization string, options RunTaskCreateOptions) (*RunTask, error)
// List all run tasks for an organization
List(ctx context.Context, organization string, options *RunTaskListOptions) (*RunTaskList, error)
// Read an organization's run task by ID
Read(ctx context.Context, runTaskID string) (*RunTask, error)
// Read an organization's run task by ID with given options
ReadWithOptions(ctx context.Context, runTaskID string, options *RunTaskReadOptions) (*RunTask, error)
// Update a run task for an organization
Update(ctx context.Context, runTaskID string, options RunTaskUpdateOptions) (*RunTask, error)
// Delete an organization's run task
Delete(ctx context.Context, runTaskID string) error
// Attach a run task to an organization's workspace
AttachToWorkspace(ctx context.Context, workspaceID string, runTaskID string, enforcementLevel TaskEnforcementLevel) (*WorkspaceRunTask, error)
}
// runTasks implements RunTasks
type runTasks struct {
client *Client
}
// RunTask represents a TFC/E run task
type RunTask struct {
ID string `jsonapi:"primary,tasks"`
Name string `jsonapi:"attr,name"`
URL string `jsonapi:"attr,url"`
Category string `jsonapi:"attr,category"`
HMACKey *string `jsonapi:"attr,hmac-key,omitempty"`
Enabled bool `jsonapi:"attr,enabled"`
Organization *Organization `jsonapi:"relation,organization"`
WorkspaceRunTasks []*WorkspaceRunTask `jsonapi:"relation,workspace-tasks"`
}
// RunTaskList represents a list of run tasks
type RunTaskList struct {
*Pagination
Items []*RunTask
}
// RunTaskIncludeOpt represents the available options for include query params.
// https://www.terraform.io/cloud-docs/api-docs/run-tasks#list-run-tasks
type RunTaskIncludeOpt string
const (
RunTaskWorkspaceTasks RunTaskIncludeOpt = "workspace_tasks"
RunTaskWorkspace RunTaskIncludeOpt = "workspace_tasks.workspace"
)
// RunTaskListOptions represents the set of options for listing run tasks
type RunTaskListOptions struct {
ListOptions
// Optional: A list of relations to include with a run task. See available resources:
// https://www.terraform.io/cloud-docs/api-docs/run-tasks#list-run-tasks
Include []RunTaskIncludeOpt `url:"include,omitempty"`
}
// RunTaskReadOptions represents the set of options for reading a run task
type RunTaskReadOptions struct {
// Optional: A list of relations to include with a run task. See available resources:
// https://www.terraform.io/cloud-docs/api-docs/run-tasks#list-run-tasks
Include []RunTaskIncludeOpt `url:"include,omitempty"`
}
// RunTaskCreateOptions represents the set of options for creating a run task
type RunTaskCreateOptions 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,tasks"`
// Required: The name of the run task
Name string `jsonapi:"attr,name"`
// Required: The URL to send a run task payload
URL string `jsonapi:"attr,url"`
// Required: Must be "task"
Category string `jsonapi:"attr,category"`
// Optional: An HMAC key to verify the run task
HMACKey *string `jsonapi:"attr,hmac-key,omitempty"`
// Optional: Whether the task should be enabled
Enabled *bool `jsonapi:"attr,enabled,omitempty"`
}
// RunTaskUpdateOptions represents the set of options for updating an organization's run task
type RunTaskUpdateOptions 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,tasks"`
// Optional: The name of the run task, defaults to previous value
Name *string `jsonapi:"attr,name,omitempty"`
// Optional: The URL to send a run task payload, defaults to previous value
URL *string `jsonapi:"attr,url,omitempty"`
// Optional: Must be "task", defaults to "task"
Category *string `jsonapi:"attr,category,omitempty"`
// Optional: An HMAC key to verify the run task
HMACKey *string `jsonapi:"attr,hmac-key,omitempty"`
// Optional: Whether the task should be enabled
Enabled *bool `jsonapi:"attr,enabled,omitempty"`
}
// Create is used to create a new run task for an organization
func (s *runTasks) Create(ctx context.Context, organization string, options RunTaskCreateOptions) (*RunTask, error) {
if !validStringID(&organization) {
return nil, ErrInvalidOrg
}
if err := options.valid(); err != nil {
return nil, err
}
u := fmt.Sprintf("organizations/%s/tasks", url.QueryEscape(organization))
req, err := s.client.newRequest("POST", u, &options)
if err != nil {
return nil, err
}
r := &RunTask{}
err = s.client.do(ctx, req, r)
if err != nil {
return nil, err
}
return r, nil
}
// List all the run tasks for an organization
func (s *runTasks) List(ctx context.Context, organization string, options *RunTaskListOptions) (*RunTaskList, error) {
if !validStringID(&organization) {
return nil, ErrInvalidOrg
}
if err := options.valid(); err != nil {
return nil, err
}
u := fmt.Sprintf("organizations/%s/tasks", url.QueryEscape(organization))
req, err := s.client.newRequest("GET", u, options)
if err != nil {
return nil, err
}
rl := &RunTaskList{}
err = s.client.do(ctx, req, rl)
if err != nil {
return nil, err
}
return rl, nil
}
// Read is used to read an organization's run task by ID
func (s *runTasks) Read(ctx context.Context, runTaskID string) (*RunTask, error) {
return s.ReadWithOptions(ctx, runTaskID, nil)
}
// Read is used to read an organization's run task by ID with options
func (s *runTasks) ReadWithOptions(ctx context.Context, runTaskID string, options *RunTaskReadOptions) (*RunTask, error) {
if !validStringID(&runTaskID) {
return nil, ErrInvalidRunTaskID
}
if err := options.valid(); err != nil {
return nil, err
}
u := fmt.Sprintf("tasks/%s", url.QueryEscape(runTaskID))
req, err := s.client.newRequest("GET", u, options)
if err != nil {
return nil, err
}
r := &RunTask{}
err = s.client.do(ctx, req, r)
if err != nil {
return nil, err
}
return r, nil
}
// Update an existing run task for an organization by ID
func (s *runTasks) Update(ctx context.Context, runTaskID string, options RunTaskUpdateOptions) (*RunTask, error) {
if !validStringID(&runTaskID) {
return nil, ErrInvalidRunTaskID
}
if err := options.valid(); err != nil {
return nil, err
}
u := fmt.Sprintf("tasks/%s", url.QueryEscape(runTaskID))
req, err := s.client.newRequest("PATCH", u, &options)
if err != nil {
return nil, err
}
r := &RunTask{}
err = s.client.do(ctx, req, r)
if err != nil {
return nil, err
}
return r, nil
}
// Delete an existing run task for an organization by ID
func (s *runTasks) Delete(ctx context.Context, runTaskID string) error {
if !validStringID(&runTaskID) {
return ErrInvalidRunTaskID
}
u := fmt.Sprintf("tasks/%s", runTaskID)
req, err := s.client.newRequest("DELETE", u, nil)
if err != nil {
return err
}
return s.client.do(ctx, req, nil)
}
// AttachToWorkspace is a convenient method to attach a run task to a workspace. See: WorkspaceRunTasks.Create()
func (s *runTasks) AttachToWorkspace(ctx context.Context, workspaceID, runTaskID string, enforcement TaskEnforcementLevel) (*WorkspaceRunTask, error) {
return s.client.WorkspaceRunTasks.Create(ctx, workspaceID, WorkspaceRunTaskCreateOptions{
EnforcementLevel: enforcement,
RunTask: &RunTask{ID: runTaskID},
})
}
func (o *RunTaskCreateOptions) valid() error {
if !validString(&o.Name) {
return ErrRequiredName
}
if !validString(&o.URL) {
return ErrInvalidRunTaskURL
}
if o.Category != "task" {
return ErrInvalidRunTaskCategory
}
return nil
}
func (o *RunTaskUpdateOptions) valid() error {
if o.Name != nil && !validString(o.Name) {
return ErrRequiredName
}
if o.URL != nil && !validString(o.URL) {
return ErrInvalidRunTaskURL
}
if o.Category != nil && *o.Category != "task" {
return ErrInvalidRunTaskCategory
}
return nil
}
func (o *RunTaskListOptions) valid() error {
if o == nil {
return nil // nothing to validate
}
if err := validateRunTaskIncludeParams(o.Include); err != nil {
return err
}
return nil
}
func (o *RunTaskReadOptions) valid() error {
if o == nil {
return nil // nothing to validate
}
if err := validateRunTaskIncludeParams(o.Include); err != nil {
return err
}
return nil
}
func validateRunTaskIncludeParams(params []RunTaskIncludeOpt) error {
for _, p := range params {
switch p {
case RunTaskWorkspaceTasks, RunTaskWorkspace:
// do nothing
default:
return ErrInvalidIncludeValue
}
}
return nil
}