-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathnotification_configuration.go
449 lines (366 loc) · 16.1 KB
/
notification_configuration.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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package tfe
import (
"context"
"fmt"
"net/url"
"time"
)
// Compile-time proof of interface implementation.
var _ NotificationConfigurations = (*notificationConfigurations)(nil)
// NotificationConfigurations describes all the Notification Configuration
// related methods that the Terraform Enterprise API supports.
//
// TFE API docs:
// https://developer.hashicorp.com/terraform/cloud-docs/api-docs/notification-configurations
type NotificationConfigurations interface {
// List all the notification configurations within a workspace.
List(ctx context.Context, subscribableID string, options *NotificationConfigurationListOptions) (*NotificationConfigurationList, error)
// Create a new notification configuration with the given options.
Create(ctx context.Context, subscribableID string, options NotificationConfigurationCreateOptions) (*NotificationConfiguration, error)
// Read a notification configuration by its ID.
Read(ctx context.Context, notificationConfigurationID string) (*NotificationConfiguration, error)
// Update an existing notification configuration.
Update(ctx context.Context, notificationConfigurationID string, options NotificationConfigurationUpdateOptions) (*NotificationConfiguration, error)
// Delete a notification configuration by its ID.
Delete(ctx context.Context, notificationConfigurationID string) error
// Verify a notification configuration by its ID.
Verify(ctx context.Context, notificationConfigurationID string) (*NotificationConfiguration, error)
}
// notificationConfigurations implements NotificationConfigurations.
type notificationConfigurations struct {
client *Client
}
// NotificationTriggerType represents the different TFE notifications that can be sent
// as a run's progress transitions between different states
type NotificationTriggerType string
const (
NotificationTriggerCreated NotificationTriggerType = "run:created"
NotificationTriggerPlanning NotificationTriggerType = "run:planning"
NotificationTriggerNeedsAttention NotificationTriggerType = "run:needs_attention"
NotificationTriggerApplying NotificationTriggerType = "run:applying"
NotificationTriggerCompleted NotificationTriggerType = "run:completed"
NotificationTriggerErrored NotificationTriggerType = "run:errored"
NotificationTriggerAssessmentDrifted NotificationTriggerType = "assessment:drifted"
NotificationTriggerAssessmentFailed NotificationTriggerType = "assessment:failed"
NotificationTriggerAssessmentCheckFailed NotificationTriggerType = "assessment:check_failure"
NotificationTriggerWorkspaceAutoDestroyReminder NotificationTriggerType = "workspace:auto_destroy_reminder"
NotificationTriggerWorkspaceAutoDestroyRunResults NotificationTriggerType = "workspace:auto_destroy_run_results"
NotificationTriggerChangeRequestCreated NotificationTriggerType = "change_request:created"
)
// NotificationDestinationType represents the destination type of the
// notification configuration.
type NotificationDestinationType string
// List of available notification destination types.
const (
NotificationDestinationTypeEmail NotificationDestinationType = "email"
NotificationDestinationTypeGeneric NotificationDestinationType = "generic"
NotificationDestinationTypeSlack NotificationDestinationType = "slack"
NotificationDestinationTypeMicrosoftTeams NotificationDestinationType = "microsoft-teams"
)
// NotificationConfigurationList represents a list of Notification
// Configurations.
type NotificationConfigurationList struct {
*Pagination
Items []*NotificationConfiguration
}
// NotificationConfigurationSubscribableChoice is a choice type struct that represents the possible values
// within a polymorphic relation. If a value is available, exactly one field
// will be non-nil.
type NotificationConfigurationSubscribableChoice struct {
Team *Team
Workspace *Workspace
}
// NotificationConfiguration represents a Notification Configuration.
type NotificationConfiguration struct {
ID string `jsonapi:"primary,notification-configurations"`
CreatedAt time.Time `jsonapi:"attr,created-at,iso8601"`
DeliveryResponses []*DeliveryResponse `jsonapi:"attr,delivery-responses"`
DestinationType NotificationDestinationType `jsonapi:"attr,destination-type"`
Enabled bool `jsonapi:"attr,enabled"`
Name string `jsonapi:"attr,name"`
Token string `jsonapi:"attr,token"`
Triggers []string `jsonapi:"attr,triggers"`
UpdatedAt time.Time `jsonapi:"attr,updated-at,iso8601"`
URL string `jsonapi:"attr,url"`
// EmailAddresses is only available for TFE users. It is not available in HCP Terraform.
EmailAddresses []string `jsonapi:"attr,email-addresses"`
// Relations
// DEPRECATED. The subscribable field is polymorphic. Use NotificationConfigurationSubscribableChoice instead.
Subscribable *Workspace `jsonapi:"relation,subscribable,omitempty"`
SubscribableChoice *NotificationConfigurationSubscribableChoice `jsonapi:"polyrelation,subscribable"`
EmailUsers []*User `jsonapi:"relation,users"`
}
// DeliveryResponse represents a notification configuration delivery response.
type DeliveryResponse struct {
Body string `jsonapi:"attr,body"`
Code string `jsonapi:"attr,code"`
Headers map[string][]string `jsonapi:"attr,headers"`
SentAt time.Time `jsonapi:"attr,sent-at,rfc3339"`
Successful string `jsonapi:"attr,successful"`
URL string `jsonapi:"attr,url"`
}
// NotificationConfigurationListOptions represents the options for listing
// notification configurations.
type NotificationConfigurationListOptions struct {
ListOptions
SubscribableChoice *NotificationConfigurationSubscribableChoice
}
// NotificationConfigurationCreateOptions represents the options for
// creating a new notification configuration.
type NotificationConfigurationCreateOptions 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,notification-configurations"`
// Required: The destination type of the notification configuration
DestinationType *NotificationDestinationType `jsonapi:"attr,destination-type"`
// Required: Whether the notification configuration should be enabled or not
Enabled *bool `jsonapi:"attr,enabled"`
// Required: The name of the notification configuration
Name *string `jsonapi:"attr,name"`
// Optional: The token of the notification configuration
Token *string `jsonapi:"attr,token,omitempty"`
// Optional: The list of run events that will trigger notifications.
Triggers []NotificationTriggerType `jsonapi:"attr,triggers,omitempty"`
// Optional: The url of the notification configuration
URL *string `jsonapi:"attr,url,omitempty"`
// Optional: The list of email addresses that will receive notification emails.
// EmailAddresses is only available for TFE users. It is not available in HCP Terraform.
EmailAddresses []string `jsonapi:"attr,email-addresses,omitempty"`
// Optional: The list of users belonging to the organization that will receive notification emails.
EmailUsers []*User `jsonapi:"relation,users,omitempty"`
// Required: The workspace or team that the notification configuration is associated with.
SubscribableChoice *NotificationConfigurationSubscribableChoice `jsonapi:"polyrelation,subscribable,omitempty"`
}
// NotificationConfigurationUpdateOptions represents the options for
// updating a existing notification configuration.
type NotificationConfigurationUpdateOptions 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,notification-configurations"`
// Optional: Whether the notification configuration should be enabled or not
Enabled *bool `jsonapi:"attr,enabled,omitempty"`
// Optional: The name of the notification configuration
Name *string `jsonapi:"attr,name,omitempty"`
// Optional: The token of the notification configuration
Token *string `jsonapi:"attr,token,omitempty"`
// Optional: The list of run events that will trigger notifications.
Triggers []NotificationTriggerType `jsonapi:"attr,triggers,omitempty"`
// Optional: The url of the notification configuration
URL *string `jsonapi:"attr,url,omitempty"`
// Optional: The list of email addresses that will receive notification emails.
// EmailAddresses is only available for TFE users. It is not available in HCP Terraform.
EmailAddresses []string `jsonapi:"attr,email-addresses,omitempty"`
// Optional: The list of users belonging to the organization that will receive notification emails.
EmailUsers []*User `jsonapi:"relation,users,omitempty"`
}
// List all the notification configurations associated with a workspace.
func (s *notificationConfigurations) List(ctx context.Context, subscribableID string, options *NotificationConfigurationListOptions) (*NotificationConfigurationList, error) {
var u string
if options == nil {
options = &NotificationConfigurationListOptions{
SubscribableChoice: &NotificationConfigurationSubscribableChoice{
Workspace: &Workspace{ID: subscribableID},
},
}
} else if options.SubscribableChoice == nil {
options.SubscribableChoice = &NotificationConfigurationSubscribableChoice{
Workspace: &Workspace{ID: subscribableID},
}
}
if options.SubscribableChoice.Team != nil {
if !validStringID(&subscribableID) {
return nil, ErrInvalidTeamID
}
u = fmt.Sprintf("teams/%s/notification-configurations", url.PathEscape(subscribableID))
} else {
if !validStringID(&subscribableID) {
return nil, ErrInvalidWorkspaceID
}
u = fmt.Sprintf("workspaces/%s/notification-configurations", url.PathEscape(subscribableID))
}
req, err := s.client.NewRequest("GET", u, options)
if err != nil {
return nil, err
}
ncl := &NotificationConfigurationList{}
err = req.Do(ctx, ncl)
if err != nil {
return nil, err
}
for i := range ncl.Items {
backfillDeprecatedSubscribable(ncl.Items[i])
}
return ncl, nil
}
// Create a notification configuration with the given options.
func (s *notificationConfigurations) Create(ctx context.Context, subscribableID string, options NotificationConfigurationCreateOptions) (*NotificationConfiguration, error) {
var u string
var subscribableChoice *NotificationConfigurationSubscribableChoice
if options.SubscribableChoice == nil || options.SubscribableChoice.Team == nil {
u = fmt.Sprintf("workspaces/%s/notification-configurations", url.PathEscape(subscribableID))
options.SubscribableChoice = &NotificationConfigurationSubscribableChoice{Workspace: &Workspace{ID: subscribableID}}
} else {
u = fmt.Sprintf("teams/%s/notification-configurations", url.PathEscape(subscribableID))
options.SubscribableChoice = &NotificationConfigurationSubscribableChoice{Team: &Team{ID: subscribableID}}
}
if err := options.valid(); err != nil {
return nil, err
}
req, err := s.client.NewRequest("POST", u, &options)
if err != nil {
return nil, err
}
nc := &NotificationConfiguration{SubscribableChoice: subscribableChoice}
err = req.Do(ctx, nc)
if err != nil {
return nil, err
}
backfillDeprecatedSubscribable(nc)
return nc, nil
}
// Read a notification configuration by its ID.
func (s *notificationConfigurations) Read(ctx context.Context, notificationConfigurationID string) (*NotificationConfiguration, error) {
if !validStringID(¬ificationConfigurationID) {
return nil, ErrInvalidNotificationConfigID
}
u := fmt.Sprintf("notification-configurations/%s", url.PathEscape(notificationConfigurationID))
req, err := s.client.NewRequest("GET", u, nil)
if err != nil {
return nil, err
}
nc := &NotificationConfiguration{}
err = req.Do(ctx, nc)
if err != nil {
return nil, err
}
backfillDeprecatedSubscribable(nc)
return nc, nil
}
// Updates a notification configuration with the given options.
func (s *notificationConfigurations) Update(ctx context.Context, notificationConfigurationID string, options NotificationConfigurationUpdateOptions) (*NotificationConfiguration, error) {
if !validStringID(¬ificationConfigurationID) {
return nil, ErrInvalidNotificationConfigID
}
if err := options.valid(); err != nil {
return nil, err
}
u := fmt.Sprintf("notification-configurations/%s", url.PathEscape(notificationConfigurationID))
req, err := s.client.NewRequest("PATCH", u, &options)
if err != nil {
return nil, err
}
nc := &NotificationConfiguration{}
err = req.Do(ctx, nc)
if err != nil {
return nil, err
}
backfillDeprecatedSubscribable(nc)
return nc, nil
}
// Delete a notifications configuration by its ID.
func (s *notificationConfigurations) Delete(ctx context.Context, notificationConfigurationID string) error {
if !validStringID(¬ificationConfigurationID) {
return ErrInvalidNotificationConfigID
}
u := fmt.Sprintf("notification-configurations/%s", url.PathEscape(notificationConfigurationID))
req, err := s.client.NewRequest("DELETE", u, nil)
if err != nil {
return err
}
return req.Do(ctx, nil)
}
// Verify a notification configuration by delivering a verification
// payload to the configured url.
func (s *notificationConfigurations) Verify(ctx context.Context, notificationConfigurationID string) (*NotificationConfiguration, error) {
if !validStringID(¬ificationConfigurationID) {
return nil, ErrInvalidNotificationConfigID
}
u := fmt.Sprintf(
"notification-configurations/%s/actions/verify", url.PathEscape(notificationConfigurationID))
req, err := s.client.NewRequest("POST", u, nil)
if err != nil {
return nil, err
}
nc := &NotificationConfiguration{}
err = req.Do(ctx, nc)
if err != nil {
return nil, err
}
return nc, nil
}
func (o NotificationConfigurationCreateOptions) valid() error {
if o.SubscribableChoice == nil || o.SubscribableChoice.Workspace != nil {
if !validStringID(&o.SubscribableChoice.Workspace.ID) {
return ErrInvalidWorkspaceID
}
} else {
if !validStringID(&o.SubscribableChoice.Team.ID) {
return ErrInvalidTeamID
}
}
if o.DestinationType == nil {
return ErrRequiredDestinationType
}
if o.Enabled == nil {
return ErrRequiredEnabled
}
if !validString(o.Name) {
return ErrRequiredName
}
if !validNotificationTriggerType(o.Triggers) {
return ErrInvalidNotificationTrigger
}
if *o.DestinationType == NotificationDestinationTypeGeneric ||
*o.DestinationType == NotificationDestinationTypeSlack ||
*o.DestinationType == NotificationDestinationTypeMicrosoftTeams {
if o.URL == nil {
return ErrRequiredURL
}
}
return nil
}
func (o NotificationConfigurationUpdateOptions) valid() error {
if o.Name != nil && !validString(o.Name) {
return ErrRequiredName
}
if !validNotificationTriggerType(o.Triggers) {
return ErrInvalidNotificationTrigger
}
return nil
}
func backfillDeprecatedSubscribable(notification *NotificationConfiguration) {
if notification.Subscribable != nil || notification.SubscribableChoice == nil {
return
}
if notification.SubscribableChoice.Workspace != nil {
notification.Subscribable = notification.SubscribableChoice.Workspace
}
}
func validNotificationTriggerType(triggers []NotificationTriggerType) bool {
for _, t := range triggers {
switch t {
case NotificationTriggerApplying,
NotificationTriggerNeedsAttention,
NotificationTriggerCompleted,
NotificationTriggerCreated,
NotificationTriggerErrored,
NotificationTriggerPlanning,
NotificationTriggerAssessmentDrifted,
NotificationTriggerAssessmentFailed,
NotificationTriggerWorkspaceAutoDestroyReminder,
NotificationTriggerWorkspaceAutoDestroyRunResults,
NotificationTriggerChangeRequestCreated,
NotificationTriggerAssessmentCheckFailed:
continue
default:
return false
}
}
return true
}