forked from cloudflare/cloudflare-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.go
629 lines (519 loc) · 18.1 KB
/
list.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
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
package cloudflare
import (
"context"
"errors"
"fmt"
"net/http"
"time"
"github.com/goccy/go-json"
)
const (
// ListTypeIP specifies a list containing IP addresses.
ListTypeIP = "ip"
// ListTypeRedirect specifies a list containing redirects.
ListTypeRedirect = "redirect"
// ListTypeHostname specifies a list containing hostnames.
ListTypeHostname = "hostname"
// ListTypeHostname specifies a list containing autonomous system numbers (ASNs).
ListTypeASN = "asn"
)
// ListBulkOperation contains information about a Bulk Operation.
type ListBulkOperation struct {
ID string `json:"id"`
Status string `json:"status"`
Error string `json:"error"`
Completed *time.Time `json:"completed"`
}
// List contains information about a List.
type List struct {
ID string `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Kind string `json:"kind"`
NumItems int `json:"num_items"`
NumReferencingFilters int `json:"num_referencing_filters"`
CreatedOn *time.Time `json:"created_on"`
ModifiedOn *time.Time `json:"modified_on"`
}
// Redirect represents a redirect item in a List.
type Redirect struct {
SourceUrl string `json:"source_url"`
IncludeSubdomains *bool `json:"include_subdomains,omitempty"`
TargetUrl string `json:"target_url"`
StatusCode *int `json:"status_code,omitempty"`
PreserveQueryString *bool `json:"preserve_query_string,omitempty"`
SubpathMatching *bool `json:"subpath_matching,omitempty"`
PreservePathSuffix *bool `json:"preserve_path_suffix,omitempty"`
}
type Hostname struct {
UrlHostname string `json:"url_hostname"`
}
// ListItem contains information about a single List Item.
type ListItem struct {
ID string `json:"id"`
IP *string `json:"ip,omitempty"`
Redirect *Redirect `json:"redirect,omitempty"`
Hostname *Hostname `json:"hostname,omitempty"`
ASN *uint32 `json:"asn,omitempty"`
Comment string `json:"comment"`
CreatedOn *time.Time `json:"created_on"`
ModifiedOn *time.Time `json:"modified_on"`
}
// ListCreateRequest contains data for a new List.
type ListCreateRequest struct {
Name string `json:"name"`
Description string `json:"description"`
Kind string `json:"kind"`
}
// ListItemCreateRequest contains data for a new List Item.
type ListItemCreateRequest struct {
IP *string `json:"ip,omitempty"`
Redirect *Redirect `json:"redirect,omitempty"`
Hostname *Hostname `json:"hostname,omitempty"`
ASN *uint32 `json:"asn,omitempty"`
Comment string `json:"comment"`
}
// ListItemDeleteRequest wraps List Items that shall be deleted.
type ListItemDeleteRequest struct {
Items []ListItemDeleteItemRequest `json:"items"`
}
// ListItemDeleteItemRequest contains single List Items that shall be deleted.
type ListItemDeleteItemRequest struct {
ID string `json:"id"`
}
// ListUpdateRequest contains data for a List update.
type ListUpdateRequest struct {
Description string `json:"description"`
}
// ListResponse contains a single List.
type ListResponse struct {
Response
Result List `json:"result"`
}
// ListItemCreateResponse contains information about the creation of a List Item.
type ListItemCreateResponse struct {
Response
Result struct {
OperationID string `json:"operation_id"`
} `json:"result"`
}
// ListListResponse contains a slice of Lists.
type ListListResponse struct {
Response
Result []List `json:"result"`
}
// ListBulkOperationResponse contains information about a Bulk Operation.
type ListBulkOperationResponse struct {
Response
Result ListBulkOperation `json:"result"`
}
// ListDeleteResponse contains information about the deletion of a List.
type ListDeleteResponse struct {
Response
Result struct {
ID string `json:"id"`
} `json:"result"`
}
// ListItemsListResponse contains information about List Items.
type ListItemsListResponse struct {
Response
ResultInfo `json:"result_info"`
Result []ListItem `json:"result"`
}
// ListItemDeleteResponse contains information about the deletion of a List Item.
type ListItemDeleteResponse struct {
Response
Result struct {
OperationID string `json:"operation_id"`
} `json:"result"`
}
// ListItemsGetResponse contains information about a single List Item.
type ListItemsGetResponse struct {
Response
Result ListItem `json:"result"`
}
type ListListsParams struct {
}
type ListCreateParams struct {
Name string
Description string
Kind string
}
type ListGetParams struct {
ID string
}
type ListUpdateParams struct {
ID string
Description string
}
type ListDeleteParams struct {
ID string
}
type ListListItemsParams struct {
ID string `url:"-"`
Search string `url:"search,omitempty"`
PerPage int `url:"per_page,omitempty"`
Cursor string `url:"cursor,omitempty"`
}
type ListCreateItemsParams struct {
ID string
Items []ListItemCreateRequest
}
type ListCreateItemParams struct {
ID string
Item ListItemCreateRequest
}
type ListReplaceItemsParams struct {
ID string
Items []ListItemCreateRequest
}
type ListDeleteItemsParams struct {
ID string
Items ListItemDeleteRequest
}
type ListGetItemParams struct {
ListID string
ID string
}
type ListGetBulkOperationParams struct {
ID string
}
// ListLists lists all Lists.
//
// API reference: https://api.cloudflare.com/#rules-lists-list-lists
func (api *API) ListLists(ctx context.Context, rc *ResourceContainer, params ListListsParams) ([]List, error) {
if rc.Identifier == "" {
return []List{}, ErrMissingAccountID
}
uri := fmt.Sprintf("/accounts/%s/rules/lists", rc.Identifier)
res, err := api.makeRequestContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return []List{}, err
}
result := ListListResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return []List{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
return result.Result, nil
}
// CreateList creates a new List.
//
// API reference: https://api.cloudflare.com/#rules-lists-create-list
func (api *API) CreateList(ctx context.Context, rc *ResourceContainer, params ListCreateParams) (List, error) {
if rc.Identifier == "" {
return List{}, ErrMissingAccountID
}
uri := fmt.Sprintf("/accounts/%s/rules/lists", rc.Identifier)
res, err := api.makeRequestContext(ctx, http.MethodPost, uri, ListCreateRequest{Name: params.Name, Description: params.Description, Kind: params.Kind})
if err != nil {
return List{}, err
}
result := ListResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return List{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
return result.Result, nil
}
// GetList returns a single List.
//
// API reference: https://api.cloudflare.com/#rules-lists-get-list
func (api *API) GetList(ctx context.Context, rc *ResourceContainer, listID string) (List, error) {
if rc.Identifier == "" {
return List{}, ErrMissingAccountID
}
if listID == "" {
return List{}, ErrMissingListID
}
uri := fmt.Sprintf("/accounts/%s/rules/lists/%s", rc.Identifier, listID)
res, err := api.makeRequestContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return List{}, err
}
result := ListResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return List{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
return result.Result, nil
}
// UpdateList updates the description of an existing List.
//
// API reference: https://api.cloudflare.com/#rules-lists-update-list
func (api *API) UpdateList(ctx context.Context, rc *ResourceContainer, params ListUpdateParams) (List, error) {
if rc.Identifier == "" {
return List{}, ErrMissingAccountID
}
if params.ID == "" {
return List{}, ErrMissingListID
}
uri := fmt.Sprintf("/accounts/%s/rules/lists/%s", rc.Identifier, params.ID)
res, err := api.makeRequestContext(ctx, http.MethodPut, uri, ListUpdateRequest{Description: params.Description})
if err != nil {
return List{}, err
}
result := ListResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return List{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
return result.Result, nil
}
// DeleteList deletes a List.
//
// API reference: https://api.cloudflare.com/#rules-lists-delete-list
func (api *API) DeleteList(ctx context.Context, rc *ResourceContainer, listID string) (ListDeleteResponse, error) {
if rc.Identifier == "" {
return ListDeleteResponse{}, ErrMissingAccountID
}
if listID == "" {
return ListDeleteResponse{}, ErrMissingListID
}
uri := fmt.Sprintf("/accounts/%s/rules/lists/%s", rc.Identifier, listID)
res, err := api.makeRequestContext(ctx, http.MethodDelete, uri, nil)
if err != nil {
return ListDeleteResponse{}, err
}
result := ListDeleteResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return ListDeleteResponse{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
return result, nil
}
// ListListItems returns a list with all items in a List.
//
// API reference: https://api.cloudflare.com/#rules-lists-list-list-items
func (api *API) ListListItems(ctx context.Context, rc *ResourceContainer, params ListListItemsParams) ([]ListItem, error) {
var list []ListItem
for {
uri := buildURI(fmt.Sprintf("/accounts/%s/rules/lists/%s/items", rc.Identifier, params.ID), params)
res, err := api.makeRequestContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return []ListItem{}, err
}
result := ListItemsListResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return []ListItem{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
list = append(list, result.Result...)
if cursor := result.ResultInfo.Cursors.After; cursor == "" {
break
} else {
params.Cursor = cursor
}
}
return list, nil
}
// CreateListItemAsync creates a new List Item asynchronously. Users have to poll the operation status by
// using the operation_id returned by this function.
//
// API reference: https://api.cloudflare.com/#rules-lists-create-list-items
func (api *API) CreateListItemAsync(ctx context.Context, rc *ResourceContainer, params ListCreateItemParams) (ListItemCreateResponse, error) {
if rc.Identifier == "" {
return ListItemCreateResponse{}, ErrMissingAccountID
}
if params.ID == "" {
return ListItemCreateResponse{}, ErrMissingListID
}
uri := fmt.Sprintf("/accounts/%s/rules/lists/%s/items", rc.Identifier, params.ID)
res, err := api.makeRequestContext(ctx, http.MethodPost, uri, []ListItemCreateRequest{params.Item})
if err != nil {
return ListItemCreateResponse{}, err
}
result := ListItemCreateResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return ListItemCreateResponse{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
return result, nil
}
// CreateListItem creates a new List Item synchronously and returns the current set of List Items.
func (api *API) CreateListItem(ctx context.Context, rc *ResourceContainer, params ListCreateItemParams) ([]ListItem, error) {
result, err := api.CreateListItemAsync(ctx, rc, params)
if err != nil {
return []ListItem{}, err
}
err = api.pollListBulkOperation(ctx, rc, result.Result.OperationID)
if err != nil {
return []ListItem{}, err
}
return api.ListListItems(ctx, rc, ListListItemsParams{ID: params.ID})
}
// CreateListItemsAsync bulk creates multiple List Items asynchronously. Users
// have to poll the operation status by using the operation_id returned by this
// function.
//
// API reference: https://api.cloudflare.com/#rules-lists-create-list-items
func (api *API) CreateListItemsAsync(ctx context.Context, rc *ResourceContainer, params ListCreateItemsParams) (ListItemCreateResponse, error) {
if rc.Identifier == "" {
return ListItemCreateResponse{}, ErrMissingAccountID
}
if params.ID == "" {
return ListItemCreateResponse{}, ErrMissingListID
}
uri := fmt.Sprintf("/accounts/%s/rules/lists/%s/items", rc.Identifier, params.ID)
res, err := api.makeRequestContext(ctx, http.MethodPost, uri, params.Items)
if err != nil {
return ListItemCreateResponse{}, err
}
result := ListItemCreateResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return ListItemCreateResponse{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
return result, nil
}
// CreateListItems bulk creates multiple List Items synchronously and returns
// the current set of List Items.
func (api *API) CreateListItems(ctx context.Context, rc *ResourceContainer, params ListCreateItemsParams) ([]ListItem, error) {
result, err := api.CreateListItemsAsync(ctx, rc, params)
if err != nil {
return []ListItem{}, err
}
err = api.pollListBulkOperation(ctx, rc, result.Result.OperationID)
if err != nil {
return []ListItem{}, err
}
return api.ListListItems(ctx, rc, ListListItemsParams{ID: params.ID})
}
// ReplaceListItemsAsync replaces all List Items asynchronously. Users have to
// poll the operation status by using the operation_id returned by this
// function.
//
// API reference: https://api.cloudflare.com/#rules-lists-replace-list-items
func (api *API) ReplaceListItemsAsync(ctx context.Context, rc *ResourceContainer, params ListReplaceItemsParams) (ListItemCreateResponse, error) {
if rc.Identifier == "" {
return ListItemCreateResponse{}, ErrMissingAccountID
}
if params.ID == "" {
return ListItemCreateResponse{}, ErrMissingListID
}
uri := fmt.Sprintf("/accounts/%s/rules/lists/%s/items", rc.Identifier, params.ID)
res, err := api.makeRequestContext(ctx, http.MethodPut, uri, params.Items)
if err != nil {
return ListItemCreateResponse{}, err
}
result := ListItemCreateResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return ListItemCreateResponse{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
return result, nil
}
// ReplaceListItems replaces all List Items synchronously and returns the
// current set of List Items.
func (api *API) ReplaceListItems(ctx context.Context, rc *ResourceContainer, params ListReplaceItemsParams) (
[]ListItem, error) {
result, err := api.ReplaceListItemsAsync(ctx, rc, params)
if err != nil {
return []ListItem{}, err
}
err = api.pollListBulkOperation(ctx, rc, result.Result.OperationID)
if err != nil {
return []ListItem{}, err
}
return api.ListListItems(ctx, rc, ListListItemsParams{ID: params.ID})
}
// DeleteListItemsAsync removes specific Items of a List by their ID
// asynchronously. Users have to poll the operation status by using the
// operation_id returned by this function.
//
// API reference: https://api.cloudflare.com/#rules-lists-delete-list-items
func (api *API) DeleteListItemsAsync(ctx context.Context, rc *ResourceContainer, params ListDeleteItemsParams) (ListItemDeleteResponse, error) {
if rc.Identifier == "" {
return ListItemDeleteResponse{}, ErrMissingAccountID
}
if params.ID == "" {
return ListItemDeleteResponse{}, ErrMissingListID
}
uri := fmt.Sprintf("/accounts/%s/rules/lists/%s/items", rc.Identifier, params.ID)
res, err := api.makeRequestContext(ctx, http.MethodDelete, uri, params.Items)
if err != nil {
return ListItemDeleteResponse{}, err
}
result := ListItemDeleteResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return ListItemDeleteResponse{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
return result, nil
}
// DeleteListItems removes specific Items of a List by their ID synchronously
// and returns the current set of List Items.
func (api *API) DeleteListItems(ctx context.Context, rc *ResourceContainer, params ListDeleteItemsParams) ([]ListItem, error) {
result, err := api.DeleteListItemsAsync(ctx, rc, params)
if err != nil {
return []ListItem{}, err
}
err = api.pollListBulkOperation(ctx, rc, result.Result.OperationID)
if err != nil {
return []ListItem{}, err
}
return api.ListListItems(ctx, AccountIdentifier(rc.Identifier), ListListItemsParams{ID: params.ID})
}
// GetListItem returns a single List Item.
//
// API reference: https://api.cloudflare.com/#rules-lists-get-list-item
func (api *API) GetListItem(ctx context.Context, rc *ResourceContainer, listID, itemID string) (ListItem, error) {
if rc.Identifier == "" {
return ListItem{}, ErrMissingAccountID
}
if listID == "" {
return ListItem{}, ErrMissingListID
}
if itemID == "" {
return ListItem{}, ErrMissingResourceIdentifier
}
uri := fmt.Sprintf("/accounts/%s/rules/lists/%s/items/%s", rc.Identifier, listID, itemID)
res, err := api.makeRequestContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return ListItem{}, err
}
result := ListItemsGetResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return ListItem{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
return result.Result, nil
}
// GetListBulkOperation returns the status of a bulk operation.
//
// API reference: https://api.cloudflare.com/#rules-lists-get-bulk-operation
func (api *API) GetListBulkOperation(ctx context.Context, rc *ResourceContainer, ID string) (ListBulkOperation, error) {
if rc.Identifier == "" {
return ListBulkOperation{}, ErrMissingAccountID
}
if ID == "" {
return ListBulkOperation{}, ErrMissingResourceIdentifier
}
uri := fmt.Sprintf("/accounts/%s/rules/lists/bulk_operations/%s", rc.Identifier, ID)
res, err := api.makeRequestContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return ListBulkOperation{}, err
}
result := ListBulkOperationResponse{}
if err := json.Unmarshal(res, &result); err != nil {
return ListBulkOperation{}, fmt.Errorf("%s: %w", errUnmarshalError, err)
}
return result.Result, nil
}
// pollListBulkOperation implements synchronous behaviour for some asynchronous
// endpoints. bulk-operation status can be either pending, running, failed or
// completed.
func (api *API) pollListBulkOperation(ctx context.Context, rc *ResourceContainer, ID string) error {
for i := uint8(0); i < 16; i++ {
sleepDuration := 1 << (i / 2) * time.Second
select {
case <-time.After(sleepDuration):
case <-ctx.Done():
return fmt.Errorf("operation aborted during backoff: %w", ctx.Err())
}
bulkResult, err := api.GetListBulkOperation(ctx, rc, ID)
if err != nil {
return err
}
switch bulkResult.Status {
case "failed":
return errors.New(bulkResult.Error)
case "pending", "running":
continue
case "completed":
return nil
default:
return fmt.Errorf("%s: %s", errOperationUnexpectedStatus, bulkResult.Status)
}
}
return errors.New(errOperationStillRunning)
}