forked from cloudflare/cloudflare-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
access_group.go
214 lines (180 loc) · 5.84 KB
/
access_group.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
package cloudflare
import (
"encoding/json"
"fmt"
"net/url"
"strconv"
"time"
"github.com/pkg/errors"
)
// AccessGroup defines a group for allowing or disallowing access to
// one or more Access applications.
type AccessGroup struct {
ID string `json:"id,omitempty"`
CreatedAt *time.Time `json:"created_at"`
UpdatedAt *time.Time `json:"updated_at"`
Name string `json:"name"`
// The include group works like an OR logical operator. The user must
// satisfy one of the rules.
Include []interface{} `json:"include"`
// The exclude group works like a NOT logical operator. The user must
// not satisfy all of the rules in exclude.
Exclude []interface{} `json:"exclude"`
// The require group works like a AND logical operator. The user must
// satisfy all of the rules in require.
Require []interface{} `json:"require"`
}
// AccessGroupEmail is used for managing access based on the email.
// For example, restrict access to users with the email addresses
// `[email protected]` or `[email protected]`.
type AccessGroupEmail struct {
Email struct {
Email string `json:"email"`
} `json:"email"`
}
// AccessGroupEmailDomain is used for managing access based on an email
// domain domain such as `example.com` instead of individual addresses.
type AccessGroupEmailDomain struct {
EmailDomain struct {
Domain string `json:"domain"`
} `json:"email_domain"`
}
// AccessGroupIP is used for managing access based in the IP. It
// accepts individual IPs or CIDRs.
type AccessGroupIP struct {
IP struct {
IP string `json:"ip"`
} `json:"ip"`
}
// AccessGroupEveryone is used for managing access to everyone.
type AccessGroupEveryone struct {
Everyone struct{} `json:"everyone"`
}
// AccessGroupAccessGroup is used for managing access based on an
// access group.
type AccessGroupAccessGroup struct {
Group struct {
ID string `json:"id"`
} `json:"group"`
}
// AccessGroupListResponse represents the response from the list
// access group endpoint.
type AccessGroupListResponse struct {
Result []AccessGroup `json:"result"`
Response
ResultInfo `json:"result_info"`
}
// AccessGroupDetailResponse is the API response, containing a single
// access group.
type AccessGroupDetailResponse struct {
Success bool `json:"success"`
Errors []string `json:"errors"`
Messages []string `json:"messages"`
Result AccessGroup `json:"result"`
}
// AccessGroups returns all access groups for an access application.
//
// API reference: https://api.cloudflare.com/#access-groups-list-access-groups
func (api *API) AccessGroups(accountID string, pageOpts PaginationOptions) ([]AccessGroup, ResultInfo, error) {
v := url.Values{}
if pageOpts.PerPage > 0 {
v.Set("per_page", strconv.Itoa(pageOpts.PerPage))
}
if pageOpts.Page > 0 {
v.Set("page", strconv.Itoa(pageOpts.Page))
}
uri := fmt.Sprintf(
"/accounts/%s/access/groups",
accountID,
)
if len(v) > 0 {
uri = uri + "?" + v.Encode()
}
res, err := api.makeRequest("GET", uri, nil)
if err != nil {
return []AccessGroup{}, ResultInfo{}, errors.Wrap(err, errMakeRequestError)
}
var accessGroupListResponse AccessGroupListResponse
err = json.Unmarshal(res, &accessGroupListResponse)
if err != nil {
return []AccessGroup{}, ResultInfo{}, errors.Wrap(err, errUnmarshalError)
}
return accessGroupListResponse.Result, accessGroupListResponse.ResultInfo, nil
}
// AccessGroup returns a single group based on the group ID.
//
// API reference: https://api.cloudflare.com/#access-groups-access-group-details
func (api *API) AccessGroup(accountID, groupID string) (AccessGroup, error) {
uri := fmt.Sprintf(
"/accounts/%s/access/groups/%s",
accountID,
groupID,
)
res, err := api.makeRequest("GET", uri, nil)
if err != nil {
return AccessGroup{}, errors.Wrap(err, errMakeRequestError)
}
var accessGroupDetailResponse AccessGroupDetailResponse
err = json.Unmarshal(res, &accessGroupDetailResponse)
if err != nil {
return AccessGroup{}, errors.Wrap(err, errUnmarshalError)
}
return accessGroupDetailResponse.Result, nil
}
// CreateAccessGroup creates a new access group.
//
// API reference: https://api.cloudflare.com/#access-groups-create-access-group
func (api *API) CreateAccessGroup(accountID string, accessGroup AccessGroup) (AccessGroup, error) {
uri := fmt.Sprintf(
"/accounts/%s/access/groups",
accountID,
)
res, err := api.makeRequest("POST", uri, accessGroup)
if err != nil {
return AccessGroup{}, errors.Wrap(err, errMakeRequestError)
}
var accessGroupDetailResponse AccessGroupDetailResponse
err = json.Unmarshal(res, &accessGroupDetailResponse)
if err != nil {
return AccessGroup{}, errors.Wrap(err, errUnmarshalError)
}
return accessGroupDetailResponse.Result, nil
}
// UpdateAccessGroup updates an existing access group.
//
// API reference: https://api.cloudflare.com/#access-groups-update-access-group
func (api *API) UpdateAccessGroup(accountID string, accessGroup AccessGroup) (AccessGroup, error) {
if accessGroup.ID == "" {
return AccessGroup{}, errors.Errorf("access group ID cannot be empty")
}
uri := fmt.Sprintf(
"/accounts/%s/access/groups/%s",
accountID,
accessGroup.ID,
)
res, err := api.makeRequest("PUT", uri, accessGroup)
if err != nil {
return AccessGroup{}, errors.Wrap(err, errMakeRequestError)
}
var accessGroupDetailResponse AccessGroupDetailResponse
err = json.Unmarshal(res, &accessGroupDetailResponse)
if err != nil {
return AccessGroup{}, errors.Wrap(err, errUnmarshalError)
}
return accessGroupDetailResponse.Result, nil
}
// DeleteAccessGroup deletes an access group.
//
// API reference: https://api.cloudflare.com/#access-groups-delete-access-group
func (api *API) DeleteAccessGroup(accountID, groupID string) error {
uri := fmt.Sprintf(
"/accounts/%s/access/groups/%s",
accountID,
groupID,
)
_, err := api.makeRequest("DELETE", uri, nil)
if err != nil {
return errors.Wrap(err, errMakeRequestError)
}
return nil
}