-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathadvanced_settings_evasive_path_match.go
201 lines (171 loc) · 7.38 KB
/
advanced_settings_evasive_path_match.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
package appsec
import (
"context"
"fmt"
"net/http"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v9/pkg/session"
validation "github.com/go-ozzo/ozzo-validation/v4"
)
type (
// The AdvancedSettingsEvasivePathMatch interface supports retrieving or modifying the Evasive Path Match setting.
AdvancedSettingsEvasivePathMatch interface {
// GetAdvancedSettingsEvasivePathMatch retrieves the Evasive Path Match setting.
//
// See: https://techdocs.akamai.com/application-security/reference/get-evasive-path-match-per-config
GetAdvancedSettingsEvasivePathMatch(ctx context.Context, params GetAdvancedSettingsEvasivePathMatchRequest) (*GetAdvancedSettingsEvasivePathMatchResponse, error)
// UpdateAdvancedSettingsEvasivePathMatch modifies the Evasive Path Match setting.
//
// See: https://techdocs.akamai.com/application-security/reference/put-evasive-path-match-per-config
UpdateAdvancedSettingsEvasivePathMatch(ctx context.Context, params UpdateAdvancedSettingsEvasivePathMatchRequest) (*UpdateAdvancedSettingsEvasivePathMatchResponse, error)
// RemoveAdvancedSettingsEvasivePathMatch removes the Evasive Path Match setting.
//
// Deprecated: this method will be removed in a future release. Use UpdateAdvancedSettingsEvasivePathMatch instead.
RemoveAdvancedSettingsEvasivePathMatch(ctx context.Context, params RemoveAdvancedSettingsEvasivePathMatchRequest) (*RemoveAdvancedSettingsEvasivePathMatchResponse, error)
}
// GetAdvancedSettingsEvasivePathMatchRequest is used to retrieve the EvasivePathMatch setting
GetAdvancedSettingsEvasivePathMatchRequest struct {
ConfigID int `json:"-"`
Version int `json:"-"`
PolicyID string `json:"-"`
}
// GetAdvancedSettingsEvasivePathMatchResponse returns the EvasivePathMatch setting
GetAdvancedSettingsEvasivePathMatchResponse struct {
EnablePathMatch bool `json:"enablePathMatch"`
}
// UpdateAdvancedSettingsEvasivePathMatchRequest is used to update the EvasivePathMatch setting
UpdateAdvancedSettingsEvasivePathMatchRequest struct {
ConfigID int `json:"-"`
Version int `json:"-"`
PolicyID string `json:"-"`
EnablePathMatch bool `json:"enablePathMatch"`
}
// UpdateAdvancedSettingsEvasivePathMatchResponse returns the result of updating the EvasivePathMatch setting
UpdateAdvancedSettingsEvasivePathMatchResponse struct {
EnablePathMatch bool `json:"enablePathMatch"`
}
// RemoveAdvancedSettingsEvasivePathMatchRequest is used to clear the EvasivePathMatch setting
RemoveAdvancedSettingsEvasivePathMatchRequest struct {
ConfigID int `json:"-"`
Version int `json:"-"`
PolicyID string `json:"-"`
EnablePathMatch bool `json:"enablePathMatch"`
}
// RemoveAdvancedSettingsEvasivePathMatchResponse returns the result of clearing the EvasivePathMatch setting
RemoveAdvancedSettingsEvasivePathMatchResponse struct {
ConfigID int `json:"-"`
Version int `json:"-"`
PolicyID string `json:"-"`
EnablePathMatch bool `json:"enablePathMatch"`
}
)
// Validate validates GetAdvancedSettingssEvasivePathMatchRequest
func (v GetAdvancedSettingsEvasivePathMatchRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
}.Filter()
}
// Validate validates UpdateAdvancedSettingsEvasivePathMatchRequest
func (v UpdateAdvancedSettingsEvasivePathMatchRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
}.Filter()
}
// Validate validates UpdateAdvancedSettingsEvasivePathMatchRequest
func (v RemoveAdvancedSettingsEvasivePathMatchRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
}.Filter()
}
func (p *appsec) GetAdvancedSettingsEvasivePathMatch(ctx context.Context, params GetAdvancedSettingsEvasivePathMatchRequest) (*GetAdvancedSettingsEvasivePathMatchResponse, error) {
logger := p.Log(ctx)
logger.Debug("GetAdvancedSettingsEvasivePathMatch")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
var uri string
if params.PolicyID != "" {
uri = fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/security-policies/%s/advanced-settings/evasive-path-match",
params.ConfigID,
params.Version,
params.PolicyID)
} else {
uri = fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/advanced-settings/evasive-path-match",
params.ConfigID,
params.Version)
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create GetAdvancedSettingsEvasivePathMatch request: %w", err)
}
var result GetAdvancedSettingsEvasivePathMatchResponse
resp, err := p.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("get advanced settings evasive path match request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, p.Error(resp)
}
return &result, nil
}
func (p *appsec) UpdateAdvancedSettingsEvasivePathMatch(ctx context.Context, params UpdateAdvancedSettingsEvasivePathMatchRequest) (*UpdateAdvancedSettingsEvasivePathMatchResponse, error) {
logger := p.Log(ctx)
logger.Debug("UpdateAdvancedSettingsEvasivePathMatch")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
var uri string
if params.PolicyID != "" {
uri = fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/security-policies/%s/advanced-settings/evasive-path-match",
params.ConfigID,
params.Version,
params.PolicyID)
} else {
uri = fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/advanced-settings/evasive-path-match",
params.ConfigID,
params.Version)
}
req, err := http.NewRequestWithContext(ctx, http.MethodPut, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create UpdateAdvancedSettingsEvasivePathMatch request: %w", err)
}
req.Header.Set("Content-Type", "application/json")
var result UpdateAdvancedSettingsEvasivePathMatchResponse
resp, err := p.Exec(req, &result, params)
if err != nil {
return nil, fmt.Errorf("update advanced settings evasive path match 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) RemoveAdvancedSettingsEvasivePathMatch(ctx context.Context, params RemoveAdvancedSettingsEvasivePathMatchRequest) (*RemoveAdvancedSettingsEvasivePathMatchResponse, error) {
logger := p.Log(ctx)
logger.Debug("RemoveAdvancedSettingsEvasivePathMatch")
request := UpdateAdvancedSettingsEvasivePathMatchRequest{
ConfigID: params.ConfigID,
Version: params.Version,
PolicyID: params.PolicyID,
EnablePathMatch: false,
}
_, err := p.UpdateAdvancedSettingsEvasivePathMatch(ctx, request)
if err != nil {
return nil, fmt.Errorf("remove advanced settings evasive path match request failed: %w", err)
}
response := RemoveAdvancedSettingsEvasivePathMatchResponse{
ConfigID: params.ConfigID,
Version: params.Version,
PolicyID: params.PolicyID,
EnablePathMatch: false,
}
return &response, nil
}