forked from opsgenie/opsgenie-go-sdk-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.go
439 lines (379 loc) · 13 KB
/
request.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
package integration
import (
"net/http"
"github.com/opsgenie/opsgenie-go-sdk-v2/client"
"github.com/opsgenie/opsgenie-go-sdk-v2/og"
"github.com/pkg/errors"
)
type GetRequest struct {
client.BaseRequest
Id string
}
func (r *GetRequest) Validate() error {
if r.Id == "" {
return errors.New("Integration ID cannot be blank.")
}
return nil
}
func (r *GetRequest) ResourcePath() string {
return "/v2/integrations/" + r.Id
}
func (r *GetRequest) Method() string {
return http.MethodGet
}
type listRequest struct {
client.BaseRequest
}
func (r *listRequest) Validate() error {
return nil
}
func (r *listRequest) ResourcePath() string {
return "/v2/integrations"
}
func (r *listRequest) Method() string {
return http.MethodGet
}
type APIBasedIntegrationRequest struct {
client.BaseRequest
Name string `json:"name"`
Type string `json:"type"`
AllowWriteAccess *bool `json:"allowWriteAccess"`
IgnoreRespondersFromPayload *bool `json:"ignoreRespondersFromPayload"`
SuppressNotifications *bool `json:"suppressNotifications"`
OwnerTeam *og.OwnerTeam `json:"ownerTeam,omitempty"`
Responders []Responder `json:"responders,omitempty"`
}
func (r *APIBasedIntegrationRequest) Validate() error {
if r.Name == "" || r.Type == "" {
return errors.New("Name and Type fields cannot be empty.")
}
err := validateResponders(r.Responders)
if err != nil {
return err
}
return nil
}
func (r *APIBasedIntegrationRequest) ResourcePath() string {
return "/v2/integrations"
}
func (r *APIBasedIntegrationRequest) Method() string {
return http.MethodPost
}
type EmailBasedIntegrationRequest struct {
client.BaseRequest
Name string `json:"name"`
Type string `json:"type"`
EmailUsername string `json:"emailUsername"`
IgnoreRespondersFromPayload *bool `json:"ignoreRespondersFromPayload,omitempty"`
SuppressNotifications *bool `json:"suppressNotifications,omitempty"`
OwnerTeam *og.OwnerTeam `json:"ownerTeam,omitempty"`
Responders []Responder `json:"responders,omitempty"`
}
func (r *EmailBasedIntegrationRequest) Validate() error {
if r.Name == "" || r.Type == "" || r.EmailUsername == "" {
return errors.New("Name, Type and EmailUsername fields cannot be empty.")
}
err := validateResponders(r.Responders)
if err != nil {
return err
}
return nil
}
func (r *EmailBasedIntegrationRequest) ResourcePath() string {
return "/v2/integrations"
}
func (r *EmailBasedIntegrationRequest) Method() string {
return http.MethodPost
}
type UpdateIntegrationRequest struct {
client.BaseRequest
Id string
Name string
Type string
EmailUsername string
Enabled *bool
IgnoreRespondersFromPayload *bool
SuppressNotifications *bool
Responders []Responder
OtherFields
}
type OtherFields map[string]interface{}
func (r OtherFields) Validate() error {
if _, ok := r["id"]; !ok {
return errors.New("Integration ID cannot be blank.")
}
if _, ok := r["name"]; !ok {
return errors.New("Name field cannot be empty.")
}
if _, ok := r["type"]; !ok {
return errors.New("Type field cannot be empty.")
}
err := validateResponders(r["responders"].([]Responder))
if err != nil {
return err
}
return nil
}
func (r OtherFields) ResourcePath() string {
return "/v2/integrations/" + r["id"].(string)
}
func (r OtherFields) Method() string {
return http.MethodPut
}
func (r OtherFields) RequestParams() map[string]string {
return nil
}
func (r OtherFields) Metadata(apiRequest client.ApiRequest) map[string]interface{} {
headers := make(map[string]interface{})
headers["Content-Type"] = "application/json; charset=utf-8"
return headers
}
type DeleteIntegrationRequest struct {
client.BaseRequest
Id string
}
func (r *DeleteIntegrationRequest) Validate() error {
if r.Id == "" {
return errors.New("Integration ID cannot be blank.")
}
return nil
}
func (r *DeleteIntegrationRequest) ResourcePath() string {
return "/v2/integrations/" + r.Id
}
func (r *DeleteIntegrationRequest) Method() string {
return http.MethodDelete
}
type EnableIntegrationRequest struct {
client.BaseRequest
Id string
}
func (r *EnableIntegrationRequest) Validate() error {
if r.Id == "" {
return errors.New("Integration ID cannot be blank.")
}
return nil
}
func (r *EnableIntegrationRequest) ResourcePath() string {
return "/v2/integrations/" + r.Id + "/enable"
}
func (r *EnableIntegrationRequest) Method() string {
return http.MethodPost
}
type DisableIntegrationRequest struct {
client.BaseRequest
Id string
}
func (r *DisableIntegrationRequest) Validate() error {
if r.Id == "" {
return errors.New("Integration ID cannot be blank.")
}
return nil
}
func (r *DisableIntegrationRequest) ResourcePath() string {
return "/v2/integrations/" + r.Id + "/disable"
}
func (r *DisableIntegrationRequest) Method() string {
return http.MethodPost
}
type AuthenticateIntegrationRequest struct {
client.BaseRequest
Type string `json:"type"`
}
func (r *AuthenticateIntegrationRequest) Validate() error {
if r.Type == "" {
return errors.New("Type cannot be blank.")
}
return nil
}
func (r *AuthenticateIntegrationRequest) ResourcePath() string {
return "/v2/integrations/authenticate"
}
func (r *AuthenticateIntegrationRequest) Method() string {
return http.MethodPost
}
type GetIntegrationActionsRequest struct {
client.BaseRequest
Id string
}
func (r *GetIntegrationActionsRequest) Validate() error {
if r.Id == "" {
return errors.New("Type cannot be blank.")
}
return nil
}
func (r *GetIntegrationActionsRequest) ResourcePath() string {
return "/v2/integrations/" + r.Id + "/actions"
}
func (r *GetIntegrationActionsRequest) Method() string {
return http.MethodGet
}
type CreateIntegrationActionsRequest struct {
client.BaseRequest
Id string
Type ActionType `json:"type"`
Name string `json:"name"`
Alias string `json:"alias"`
Order int `json:"order,omitempty"`
User string `json:"user,omitempty"`
Note string `json:"note,omitempty"`
Filter *og.Filter `json:"filter,omitempty"`
Source string `json:"source,omitempty"`
Message string `json:"message,omitempty"`
Description string `json:"description,omitempty"`
Entity string `json:"entity,omitempty"`
AppendAttachments *bool `json:"appendAttachments,omitempty"`
AlertActions []string `json:"alertActions,omitempty"`
IgnoreAlertActionsFromPayload *bool `json:"ignoreAlertActionsFromPayload,omitempty"`
IgnoreRespondersFromPayload *bool `json:"ignoreRespondersFromPayload,omitempty"`
IgnoreTagsFromPayload *bool `json:"ignoreTagsFromPayload,omitempty"`
IgnoreExtraPropertiesFromPayload *bool `json:"ignoreExtraPropertiesFromPayload,omitempty"`
Responders []Responder `json:"responders,omitempty"`
Tags []string `json:"tags,omitempty"`
ExtraProperties map[string]string `json:"extraProperties,omitempty"`
}
func (r *CreateIntegrationActionsRequest) Validate() error {
if r.Id == "" {
return errors.New("Integration ID cannot be blank.")
}
if r.Name == "" || r.Type == "" || r.Alias == "" {
return errors.New("Name, Type and Alias fields cannot be empty.")
}
err := validateActionType(r.Type)
if err != nil {
return err
}
if r.Filter != nil {
err = validateConditionMatchType(r.Filter.ConditionMatchType)
if err != nil {
return err
}
err = og.ValidateFilter(*r.Filter)
if err != nil {
return err
}
}
return nil
}
func (r *CreateIntegrationActionsRequest) ResourcePath() string {
return "/v2/integrations/" + r.Id + "/actions"
}
func (r *CreateIntegrationActionsRequest) Method() string {
return http.MethodPost
}
type UpdateAllIntegrationActionsRequest struct {
client.BaseRequest
Id string
Create []IntegrationAction `json:"create"`
Close []IntegrationAction `json:"close"`
Acknowledge []IntegrationAction `json:"acknowledge"`
AddNote []IntegrationAction `json:"addNote"`
}
type IntegrationAction struct {
Type ActionType `json:"type"`
Name string `json:"name"`
Alias string `json:"alias"`
Order int `json:"order,omitempty"`
User string `json:"user,omitempty"`
Note string `json:"note,omitempty"`
Filter *og.Filter `json:"filter,omitempty"`
Source string `json:"source,omitempty"`
Message string `json:"message,omitempty"`
Description string `json:"description,omitempty"`
Entity string `json:"entity,omitempty"`
AppendAttachments *bool `json:"appendAttachments,omitempty"`
AlertActions []string `json:"alertActions,omitempty"`
IgnoreAlertActionsFromPayload *bool `json:"ignoreAlertActionsFromPayload,omitempty"`
IgnoreRespondersFromPayload *bool `json:"ignoreRespondersFromPayload,omitempty"`
IgnoreTagsFromPayload *bool `json:"ignoreTagsFromPayload,omitempty"`
IgnoreExtraPropertiesFromPayload *bool `json:"ignoreExtraPropertiesFromPayload,omitempty"`
Responders []Responder `json:"responders,omitempty"`
Tags []string `json:"tags,omitempty"`
ExtraProperties map[string]string `json:"extraProperties,omitempty"`
}
func (r *UpdateAllIntegrationActionsRequest) Validate() error {
if r.Id == "" {
return errors.New("Integration ID cannot be blank.")
}
err := validateActions(r.Create)
if err != nil {
return err
}
err = validateActions(r.Close)
if err != nil {
return err
}
err = validateActions(r.AddNote)
if err != nil {
return err
}
err = validateActions(r.Acknowledge)
if err != nil {
return err
}
return nil
}
func validateActions(actions []IntegrationAction) error {
for _, r := range actions {
err := validateActionType(r.Type)
if r.Name == "" || r.Type == "" || r.Alias == "" {
return errors.New("Name, Type and Alias fields cannot be empty.")
}
if r.Filter != nil {
err = validateConditionMatchType(r.Filter.ConditionMatchType)
if err != nil {
return err
}
err = og.ValidateFilter(*r.Filter)
if err != nil {
return err
}
}
}
return nil
}
func (r *UpdateAllIntegrationActionsRequest) ResourcePath() string {
return "/v2/integrations/" + r.Id + "/actions"
}
func (r *UpdateAllIntegrationActionsRequest) Method() string {
return http.MethodPut
}
func validateResponders(responders []Responder) error {
for _, responder := range responders {
if responder.Type == "" {
return errors.New("Responder type cannot be empty.")
}
if !(responder.Type == User || responder.Type == Team || responder.Type == Schedule || responder.Type == Escalation) {
return errors.New("Responder type should be one of these: 'User', 'Team', 'Schedule', 'Escalation'")
}
if responder.Type == User && responder.Username == "" && responder.Id == "" {
return errors.New("For responder type user either username or id must be provided.")
}
if responder.Type == Team && responder.Name == "" && responder.Id == "" {
return errors.New("For responder type team either team name or id must be provided.")
}
if responder.Type == Schedule && responder.Name == "" && responder.Id == "" {
return errors.New("For responder type schedule either schedule name or id must be provided.")
}
if responder.Type == Escalation && responder.Name == "" && responder.Id == "" {
return errors.New("For responder type escalation either escalation name or id must be provided.")
}
}
return nil
}
func validateActionType(actionType ActionType) error {
switch actionType {
case Create, Close, Acknowledge, AddNote:
return nil
}
return errors.New("Action type should be one of these: " +
"'Create','Close','Acknowledge','AddNote'")
}
func validateConditionMatchType(matchType og.ConditionMatchType) error {
switch matchType {
case og.MatchAll, og.MatchAllConditions, og.MatchAnyCondition, "":
return nil
}
return errors.New("Action type should be one of these: " +
"'MatchAll','MatchAllConditions','MatchAnyCondition'")
}