-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatus_page.go
568 lines (478 loc) · 17.2 KB
/
status_page.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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
package ilert
import (
"encoding/json"
"errors"
"fmt"
"net/url"
"strconv"
)
// StatusPage definition https://api.ilert.com/api-docs/#tag/Status-Pages
type StatusPage struct {
ID int64 `json:"id"`
Name string `json:"name"`
Domain string `json:"domain"`
Subdomain string `json:"subdomain"`
CustomCss string `json:"customCss"`
FaviconUrl string `json:"faviconUrl"`
LogoUrl string `json:"logoUrl"`
Visibility string `json:"visibility"`
HiddenFromSearch bool `json:"hiddenFromSearch"`
ShowSubscribeAction bool `json:"showSubscribeAction"`
ShowIncidentHistoryOption bool `json:"showIncidentHistoryOption"`
PageTitle string `json:"pageTitle"`
PageDescription string `json:"pageDescription"`
PageLayout string `json:"pageLayout,omitempty"`
LogoRedirectUrl string `json:"logoRedirectUrl"`
Activated bool `json:"activated"`
Status string `json:"status"`
Teams []TeamShort `json:"teams"`
Timezone string `json:"timezone,omitempty"`
Services []Service `json:"services,omitempty"`
Subscribed bool `json:"subscribed,omitempty"`
IpWhitelist []string `json:"ipWhitelist,omitempty"`
AccountWideView bool `json:"accountWideView,omitempty"`
Structure *StatusPageStructure `json:"structure,omitempty"`
ThemeMode string `json:"themeMode,omitempty"` // please use field `Appearance` instead
Appearance string `json:"appearance,omitempty"`
EmailWhitelist []string `json:"emailWhitelist,omitempty"`
Announcement string `json:"announcement,omitempty"`
AnnouncementOnPage bool `json:"announcementOnPage,omitempty"`
AnnouncementInWidget bool `json:"announcementInWidget,omitempty"`
Metrics []Metric `json:"metrics,omitempty"`
}
// StatusPageStructure defines status page structure
type StatusPageStructure struct {
Elements []StatusPageElement `json:"elements"`
}
// StatusPageElement defines status page element
type StatusPageElement struct {
// Must be either a service ID or status page service group ID.
// Provided service or status page service group must already be included in current status page
ID int64 `json:"id"`
// Must be either "SERVICE" or "GROUP", corresponding to given ID
Type string `json:"type"`
// Allowed values are "expand" | "no-graph"
Options []string `json:"options,omitempty"`
// Can only contain StatusPageElement of type "SERVICE".
// Must not be set on type "SERVICE".
// Must be set on type "GROUP".
Children []StatusPageElement `json:"children,omitempty"`
}
// StatusPageVisibility defines status page visibility
var StatusPageVisibility = struct {
Public string
Private string
}{
Public: "PUBLIC",
Private: "PRIVATE",
}
// StatusPageVisibilityAll defines status page visibility list
var StatusPageVisibilityAll = []string{
StatusPageVisibility.Public,
StatusPageVisibility.Private,
}
// StatusPageElementType defines status page element type
var StatusPageElementType = struct {
Service string
Group string
}{
Service: "SERVICE",
Group: "GROUP",
}
// StatusPageElementTypeAll defines all status page element types
var StatusPageElementTypeAll = []string{
StatusPageElementType.Service,
StatusPageElementType.Group,
}
// StatusPageLayout defines status page layout
var StatusPageLayout = struct {
SingleColumn string
Responsive string
}{
SingleColumn: "SINGLE_COLUMN",
Responsive: "RESPONSIVE",
}
// StatusPageLayoutAll defines all status page layouts
var StatusPageLayoutAll = []string{
StatusPageLayout.SingleColumn,
StatusPageLayout.Responsive,
}
// StatusPageAppearance defines status page appearance
var StatusPageAppearance = struct {
Light string
Dark string
}{
Light: "LIGHT",
Dark: "DARK",
}
// StatusPageAppearanceAll defines all status page appearances
var StatusPageAppearanceAll = []string{
StatusPageAppearance.Light,
StatusPageAppearance.Dark,
}
// StatusPageElementOption defines status page element option
var StatusPageElementOption = struct {
Expand string
NoGraph string
}{
Expand: "expand",
NoGraph: "no-graph",
}
// StatusPageElementOptionAll defines all status page element options
var StatusPageElementOptionAll = []string{
StatusPageElementOption.Expand,
StatusPageElementOption.NoGraph,
}
// CreateStatusPageInput represents the input of a CreateStatusPage operation.
type CreateStatusPageInput struct {
_ struct{}
StatusPage *StatusPage
}
// CreateStatusPageOutput represents the output of a CreateStatusPage operation.
type CreateStatusPageOutput struct {
_ struct{}
StatusPage *StatusPage
}
// CreateStatusPage creates a new status page. https://api.ilert.com/api-docs/#tag/Status-Pages/paths/~1status-pages/post
func (c *Client) CreateStatusPage(input *CreateStatusPageInput) (*CreateStatusPageOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.StatusPage == nil {
return nil, errors.New("status page input is required")
}
resp, err := c.httpClient.R().SetBody(input.StatusPage).Post(apiRoutes.statusPages)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 201); apiErr != nil {
return nil, apiErr
}
statusPage := &StatusPage{}
err = json.Unmarshal(resp.Body(), statusPage)
if err != nil {
return nil, err
}
return &CreateStatusPageOutput{StatusPage: statusPage}, nil
}
// GetStatusPagesInput represents the input of a GetStatusPagesInput operation.
type GetStatusPagesInput struct {
_ struct{}
// an integer specifying the starting point (beginning with 0) when paging through a list of entities
// Default: 0
StartIndex *int
// the maximum number of results when paging through a list of entities.
// Default: 50, Maximum: 100
MaxResults *int
// describes optional properties that should be included in the response
Include []*string
}
// GetStatusPagesOutput represents the output of a GetStatusPages operation.
type GetStatusPagesOutput struct {
_ struct{}
StatusPages []*StatusPage
}
// GetStatusPages lists existing status page. https://api.ilert.com/api-docs/#tag/Status-Pages/paths/~1status-pages/get
func (c *Client) GetStatusPages(input *GetStatusPagesInput) (*GetStatusPagesOutput, error) {
if input == nil {
input = &GetStatusPagesInput{}
}
q := url.Values{}
if input.StartIndex != nil {
q.Add("start-index", strconv.Itoa(*input.StartIndex))
} else {
q.Add("start-index", "0")
}
if input.MaxResults != nil {
q.Add("max-results", strconv.Itoa(*input.MaxResults))
} else {
q.Add("max-results", "50")
}
for _, include := range input.Include {
q.Add("include", *include)
}
resp, err := c.httpClient.R().Get(fmt.Sprintf("%s?%s", apiRoutes.statusPages, q.Encode()))
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
statusPages := make([]*StatusPage, 0)
err = json.Unmarshal(resp.Body(), &statusPages)
if err != nil {
return nil, err
}
return &GetStatusPagesOutput{StatusPages: statusPages}, nil
}
// GetStatusPageInput represents the input of a GetStatusPage operation.
type GetStatusPageInput struct {
_ struct{}
StatusPageID *int64
// describes optional properties that should be included in the response
Include []*string
}
// GetStatusPageOutput represents the output of a GetStatusPage operation.
type GetStatusPageOutput struct {
_ struct{}
StatusPage *StatusPage
}
// GetStatusPage gets a status page by id. https://api.ilert.com/api-docs/#tag/Status-Pages/paths/~1status-pages~1{id}/get
func (c *Client) GetStatusPage(input *GetStatusPageInput) (*GetStatusPageOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.StatusPageID == nil {
return nil, errors.New("status page id is required")
}
q := url.Values{}
for _, include := range input.Include {
q.Add("include", *include)
}
var url = fmt.Sprintf("%s/%d?%s", apiRoutes.statusPages, *input.StatusPageID, q.Encode())
resp, err := c.httpClient.R().Get(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
statusPage := &StatusPage{}
err = json.Unmarshal(resp.Body(), statusPage)
if err != nil {
return nil, err
}
return &GetStatusPageOutput{StatusPage: statusPage}, nil
}
// GetStatusPageSubscribersInput represents the input of a GetStatusPageSubscribers operation.
type GetStatusPageSubscribersInput struct {
_ struct{}
StatusPageID *int64
}
// GetStatusPageSubscribersOutput represents the output of a GetStatusPageSubscribers operation.
type GetStatusPageSubscribersOutput struct {
_ struct{}
Subscribers []*Subscriber
}
// GetStatusPageSubscribers gets subscribers of a status page by id. https://api.ilert.com/api-docs/#tag/Status-Pages/paths/~1status-pages~1{id}~1private-subscribers/get
func (c *Client) GetStatusPageSubscribers(input *GetStatusPageSubscribersInput) (*GetStatusPageSubscribersOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.StatusPageID == nil {
return nil, errors.New("status page id is required")
}
var url = fmt.Sprintf("%s/%d/private-subscribers", apiRoutes.statusPages, *input.StatusPageID)
resp, err := c.httpClient.R().Get(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
subscribers := make([]*Subscriber, 0)
err = json.Unmarshal(resp.Body(), &subscribers)
if err != nil {
return nil, err
}
return &GetStatusPageSubscribersOutput{Subscribers: subscribers}, nil
}
// SearchStatusPageInput represents the input of a SearchStatusPage operation.
type SearchStatusPageInput struct {
_ struct{}
StatusPageName *string
}
// SearchStatusPageOutput represents the output of a SearchStatusPage operation.
type SearchStatusPageOutput struct {
_ struct{}
StatusPage *StatusPage
}
// SearchStatusPage gets the status page with specified name.
func (c *Client) SearchStatusPage(input *SearchStatusPageInput) (*SearchStatusPageOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.StatusPageName == nil {
return nil, errors.New("status page name is required")
}
resp, err := c.httpClient.R().Get(fmt.Sprintf("%s/name/%s", apiRoutes.statusPages, *input.StatusPageName))
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
statusPage := &StatusPage{}
err = json.Unmarshal(resp.Body(), statusPage)
if err != nil {
return nil, err
}
return &SearchStatusPageOutput{StatusPage: statusPage}, nil
}
// UpdateStatusPageInput represents the input of a UpdateStatusPage operation.
type UpdateStatusPageInput struct {
_ struct{}
StatusPageID *int64
StatusPage *StatusPage
}
// UpdateStatusPageOutput represents the output of a UpdateStatusPage operation.
type UpdateStatusPageOutput struct {
_ struct{}
StatusPage *StatusPage
}
// UpdateStatusPage updates the specific status page. https://api.ilert.com/api-docs/#tag/Status-Pages/paths/~1status-pages~1{id}/put
func (c *Client) UpdateStatusPage(input *UpdateStatusPageInput) (*UpdateStatusPageOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.StatusPageID == nil {
return nil, errors.New("status page id is required")
}
if input.StatusPage == nil {
return nil, errors.New("status page input is required")
}
url := fmt.Sprintf("%s/%d", apiRoutes.statusPages, *input.StatusPageID)
resp, err := c.httpClient.R().SetBody(input.StatusPage).Put(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
statusPage := &StatusPage{}
err = json.Unmarshal(resp.Body(), statusPage)
if err != nil {
return nil, err
}
return &UpdateStatusPageOutput{StatusPage: statusPage}, nil
}
// AddStatusPageSubscriberInput represents the input of a AddStatusPageSubscriber operation.
type AddStatusPageSubscriberInput struct {
_ struct{}
StatusPageID *int64
Subscriber *Subscriber
}
// AddStatusPageSubscriberOutput represents the output of a AddStatusPageSubscriber operation.
type AddStatusPageSubscriberOutput struct {
_ struct{}
}
// AddStatusPageSubscriber adds a new subscriber to a status page. https://api.ilert.com/api-docs/#tag/Status-Pages/paths/~1status-pages~1{id}~1private-subscribers/post
func (c *Client) AddStatusPageSubscriber(input *AddStatusPageSubscribersInput) (*AddStatusPageSubscribersOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.StatusPageID == nil {
return nil, errors.New("status page id is required")
}
if input.Subscribers == nil {
return nil, errors.New("subscriber input is required")
}
url := fmt.Sprintf("%s/%d/private-subscribers", apiRoutes.statusPages, *input.StatusPageID)
resp, err := c.httpClient.R().SetBody(input.Subscribers).Post(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 202); apiErr != nil {
return nil, apiErr
}
subscriber := make([]*Subscriber, 0)
err = json.Unmarshal(resp.Body(), &subscriber)
if err != nil {
return nil, err
}
return &AddStatusPageSubscribersOutput{}, nil
}
// AddStatusPageSubscribersInput represents the input of a AddStatusPageSubscribers operation.
type AddStatusPageSubscribersInput struct {
_ struct{}
StatusPageID *int64
Subscribers *[]Subscriber
}
// AddStatusPageSubscribersOutput represents the output of a AddStatusPageSubscribers operation.
type AddStatusPageSubscribersOutput struct {
_ struct{}
}
// AddStatusPageSubscribers adds a new subscriber to an status page. https://api.ilert.com/api-docs/#tag/Status-Pages/paths/~1status-pages~1{id}~1private-subscribers/post
func (c *Client) AddStatusPageSubscribers(input *AddStatusPageSubscribersInput) (*AddStatusPageSubscribersOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.StatusPageID == nil {
return nil, errors.New("status page id is required")
}
if input.Subscribers == nil {
return nil, errors.New("subscriber input is required")
}
url := fmt.Sprintf("%s/%d/private-subscribers", apiRoutes.statusPages, *input.StatusPageID)
resp, err := c.httpClient.R().SetBody(input.Subscribers).Put(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 202); apiErr != nil {
return nil, apiErr
}
subscribers := make([]*Subscriber, 0)
err = json.Unmarshal(resp.Body(), &subscribers)
if err != nil {
return nil, err
}
return &AddStatusPageSubscribersOutput{}, nil
}
// DeleteStatusPageInput represents the input of a DeleteStatusPage operation.
type DeleteStatusPageInput struct {
_ struct{}
StatusPageID *int64
}
// DeleteStatusPageOutput represents the output of a DeleteStatusPage operation.
type DeleteStatusPageOutput struct {
_ struct{}
}
// DeleteStatusPage deletes the specified status page. https://api.ilert.com/api-docs/#tag/Status-Pages/paths/~1status-pages~1{id}/delete
func (c *Client) DeleteStatusPage(input *DeleteStatusPageInput) (*DeleteStatusPageOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.StatusPageID == nil {
return nil, errors.New("status page id is required")
}
url := fmt.Sprintf("%s/%d", apiRoutes.statusPages, *input.StatusPageID)
resp, err := c.httpClient.R().Delete(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 204); apiErr != nil {
return nil, apiErr
}
return &DeleteStatusPageOutput{}, nil
}
// DeleteStatusPageSubscriberInput represents the input of a DeleteStatusPageSubscriber operation.
type DeleteStatusPageSubscriberInput struct {
_ struct{}
StatusPageID *int64
Subscriber *Subscriber
}
// DeleteStatusPageSubscriberOutput represents the output of a DeleteStatusPageSubscriber operation.
type DeleteStatusPageSubscriberOutput struct {
_ struct{}
}
// DeleteStatusPageSubscriber deletes a subscriber of the specified status page. https://api.ilert.com/api-docs/#tag/Status-Pages/paths/~1status-pages~1{id}/delete
func (c *Client) DeleteStatusSubscriberPage(input *DeleteStatusPageSubscriberInput) (*DeleteStatusPageSubscriberOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.StatusPageID == nil {
return nil, errors.New("status page id is required")
}
if input.Subscriber == nil {
return nil, errors.New("subscriber is required")
}
url := fmt.Sprintf("%s/%d/private-subscribers", apiRoutes.statusPages, *input.StatusPageID)
resp, err := c.httpClient.R().Delete(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 202); apiErr != nil {
return nil, apiErr
}
return &DeleteStatusPageSubscriberOutput{}, nil
}