-
Notifications
You must be signed in to change notification settings - Fork 70
/
helper.go
293 lines (241 loc) · 10.6 KB
/
helper.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
package iam
import (
"context"
"errors"
"fmt"
"net/http"
"net/url"
"strconv"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v9/pkg/edgegriderr"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v9/pkg/session"
validation "github.com/go-ozzo/ozzo-validation/v4"
)
type (
// ListAllowedCPCodesRequest contains the request parameters for the ListAllowedCPCodes endpoint.
ListAllowedCPCodesRequest struct {
UserName string
Body ListAllowedCPCodesRequestBody
}
// ListAllowedAPIsRequest contains the request parameters for the ListAllowedAPIs endpoint.
ListAllowedAPIsRequest struct {
UserName string
ClientType ClientType
AllowAccountSwitch bool
}
// ListAccessibleGroupsRequest contains the request parameter for the ListAccessibleGroups endpoint.
ListAccessibleGroupsRequest struct {
UserName string
}
// ListAllowedCPCodesRequestBody contains the filtering parameters for the ListAllowedCPCodes endpoint.
ListAllowedCPCodesRequestBody struct {
ClientType ClientType `json:"clientType"`
Groups []AllowedCPCodesGroup `json:"groups"`
}
// AllowedCPCodesGroup contains the group parameters for the ListAllowedCPCodes endpoint.
AllowedCPCodesGroup struct {
GroupID int64 `json:"groupId,omitempty"`
RoleID int64 `json:"roleId,omitempty"`
GroupName string `json:"groupName,omitempty"`
IsBlocked bool `json:"isBlocked,omitempty"`
ParentGroupID int64 `json:"parentGroupId,omitempty"`
RoleDescription string `json:"roleDescription,omitempty"`
RoleName string `json:"roleName,omitempty"`
SubGroups []AllowedCPCodesGroup `json:"subGroups,omitempty"`
}
// ListAllowedCPCodesResponse contains response for the ListAllowedCPCodes endpoint.
ListAllowedCPCodesResponse []ListAllowedCPCodesResponseItem
// ListAllowedCPCodesResponseItem contains single item of the response from the ListAllowedCPCodes endpoint.
ListAllowedCPCodesResponseItem struct {
Name string `json:"name"`
Value int `json:"value"`
}
// ListAuthorizedUsersResponse contains the response from the ListAuthorizedUsers endpoint.
ListAuthorizedUsersResponse []AuthorizedUser
// AuthorizedUser contains the details about the authorized user.
AuthorizedUser struct {
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
Username string `json:"username"`
Email string `json:"email"`
UIIdentityID string `json:"uiIdentityId"`
}
// ListAccessibleGroupsResponse contains the response from the ListAccessibleGroups endpoint.
ListAccessibleGroupsResponse []AccessibleGroup
// AccessibleGroup contains the details about accessible group.
AccessibleGroup struct {
GroupID int64 `json:"groupId"`
RoleID int64 `json:"roleId"`
GroupName string `json:"groupName"`
RoleName string `json:"roleName"`
IsBlocked bool `json:"isBlocked"`
RoleDescription string `json:"roleDescription"`
SubGroups []AccessibleSubGroup `json:"subGroups"`
}
// AccessibleSubGroup contains the details about subgroup.
AccessibleSubGroup struct {
GroupID int64 `json:"groupId"`
GroupName string `json:"groupName"`
ParentGroupID int64 `json:"parentGroupId"`
SubGroups []AccessibleSubGroup `json:"subGroups"`
}
// ListAllowedAPIsResponse contains the response from the ListAllowedAPIs endpoint.
ListAllowedAPIsResponse []AllowedAPI
// AllowedAPI contains the details about the API.
AllowedAPI struct {
AccessLevels []AccessLevel `json:"accessLevels"`
APIID int64 `json:"apiId"`
APIName string `json:"apiName"`
Description string `json:"description"`
DocumentationURL string `json:"documentationUrl"`
Endpoint string `json:"endpoint"`
HasAccess bool `json:"hasAccess"`
ServiceProviderID int64 `json:"serviceProviderId"`
}
// ClientType represents the type of the client.
ClientType string
)
const (
// UserClientType is the `USER_CLIENT` client type.
UserClientType ClientType = "USER_CLIENT"
// ServiceAccountClientType is the `SERVICE_ACCOUNT` client type.
ServiceAccountClientType ClientType = "SERVICE_ACCOUNT"
// ClientClientType is the `CLIENT` client type.
ClientClientType ClientType = "CLIENT"
)
var (
// ErrListAllowedCPCodes is returned when ListAllowedCPCodes fails.
ErrListAllowedCPCodes = errors.New("list allowed CP codes")
// ErrListAuthorizedUsers is returned when ListAuthorizedUsers fails.
ErrListAuthorizedUsers = errors.New("list authorized users")
// ErrListAllowedAPIs is returned when ListAllowedAPIs fails.
ErrListAllowedAPIs = errors.New("list allowed APIs")
// ErrAccessibleGroups is returned when ListAccessibleGroups fails.
ErrAccessibleGroups = errors.New("list accessible groups")
)
// Validate validates ClientType.
func (c ClientType) Validate() error {
return validation.In(ClientClientType, ServiceAccountClientType, UserClientType).
Error(fmt.Sprintf("value '%s' is invalid. Must be one of: '%s', '%s' or '%s'",
c, ClientClientType, ServiceAccountClientType, UserClientType)).
Validate(c)
}
// Validate validates ListAllowedCPCodesRequest.
func (r ListAllowedCPCodesRequest) Validate() error {
return edgegriderr.ParseValidationErrors(validation.Errors{
"UserName": validation.Validate(r.UserName, validation.Required),
"Body": validation.Validate(r.Body, validation.Required),
})
}
// Validate validates ListAllowedCPCodesRequestBody.
func (r ListAllowedCPCodesRequestBody) Validate() error {
return validation.Errors{
"ClientType": validation.Validate(r.ClientType, validation.Required, validation.In(ClientClientType, UserClientType, ServiceAccountClientType).Error(fmt.Sprintf("value '%s' is invalid. Must be one of: 'CLIENT' or 'USER_CLIENT' or 'SERVICE_ACCOUNT'", r.ClientType))),
"Groups": validation.Validate(r.Groups, validation.Required.When(r.ClientType == ServiceAccountClientType)),
}.Filter()
}
// Validate validates ListAllowedAPIsRequest.
func (r ListAllowedAPIsRequest) Validate() error {
return edgegriderr.ParseValidationErrors(validation.Errors{
"UserName": validation.Validate(r.UserName, validation.Required),
"ClientType": validation.Validate(r.ClientType, validation.In(ClientClientType, UserClientType, ServiceAccountClientType).Error(fmt.Sprintf("value '%s' is invalid. Must be one of: 'CLIENT' or 'USER_CLIENT' or 'SERVICE_ACCOUNT'", r.ClientType))),
})
}
// Validate validates ListAccessibleGroupsRequest.
func (r ListAccessibleGroupsRequest) Validate() error {
return edgegriderr.ParseValidationErrors(validation.Errors{
"UserName": validation.Validate(r.UserName, validation.Required),
})
}
func (i *iam) ListAllowedCPCodes(ctx context.Context, params ListAllowedCPCodesRequest) (ListAllowedCPCodesResponse, error) {
logger := i.Log(ctx)
logger.Debug("ListAllowedCPCodes")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%s: %w:\n%s", ErrListAllowedCPCodes, ErrStructValidation, err)
}
uri := fmt.Sprintf("/identity-management/v3/users/%s/allowed-cpcodes", params.UserName)
req, err := http.NewRequestWithContext(ctx, http.MethodPost, uri, nil)
if err != nil {
return nil, fmt.Errorf("%w: failed to create request: %s", ErrListAllowedCPCodes, err)
}
var result ListAllowedCPCodesResponse
resp, err := i.Exec(req, &result, params.Body)
if err != nil {
return nil, fmt.Errorf("%w: request failed: %s", ErrListAllowedCPCodes, err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, fmt.Errorf("%s: %w", ErrListAllowedCPCodes, i.Error(resp))
}
return result, nil
}
func (i *iam) ListAuthorizedUsers(ctx context.Context) (ListAuthorizedUsersResponse, error) {
logger := i.Log(ctx)
logger.Debug("ListAuthorizedUsers")
req, err := http.NewRequestWithContext(ctx, http.MethodGet, "/identity-management/v3/users", nil)
if err != nil {
return nil, fmt.Errorf("%w: failed to create request: %s", ErrListAuthorizedUsers, err)
}
var result ListAuthorizedUsersResponse
resp, err := i.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("%w: request failed: %s", ErrListAuthorizedUsers, err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, fmt.Errorf("%s: %w", ErrListAuthorizedUsers, i.Error(resp))
}
return result, nil
}
func (i *iam) ListAllowedAPIs(ctx context.Context, params ListAllowedAPIsRequest) (ListAllowedAPIsResponse, error) {
logger := i.Log(ctx)
logger.Debug("ListAllowedAPIs")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%s: %w:\n%s", ErrListAllowedAPIs, ErrStructValidation, err)
}
uri, err := url.Parse(fmt.Sprintf("/identity-management/v3/users/%s/allowed-apis", params.UserName))
if err != nil {
return nil, fmt.Errorf("%w: failed to create request: %s", ErrListAllowedAPIs, err)
}
q := uri.Query()
if params.ClientType != "" {
q.Add("clientType", string(params.ClientType))
}
q.Add("allowAccountSwitch", strconv.FormatBool(params.AllowAccountSwitch))
uri.RawQuery = q.Encode()
req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri.String(), nil)
if err != nil {
return nil, fmt.Errorf("%w: failed to create request: %s", ErrListAllowedAPIs, err)
}
var result ListAllowedAPIsResponse
resp, err := i.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("%w: request failed: %s", ErrListAllowedAPIs, err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, fmt.Errorf("%s: %w", ErrListAllowedAPIs, i.Error(resp))
}
return result, nil
}
func (i *iam) ListAccessibleGroups(ctx context.Context, params ListAccessibleGroupsRequest) (ListAccessibleGroupsResponse, error) {
logger := i.Log(ctx)
logger.Debug("ListAccessibleGroups")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%s: %w:\n%s", ErrAccessibleGroups, ErrStructValidation, err)
}
uri := fmt.Sprintf("/identity-management/v3/users/%s/group-access", params.UserName)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, fmt.Errorf("%w: failed to create request: %s", ErrAccessibleGroups, err)
}
var result ListAccessibleGroupsResponse
resp, err := i.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("%w: request failed: %s", ErrAccessibleGroups, err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, fmt.Errorf("%s: %w", ErrAccessibleGroups, i.Error(resp))
}
return result, nil
}