-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathmatch_target.go
469 lines (407 loc) · 16.7 KB
/
match_target.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
package appsec
import (
"context"
"encoding/json"
"fmt"
"net/http"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v10/pkg/session"
validation "github.com/go-ozzo/ozzo-validation/v4"
)
type (
// The MatchTarget interface supports creating, retrieving, updating and removing match targets.
MatchTarget interface {
// GetMatchTargets returns match targets defined in the specified security configuration version.
//
// See: https://techdocs.akamai.com/application-security/reference/get-match-targets
GetMatchTargets(ctx context.Context, params GetMatchTargetsRequest) (*GetMatchTargetsResponse, error)
// GetMatchTarget returns the specified match target.
//
// See: https://techdocs.akamai.com/application-security/reference/get-match-target
GetMatchTarget(ctx context.Context, params GetMatchTargetRequest) (*GetMatchTargetResponse, error)
// CreateMatchTarget creates a new match target in the specified configuration version.
//
// See: https://techdocs.akamai.com/application-security/reference/post-match-targets
CreateMatchTarget(ctx context.Context, params CreateMatchTargetRequest) (*CreateMatchTargetResponse, error)
// UpdateMatchTarget updates details about the specified match target.
//
// See: https://techdocs.akamai.com/application-security/reference/put-match-target
UpdateMatchTarget(ctx context.Context, params UpdateMatchTargetRequest) (*UpdateMatchTargetResponse, error)
// RemoveMatchTarget deletes the specified match target.
//
// See: https://techdocs.akamai.com/application-security/reference/delete-match-target
RemoveMatchTarget(ctx context.Context, params RemoveMatchTargetRequest) (*RemoveMatchTargetResponse, error)
}
// GetMatchTargetsRequest is used to retrieve the match targets for a configuration.
GetMatchTargetsRequest struct {
ConfigID int `json:"configId"`
ConfigVersion int `json:"configVersion"`
TargetID int `json:"targetId"`
}
// GetMatchTargetsResponse is returned from a call to GetMatchTargets.
GetMatchTargetsResponse struct {
MatchTargets struct {
APITargets []struct {
Type string `json:"type,omitempty"`
Apis []struct {
ID int `json:"id"`
Name string `json:"name"`
} `json:"apis"`
Sequence int `json:"sequence"`
TargetID int `json:"targetId"`
ConfigID int `json:"configId,omitempty"`
ConfigVersion int `json:"configVersion,omitempty"`
SecurityPolicy struct {
PolicyID string `json:"policyId,omitempty"`
} `json:"securityPolicy,omitempty"`
BypassNetworkLists []struct {
Name string `json:"name,omitempty"`
ID string `json:"id,omitempty"`
} `json:"bypassNetworkLists,omitempty"`
} `json:"apiTargets,omitempty"`
WebsiteTargets []struct {
ConfigID int `json:"configId,omitempty"`
ConfigVersion int `json:"configVersion,omitempty"`
DefaultFile string `json:"defaultFile,omitempty"`
IsNegativeFileExtensionMatch bool `json:"isNegativeFileExtensionMatch,omitempty"`
IsNegativePathMatch *json.RawMessage `json:"isNegativePathMatch,omitempty"`
Sequence int `json:"-"`
TargetID int `json:"targetId,omitempty"`
Type string `json:"type,omitempty"`
FileExtensions []string `json:"fileExtensions,omitempty"`
FilePaths []string `json:"filePaths,omitempty"`
Hostnames []string `json:"hostnames,omitempty"`
SecurityPolicy struct {
PolicyID string `json:"policyId,omitempty"`
} `json:"securityPolicy,omitempty"`
BypassNetworkLists []struct {
Name string `json:"name,omitempty"`
ID string `json:"id,omitempty"`
} `json:"bypassNetworkLists,omitempty"`
} `json:"websiteTargets,omitempty"`
} `json:"matchTargets,omitempty"`
}
// GetMatchTargetRequest is used to retrieve a match target.
GetMatchTargetRequest struct {
ConfigID int `json:"configId"`
ConfigVersion int `json:"configVersion"`
TargetID int `json:"targetId"`
}
// GetMatchTargetResponse is returned from a call to GetMatchTarget.
GetMatchTargetResponse struct {
Type string `json:"type,omitempty"`
Apis []struct {
ID int `json:"id"`
Name string `json:"name"`
} `json:"apis,omitempty"`
DefaultFile string `json:"defaultFile,omitempty"`
Hostnames []string `json:"hostnames,omitempty"`
IsNegativeFileExtensionMatch bool `json:"isNegativeFileExtensionMatch,omitempty"`
IsNegativePathMatch *json.RawMessage `json:"isNegativePathMatch,omitempty"`
FilePaths []string `json:"filePaths,omitempty"`
FileExtensions []string `json:"fileExtensions,omitempty"`
SecurityPolicy struct {
PolicyID string `json:"policyId,omitempty"`
} `json:"securityPolicy,omitempty"`
Sequence int `json:"-"`
TargetID int `json:"targetId"`
BypassNetworkLists []struct {
Name string `json:"name,omitempty"`
ID string `json:"id,omitempty"`
} `json:"bypassNetworkLists,omitempty"`
}
// CreateMatchTargetRequest is used to create a match target.
CreateMatchTargetRequest struct {
Type string `json:"type"`
ConfigID int `json:"configId"`
ConfigVersion int `json:"configVersion"`
JsonPayloadRaw json.RawMessage `json:"-"`
}
// CreateMatchTargetResponse is returned from a call to CreateMatchTarget.
CreateMatchTargetResponse struct {
MType string `json:"type"`
Apis []struct {
ID int `json:"id"`
Name string `json:"name"`
} `json:"apis,omitempty"`
DefaultFile string `json:"defaultFile"`
Hostnames []string `json:"hostnames"`
IsNegativeFileExtensionMatch bool `json:"isNegativeFileExtensionMatch"`
IsNegativePathMatch *json.RawMessage `json:"isNegativePathMatch,omitempty"`
FilePaths []string `json:"filePaths"`
FileExtensions []string `json:"fileExtensions"`
SecurityPolicy struct {
PolicyID string `json:"policyId"`
} `json:"securityPolicy"`
Sequence int `json:"-"`
TargetID int `json:"targetId"`
BypassNetworkLists []struct {
Name string `json:"name"`
ID string `json:"id"`
} `json:"bypassNetworkLists"`
}
// UpdateMatchTargetRequest is used to modify an existing match target.
UpdateMatchTargetRequest struct {
ConfigID int `json:"configId"`
ConfigVersion int `json:"configVersion"`
JsonPayloadRaw json.RawMessage `json:"-"`
TargetID int `json:"targetId"`
}
// UpdateMatchTargetResponse is returned from a call to UpdateMatchTarget.
UpdateMatchTargetResponse struct {
Type string `json:"type"`
ConfigID int `json:"configId"`
ConfigVersion int `json:"configVersion"`
DefaultFile string `json:"defaultFile"`
Hostnames []string `json:"hostnames"`
IsNegativeFileExtensionMatch bool `json:"isNegativeFileExtensionMatch"`
IsNegativePathMatch *json.RawMessage `json:"isNegativePathMatch,omitempty"`
FilePaths []string `json:"filePaths"`
FileExtensions []string `json:"fileExtensions"`
SecurityPolicy struct {
PolicyID string `json:"policyId"`
} `json:"securityPolicy"`
Sequence int `json:"-"`
TargetID int `json:"targetId"`
BypassNetworkLists []struct {
Name string `json:"name"`
ID string `json:"id"`
} `json:"bypassNetworkLists"`
}
// RemoveMatchTargetRequest is used to remove a match target.
RemoveMatchTargetRequest struct {
ConfigID int `json:"configId"`
ConfigVersion int `json:"configVersion"`
TargetID int `json:"targetId"`
}
// RemoveMatchTargetResponse is returned from a call to RemoveMatchTarget.
RemoveMatchTargetResponse struct {
Type string `json:"type"`
ConfigID int `json:"configId"`
ConfigVersion int `json:"configVersion"`
DefaultFile string `json:"defaultFile"`
Hostnames []string `json:"hostnames"`
IsNegativeFileExtensionMatch bool `json:"isNegativeFileExtensionMatch"`
IsNegativePathMatch bool `json:"isNegativePathMatch"`
FilePaths []string `json:"filePaths"`
FileExtensions []string `json:"fileExtensions"`
SecurityPolicy struct {
PolicyID string `json:"policyId"`
} `json:"securityPolicy"`
Sequence int `json:"sequence"`
TargetID int `json:"targetId"`
BypassNetworkLists []struct {
Name string `json:"name"`
ID string `json:"id"`
} `json:"bypassNetworkLists"`
}
// BypassNetworkList describes a network list used in the bypass network lists for the specified configuration.
BypassNetworkList struct {
Name string `json:"name"`
ID string `json:"id"`
}
// Hostnames contains one or more hostnames.
Hostnames struct {
Hostnames string `json:"hostnames"`
}
// AutoGenerated is currently unused.
AutoGenerated struct {
Type string `json:"type"`
Apis []struct {
ID int `json:"id"`
Name string `json:"name"`
} `json:"apis"`
BypassNetworkLists []struct {
ID string `json:"id"`
Name string `json:"name"`
} `json:"bypassNetworkLists"`
ConfigID int `json:"configId"`
ConfigVersion int `json:"configVersion"`
SecurityPolicy struct {
PolicyID string `json:"policyId"`
} `json:"securityPolicy"`
Sequence int `json:"-"`
TargetID int `json:"targetId"`
}
)
// Validate validates a GetMatchTargetRequest.
func (v GetMatchTargetRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"ConfigVersion": validation.Validate(v.ConfigVersion, validation.Required),
"TargetID": validation.Validate(v.TargetID, validation.Required),
}.Filter()
}
// Validate validates a GetMatchTargetsRequest.
func (v GetMatchTargetsRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"ConfigVersion": validation.Validate(v.ConfigVersion, validation.Required),
}.Filter()
}
// Validate validates a CreateMatchTargetRequest.
func (v CreateMatchTargetRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"ConfigVersion": validation.Validate(v.ConfigVersion, validation.Required),
}.Filter()
}
// Validate validates an UpdateMatchTargetRequest.
func (v UpdateMatchTargetRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"ConfigVersion": validation.Validate(v.ConfigVersion, validation.Required),
"TargetID": validation.Validate(v.TargetID, validation.Required),
}.Filter()
}
// Validate validates a RemoveMatchTargetRequest.
func (v RemoveMatchTargetRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"ConfigVersion": validation.Validate(v.ConfigVersion, validation.Required),
"TargetID": validation.Validate(v.TargetID, validation.Required),
}.Filter()
}
func (p *appsec) GetMatchTarget(ctx context.Context, params GetMatchTargetRequest) (*GetMatchTargetResponse, error) {
logger := p.Log(ctx)
logger.Debug("GetMatchTarget")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
uri := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/match-targets/%d?includeChildObjectName=true",
params.ConfigID,
params.ConfigVersion,
params.TargetID,
)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create GetMatchTarget request: %w", err)
}
var result GetMatchTargetResponse
resp, err := p.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("get match target request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, p.Error(resp)
}
return &result, nil
}
func (p *appsec) GetMatchTargets(ctx context.Context, params GetMatchTargetsRequest) (*GetMatchTargetsResponse, error) {
logger := p.Log(ctx)
logger.Debug("GetMatchTargets")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
uri := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/match-targets",
params.ConfigID,
params.ConfigVersion,
)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create GetMatchTargets request: %w", err)
}
var result GetMatchTargetsResponse
resp, err := p.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("get match targets request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, p.Error(resp)
}
if params.TargetID != 0 {
var filteredResult GetMatchTargetsResponse
for _, val := range result.MatchTargets.WebsiteTargets {
if val.TargetID == params.TargetID {
filteredResult.MatchTargets.WebsiteTargets = append(filteredResult.MatchTargets.WebsiteTargets, val)
}
}
for _, val := range result.MatchTargets.APITargets {
if val.TargetID == params.TargetID {
filteredResult.MatchTargets.APITargets = append(filteredResult.MatchTargets.APITargets, val)
}
}
return &filteredResult, nil
}
return &result, nil
}
func (p *appsec) UpdateMatchTarget(ctx context.Context, params UpdateMatchTargetRequest) (*UpdateMatchTargetResponse, error) {
logger := p.Log(ctx)
logger.Debug("UpdateMatchTarget")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
uri := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/match-targets/%d",
params.ConfigID,
params.ConfigVersion,
params.TargetID,
)
req, err := http.NewRequestWithContext(ctx, http.MethodPut, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create UpdateMatchTarget request: %w", err)
}
var result UpdateMatchTargetResponse
req.Header.Set("Content-Type", "application/json")
resp, err := p.Exec(req, &result, params.JsonPayloadRaw)
if err != nil {
return nil, fmt.Errorf("update match target request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusCreated {
return nil, p.Error(resp)
}
return &result, nil
}
func (p *appsec) CreateMatchTarget(ctx context.Context, params CreateMatchTargetRequest) (*CreateMatchTargetResponse, error) {
logger := p.Log(ctx)
logger.Debug("CreateMatchTarget")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
uri := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/match-targets",
params.ConfigID,
params.ConfigVersion,
)
req, err := http.NewRequestWithContext(ctx, http.MethodPost, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create CreateMatchTarget request: %w", err)
}
var result CreateMatchTargetResponse
req.Header.Set("Content-Type", "application/json")
resp, err := p.Exec(req, &result, params.JsonPayloadRaw)
if err != nil {
return nil, fmt.Errorf("create match target request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusCreated && resp.StatusCode != http.StatusOK {
return nil, p.Error(resp)
}
return &result, nil
}
func (p *appsec) RemoveMatchTarget(ctx context.Context, params RemoveMatchTargetRequest) (*RemoveMatchTargetResponse, error) {
logger := p.Log(ctx)
logger.Debug("RemoveMatchTarget")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
uri := fmt.Sprintf("/appsec/v1/configs/%d/versions/%d/match-targets/%d", params.ConfigID, params.ConfigVersion, params.TargetID)
req, err := http.NewRequestWithContext(ctx, http.MethodDelete, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create RemoveMatchTarget request: %w", err)
}
var result RemoveMatchTargetResponse
resp, err := p.Exec(req, nil)
if err != nil {
return nil, fmt.Errorf("remove match target request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusNoContent && resp.StatusCode != http.StatusOK {
return nil, p.Error(resp)
}
return &result, nil
}