-
Notifications
You must be signed in to change notification settings - Fork 1
/
schedule.go
561 lines (472 loc) · 15.5 KB
/
schedule.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
package ilert
import (
"encoding/json"
"errors"
"fmt"
"net/url"
"strconv"
)
// Schedule definition https://api.ilert.com/api-docs/#tag/Schedules
type Schedule struct {
ID int64 `json:"id"`
Name string `json:"name"`
Timezone string `json:"timezone"`
Type string `json:"type"`
StartsOn string `json:"startsOn,omitempty"` // Date time string in ISO format, @deprecated
ScheduleLayers []ScheduleLayer `json:"scheduleLayers,omitempty"`
Shifts []Shift `json:"shifts,omitempty"`
ShowGaps bool `json:"showGaps,omitempty"`
DefaultShiftDuration string `json:"defaultShiftDuration,omitempty"` // for ex. P7D (7 Days) or PT8H (8 Hours)
CurrentShift *Shift `json:"currentShift,omitempty"`
NextShift *Shift `json:"nextShift,omitempty"`
Teams []TeamShort `json:"teams,omitempty"`
}
// Shift definition
type Shift struct {
User User `json:"user"`
Start string `json:"start"` // Date time string in ISO format
End string `json:"end"` // Date time string in ISO format
}
// Schedule layer definition
type ScheduleLayer struct {
Name string `json:"name"`
StartsOn string `json:"startsOn"` // Date time string in ISO format
EndsOn string `json:"endsOn,omitempty"` // Date time string in ISO format
Users []User `json:"users"`
Rotation string `json:"rotation"` // P7D
RestrictionType string `json:"restrictionType,omitempty"`
Restrictions []LayerRestriction `json:"restrictions,omitempty"`
}
type LayerRestriction struct {
From *TimeOfWeek `json:"from"`
To *TimeOfWeek `json:"to"`
}
type TimeOfWeek struct {
DayOfWeek string `json:"dayOfWeek"`
Time string `json:"time"` // Time string in format <15:00>
}
var ScheduleType = struct {
Static string
Recurring string
}{
Static: "STATIC",
Recurring: "RECURRING",
}
var ScheduleTypeAll = []string{
ScheduleType.Static,
ScheduleType.Recurring,
}
var RestrictionType = struct {
TimeOfWeek string
TimeOfDay string
}{
TimeOfWeek: "TIME_OF_WEEK",
TimeOfDay: "TIME_OF_DAY",
}
var RestrictionTypeAll = []string{
RestrictionType.TimeOfDay,
RestrictionType.TimeOfWeek,
}
var DayOfWeek = struct {
Monday string
Tuesday string
Wednesday string
Thursday string
Friday string
Saturday string
Sunday string
}{
Monday: "MONDAY",
Tuesday: "TUESDAY",
Wednesday: "WEDNESDAY",
Thursday: "THURSDAY",
Friday: "FRIDAY",
Saturday: "SATURDAY",
Sunday: "SUNDAY",
}
var DayOfWeekAll = []string{
DayOfWeek.Monday,
DayOfWeek.Tuesday,
DayOfWeek.Wednesday,
DayOfWeek.Thursday,
DayOfWeek.Friday,
DayOfWeek.Saturday,
DayOfWeek.Sunday,
}
// CreateScheduleInput represents the input of a CreateSchedule operation.
type CreateScheduleInput struct {
_ struct{}
Schedule *Schedule
AbortOnGaps *bool
}
// CreateScheduleOutput represents the output of a CreateSchedule operation.
type CreateScheduleOutput struct {
_ struct{}
Schedule *Schedule
}
// CreateSchedule creates a new schedule. https://api.ilert.com/api-docs/#tag/Schedules/paths/~1schedules/post
func (c *Client) CreateSchedule(input *CreateScheduleInput) (*CreateScheduleOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.Schedule == nil {
return nil, errors.New("schedule input is required")
}
if input.Schedule.Type == ScheduleType.Static && input.Schedule.Shifts == nil {
return nil, errors.New("shifts must be declared on static schedule")
}
if input.Schedule.Type == ScheduleType.Recurring && input.Schedule.ScheduleLayers == nil {
return nil, errors.New("schedule layers must be declared on recurring schedule")
}
q := url.Values{}
if input.AbortOnGaps != nil {
q.Add("abort-on-gaps", strconv.FormatBool(*input.AbortOnGaps))
}
resp, err := c.httpClient.R().SetBody(input.Schedule).Post(fmt.Sprintf("%s?%s", apiRoutes.schedules, q.Encode()))
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 201); apiErr != nil {
return nil, apiErr
}
schedule := &Schedule{}
err = json.Unmarshal(resp.Body(), schedule)
if err != nil {
return nil, err
}
return &CreateScheduleOutput{Schedule: schedule}, nil
}
// GetScheduleInput represents the input of a GetSchedule operation.
type GetScheduleInput struct {
_ struct{}
ScheduleID *int64
// describes optional properties that should be included in the response
Include []*string
}
// GetScheduleOutput represents the output of a GetSchedule operation.
type GetScheduleOutput struct {
_ struct{}
Schedule *Schedule
}
// GetSchedule gets the on-call schedule with the specified id. https://api.ilert.com/api-docs/#tag/Schedules/paths/~1schedules~1{id}/get
func (c *Client) GetSchedule(input *GetScheduleInput) (*GetScheduleOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.ScheduleID == nil {
return nil, errors.New("Schedule id is required")
}
q := url.Values{}
for _, include := range input.Include {
q.Add("include", *include)
}
resp, err := c.httpClient.R().Get(fmt.Sprintf("%s/%d?%s", apiRoutes.schedules, *input.ScheduleID, q.Encode()))
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
schedule := &Schedule{}
err = json.Unmarshal(resp.Body(), schedule)
if err != nil {
return nil, err
}
return &GetScheduleOutput{Schedule: schedule}, nil
}
// GetSchedulesInput represents the input of a GetSchedules operation.
type GetSchedulesInput 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: 20, Maximum: 20
MaxResults *int
// describes optional properties that should be included in the response
Include []*string
}
// GetSchedulesOutput represents the output of a GetSchedules operation.
type GetSchedulesOutput struct {
_ struct{}
Schedules []*Schedule
}
// GetSchedules lists existing on-call schedules. https://api.ilert.com/api-docs/#tag/Schedules/paths/~1schedules/get
func (c *Client) GetSchedules(input *GetSchedulesInput) (*GetSchedulesOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
q := url.Values{}
if input.StartIndex != nil {
q.Add("start-index", strconv.Itoa(*input.StartIndex))
}
if input.MaxResults != nil {
q.Add("max-results", strconv.Itoa(*input.MaxResults))
}
for _, include := range input.Include {
q.Add("include", *include)
}
resp, err := c.httpClient.R().Get(fmt.Sprintf("%s?%s", apiRoutes.schedules, q.Encode()))
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
schedules := make([]*Schedule, 0)
err = json.Unmarshal(resp.Body(), &schedules)
if err != nil {
return nil, err
}
return &GetSchedulesOutput{Schedules: schedules}, nil
}
// GetScheduleShiftsInput represents the input of a GetScheduleShifts operation.
type GetScheduleShiftsInput struct {
_ struct{}
ScheduleID *int64
From *string // Date time string in ISO format
Until *string // Date time string in ISO format
ExcludeOverrides *bool
}
// GetScheduleShiftsOutput represents the output of a GetScheduleShifts operation.
type GetScheduleShiftsOutput struct {
_ struct{}
Shifts []*Shift
}
// GetScheduleShifts lists shifts for the specified schedule and date range. https://api.ilert.com/api-docs/#tag/Schedules/paths/~1schedules~1{id}~1shifts/get
func (c *Client) GetScheduleShifts(input *GetScheduleShiftsInput) (*GetScheduleShiftsOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.ScheduleID == nil {
return nil, errors.New("schedule id is required")
}
q := url.Values{}
if input.From != nil {
q.Add("from", *input.From)
}
if input.Until != nil {
q.Add("until", *input.Until)
}
if input.ExcludeOverrides != nil {
q.Add("exclude-overrides", strconv.FormatBool(*input.ExcludeOverrides))
}
resp, err := c.httpClient.R().Get(fmt.Sprintf("%s/%d/shifts?%s", apiRoutes.schedules, *input.ScheduleID, q.Encode()))
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
shifts := make([]*Shift, 0)
err = json.Unmarshal(resp.Body(), &shifts)
if err != nil {
return nil, err
}
return &GetScheduleShiftsOutput{Shifts: shifts}, nil
}
// GetScheduleOverridesInput represents the input of a GetScheduleOverrides operation.
type GetScheduleOverridesInput struct {
_ struct{}
ScheduleID *int64
}
// GetScheduleOverridesOutput represents the output of a GetScheduleOverrides operation.
type GetScheduleOverridesOutput struct {
_ struct{}
Overrides []*Shift
}
// GetScheduleOverrides lists overrides for the specified schedule. https://api.ilert.com/api-docs/#tag/Schedules/paths/~1schedules~1{id}~1overrides/get
func (c *Client) GetScheduleOverrides(input *GetScheduleOverridesInput) (*GetScheduleOverridesOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.ScheduleID == nil {
return nil, errors.New("schedule id is required")
}
resp, err := c.httpClient.R().Get(fmt.Sprintf("%s/%d/overrides", apiRoutes.schedules, *input.ScheduleID))
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
overrides := make([]*Shift, 0)
err = json.Unmarshal(resp.Body(), &overrides)
if err != nil {
return nil, err
}
return &GetScheduleOverridesOutput{Overrides: overrides}, nil
}
// GetScheduleUserOnCallInput represents the input of a GetScheduleUserOnCall operation.
type GetScheduleUserOnCallInput struct {
_ struct{}
ScheduleID *int64
}
// GetScheduleUserOnCallOutput represents the output of a GetScheduleUserOnCall operation.
type GetScheduleUserOnCallOutput struct {
_ struct{}
Shift *Shift
}
// GetScheduleUserOnCall gets the current user on call for specified schedule. https://api.ilert.com/api-docs/#tag/Schedules/paths/~1schedules~1{id}~1user-on-call/get
func (c *Client) GetScheduleUserOnCall(input *GetScheduleUserOnCallInput) (*GetScheduleUserOnCallOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.ScheduleID == nil {
return nil, errors.New("schedule id is required")
}
resp, err := c.httpClient.R().Get(fmt.Sprintf("%s/%d/user-on-call", apiRoutes.schedules, *input.ScheduleID))
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200, 204); apiErr != nil {
return nil, apiErr
}
if resp.StatusCode() == 204 {
return &GetScheduleUserOnCallOutput{}, nil
}
shift := &Shift{}
err = json.Unmarshal(resp.Body(), shift)
if err != nil {
return nil, err
}
return &GetScheduleUserOnCallOutput{Shift: shift}, nil
}
// SearchScheduleInput represents the input of a SearchSchedule operation.
type SearchScheduleInput struct {
_ struct{}
ScheduleName *string
}
// SearchScheduleOutput represents the output of a SearchSchedule operation.
type SearchScheduleOutput struct {
_ struct{}
Schedule *Schedule
}
// SearchSchedule gets the schedule with specified name.
func (c *Client) SearchSchedule(input *SearchScheduleInput) (*SearchScheduleOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.ScheduleName == nil {
return nil, errors.New("schedule name is required")
}
resp, err := c.httpClient.R().Get(fmt.Sprintf("%s/name/%s", apiRoutes.schedules, *input.ScheduleName))
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
schedule := &Schedule{}
err = json.Unmarshal(resp.Body(), schedule)
if err != nil {
return nil, err
}
return &SearchScheduleOutput{Schedule: schedule}, nil
}
// UpdateScheduleInput represents the input of a UpdateSchedule operation.
type UpdateScheduleInput struct {
_ struct{}
ScheduleID *int64
Schedule *Schedule
AbortOnGaps *bool
}
// UpdateScheduleOutput represents the output of a UpdateSchedule operation.
type UpdateScheduleOutput struct {
_ struct{}
Schedule *Schedule
}
// UpdateSchedule updates the specific schedule. https://api.ilert.com/api-docs/#tag/Schedules/paths/~1schedules~1{id}/put
func (c *Client) UpdateSchedule(input *UpdateScheduleInput) (*UpdateScheduleOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.ScheduleID == nil {
return nil, errors.New("schedule id is required")
}
if input.Schedule == nil {
return nil, errors.New("schedule input is required")
}
q := url.Values{}
if input.AbortOnGaps != nil {
q.Add("abort-on-gaps", strconv.FormatBool(*input.AbortOnGaps))
}
url := fmt.Sprintf("%s/%d?%s", apiRoutes.schedules, *input.ScheduleID, q.Encode())
resp, err := c.httpClient.R().SetBody(input.Schedule).Put(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
schedule := &Schedule{}
err = json.Unmarshal(resp.Body(), schedule)
if err != nil {
return nil, err
}
return &UpdateScheduleOutput{Schedule: schedule}, nil
}
// AddScheduleShiftOverrideInput represents the input of a AddScheduleShiftOverride operation.
type AddScheduleShiftOverrideInput struct {
_ struct{}
ScheduleID *int64
Shift *Shift
}
// AddScheduleShiftOverrideOutput represents the output of a AddScheduleShiftOverride operation.
type AddScheduleShiftOverrideOutput struct {
_ struct{}
Schedule *Schedule
}
// AddScheduleShiftOverride adds an override to a shift on the schedule. https://api.ilert.com/api-docs/#tag/Schedules/paths/~1schedules~1{id}~1overrides/put
func (c *Client) AddScheduleShiftOverride(input *AddScheduleShiftOverrideInput) (*AddScheduleShiftOverrideOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.ScheduleID == nil {
return nil, errors.New("schedule id is required")
}
if input.Shift == nil {
return nil, errors.New("shift input is required")
}
url := fmt.Sprintf("%s/%d/overrides", apiRoutes.schedules, *input.ScheduleID)
resp, err := c.httpClient.R().SetBody(input.Shift).Post(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
schedule := &Schedule{}
err = json.Unmarshal(resp.Body(), schedule)
if err != nil {
return nil, err
}
return &AddScheduleShiftOverrideOutput{Schedule: schedule}, nil
}
// DeleteScheduleInput represents the input of a DeleteSchedule operation.
type DeleteScheduleInput struct {
_ struct{}
ScheduleID *int64
}
// DeleteScheduleOutput represents the output of a DeleteSchedule operation.
type DeleteScheduleOutput struct {
_ struct{}
}
// DeleteSchedule deletes the specified schedule. https://api.ilert.com/api-docs/#tag/Schedules/paths/~1schedules~1{id}/delete
func (c *Client) DeleteSchedule(input *DeleteScheduleInput) (*DeleteScheduleOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.ScheduleID == nil {
return nil, errors.New("schedule id is required")
}
url := fmt.Sprintf("%s/%d", apiRoutes.schedules, *input.ScheduleID)
resp, err := c.httpClient.R().Delete(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 204); apiErr != nil {
return nil, apiErr
}
return &DeleteScheduleOutput{}, nil
}