-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy patheval.go
282 lines (236 loc) · 8.43 KB
/
eval.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
package appsec
import (
"context"
"fmt"
"net/http"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v10/pkg/session"
validation "github.com/go-ozzo/ozzo-validation/v4"
)
type (
// The Eval interface supports retrieving and updating the way evaluation rules would respond if
// they were applied to live traffic.
Eval interface {
// GetEvals returns which modes your rules are currently set to.
//
// See: https://techdocs.akamai.com/application-security/reference/get-policy-mode-1
GetEvals(ctx context.Context, params GetEvalsRequest) (*GetEvalsResponse, error)
// GetEval returns which mode your rules are currently set to.
//
// See: https://techdocs.akamai.com/application-security/reference/get-policy-mode-1
GetEval(ctx context.Context, params GetEvalRequest) (*GetEvalResponse, error)
// UpdateEval updated the rule evaluation mode.
//
// See: https://techdocs.akamai.com/application-security/reference/post-policy-eval
UpdateEval(ctx context.Context, params UpdateEvalRequest) (*UpdateEvalResponse, error)
// RemoveEval removes the rule evaluation mode.
//
// See: https://techdocs.akamai.com/application-security/reference/post-policy-eval
RemoveEval(ctx context.Context, params RemoveEvalRequest) (*RemoveEvalResponse, error)
}
// GetEvalsRequest is used to retrieve the mode setting that conveys how rules will be kept up to date.
// Deprecated: this struct will be removed in a future release.
GetEvalsRequest struct {
ConfigID int `json:"-"`
Version int `json:"-"`
PolicyID string `json:"-"`
Current string `json:"current"`
Mode string `json:"mode"`
Eval string `json:"eval"`
}
// GetEvalsResponse is returned from a call to GetEvalsResponse.
// Deprecated: this struct will be removed in a future release.
GetEvalsResponse struct {
Current string `json:"current,omitempty"`
Mode string `json:"mode,omitempty"`
Eval string `json:"eval,omitempty"`
Evaluating string `json:"evaluating,omitempty"`
Expires string `json:"expires,omitempty"`
}
// GetEvalRequest is used to retrieve the mode setting that conveys how rules will be kept up to date.
GetEvalRequest struct {
ConfigID int `json:"-"`
Version int `json:"-"`
PolicyID string `json:"-"`
Current string `json:"current"`
Mode string `json:"mode"`
Eval string `json:"eval"`
}
// GetEvalResponse is returned from a call to GetEvalResponse.
GetEvalResponse struct {
Current string `json:"current,omitempty"`
Mode string `json:"mode,omitempty"`
Eval string `json:"eval,omitempty"`
Evaluating string `json:"evaluating,omitempty"`
Expires string `json:"expires,omitempty"`
}
// RemoveEvalRequest is used to remove an evaluation mode setting.
RemoveEvalRequest struct {
ConfigID int `json:"-"`
Version int `json:"-"`
PolicyID string `json:"-"`
Current string `json:"-"`
Mode string `json:"-"`
Eval string `json:"eval"`
}
// RemoveEvalResponse is returned from a call to RemoveEval.
RemoveEvalResponse struct {
Current string `json:"current"`
Eval string `json:"eval"`
Mode string `json:"mode"`
}
// UpdateEvalRequest is used to modify an evaluation mode setting.
UpdateEvalRequest struct {
ConfigID int `json:"-"`
Version int `json:"-"`
PolicyID string `json:"-"`
Current string `json:"-"`
Mode string `json:"-"`
Eval string `json:"eval"`
}
// UpdateEvalResponse is returned from a call to UpdateEval.
UpdateEvalResponse struct {
Current string `json:"current"`
Eval string `json:"eval"`
Mode string `json:"mode"`
}
)
// Validate validates a GetEvalRequest.
func (v GetEvalRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
"PolicyID": validation.Validate(v.PolicyID, validation.Required),
}.Filter()
}
// Validate validates a GetEvalsRequest.
// Deprecated: this method will be removed in a future release.
func (v GetEvalsRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
"PolicyID": validation.Validate(v.PolicyID, validation.Required),
}.Filter()
}
// Validate validates an UpdateEvalRequest.
func (v UpdateEvalRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
"PolicyID": validation.Validate(v.PolicyID, validation.Required),
}.Filter()
}
// Validate validates a RemoveEvalRequest.
func (v RemoveEvalRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
"PolicyID": validation.Validate(v.PolicyID, validation.Required),
}.Filter()
}
func (p *appsec) GetEval(ctx context.Context, params GetEvalRequest) (*GetEvalResponse, error) {
logger := p.Log(ctx)
logger.Debug("GetEval")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
uri := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/security-policies/%s/mode",
params.ConfigID,
params.Version,
params.PolicyID)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create GetEval request: %w", err)
}
var result GetEvalResponse
resp, err := p.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("get eval request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, p.Error(resp)
}
return &result, nil
}
// Deprecated: this method will be removed in a future release.
func (p *appsec) GetEvals(ctx context.Context, params GetEvalsRequest) (*GetEvalsResponse, error) {
logger := p.Log(ctx)
logger.Debug("GetEvals")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
uri := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/security-policies/%s/mode",
params.ConfigID,
params.Version,
params.PolicyID)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create GetEvals request: %w", err)
}
var result GetEvalsResponse
resp, err := p.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("get evals request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, p.Error(resp)
}
return &result, nil
}
func (p *appsec) UpdateEval(ctx context.Context, params UpdateEvalRequest) (*UpdateEvalResponse, error) {
logger := p.Log(ctx)
logger.Debug("UpdateEval")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
uri := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/security-policies/%s/eval",
params.ConfigID,
params.Version,
params.PolicyID,
)
req, err := http.NewRequestWithContext(ctx, http.MethodPost, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create UpdateEval request: %w", err)
}
var result UpdateEvalResponse
resp, err := p.Exec(req, &result, params)
if err != nil {
return nil, fmt.Errorf("update eval 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) RemoveEval(ctx context.Context, params RemoveEvalRequest) (*RemoveEvalResponse, error) {
logger := p.Log(ctx)
logger.Debug("RemoveEval")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
uri := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/security-policies/%s/eval",
params.ConfigID,
params.Version,
params.PolicyID,
)
req, err := http.NewRequestWithContext(ctx, http.MethodPost, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create RemoveEval request: %w", err)
}
var result RemoveEvalResponse
resp, err := p.Exec(req, &result, params)
if err != nil {
return nil, fmt.Errorf("remove eval 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
}