-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathcustom_rule_action.go
232 lines (193 loc) · 7.58 KB
/
custom_rule_action.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
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 CustomRuleAction interface supports retrieving and updating the actions for the custom
// rules of a configuration, or for a specific custom rule.
CustomRuleAction interface {
// GetCustomRuleActions returns a list of all configured custom rules for the specified configuration.
//
// See: https://techdocs.akamai.com/application-security/reference/get-custom-rules
GetCustomRuleActions(ctx context.Context, params GetCustomRuleActionsRequest) (*GetCustomRuleActionsResponse, error)
// GetCustomRuleAction returns a specified action of a custom rule.
//
// See: https://techdocs.akamai.com/application-security/reference/get-custom-rules
GetCustomRuleAction(ctx context.Context, params GetCustomRuleActionRequest) (*GetCustomRuleActionResponse, error)
// UpdateCustomRuleAction updates the action of a custom rule.
//
// See: https://techdocs.akamai.com/application-security/reference/put-custom-rule
UpdateCustomRuleAction(ctx context.Context, params UpdateCustomRuleActionRequest) (*UpdateCustomRuleActionResponse, error)
}
// GetCustomRuleActionsRequest is used to retrieve the custom rule actions for a configuration.
GetCustomRuleActionsRequest struct {
ConfigID int `json:"configId"`
Version int `json:"version"`
PolicyID string `json:"policyId"`
RuleID int `json:"ruleId"`
}
// GetCustomRuleActionsResponse is returned from a call to GetCustomRuleActions.
GetCustomRuleActionsResponse []struct {
Action string `json:"action,omitempty"`
CanUseAdvancedActions bool `json:"canUseAdvancedActions,omitempty"`
Link string `json:"link,omitempty"`
Name string `json:"name,omitempty"`
RuleID int `json:"ruleId,omitempty"`
}
// GetCustomRuleActionRequest is used to retrieve the action for a custom rule.
GetCustomRuleActionRequest struct {
ConfigID int `json:"configId"`
Version int `json:"version"`
PolicyID string `json:"policyId"`
RuleID int `json:"ruleId"`
}
// GetCustomRuleActionResponse is returned from a call to GetCustomRuleAction.
GetCustomRuleActionResponse struct {
Action string `json:"action,omitempty"`
CanUseAdvancedActions bool `json:"canUseAdvancedActions,omitempty"`
Link string `json:"link,omitempty"`
Name string `json:"name,omitempty"`
RuleID int `json:"ruleId,omitempty"`
}
// UpdateCustomRuleActionRequest is used to modify an existing custom rule.
UpdateCustomRuleActionRequest struct {
ConfigID int `json:"-"`
Version int `json:"-"`
PolicyID string `json:"-"`
RuleID int `json:"-"`
Action string `json:"action"`
}
// UpdateCustomRuleActionResponse is returned from a call to UpdateCustomRuleAction.
UpdateCustomRuleActionResponse struct {
Action string `json:"action"`
CanUseAdvancedActions bool `json:"canUseAdvancedActions"`
Link string `json:"link"`
Name string `json:"name"`
RuleID int `json:"ruleId"`
}
)
// Validate validates a GetCustomRuleActionRequest.
func (v GetCustomRuleActionRequest) 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 GetCustomRuleActionsRequest.
func (v GetCustomRuleActionsRequest) 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 UpdateCustomRuleActionRequest.
func (v UpdateCustomRuleActionRequest) 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),
"ID": validation.Validate(v.RuleID, validation.Required),
}.Filter()
}
func (p *appsec) GetCustomRuleAction(ctx context.Context, params GetCustomRuleActionRequest) (*GetCustomRuleActionResponse, error) {
logger := p.Log(ctx)
logger.Debug("GetCustomRuleAction")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
var result GetCustomRuleActionResponse
uri := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/security-policies/%s/custom-rules",
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 GetCustomRuleAction request: %w", err)
}
var results GetCustomRuleActionsResponse
resp, err := p.Exec(req, &results)
if err != nil {
return nil, fmt.Errorf("get custom rule action request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, p.Error(resp)
}
for _, val := range results {
if val.RuleID == params.RuleID {
result = val
return &result, nil
}
}
return &result, nil
}
func (p *appsec) GetCustomRuleActions(ctx context.Context, params GetCustomRuleActionsRequest) (*GetCustomRuleActionsResponse, error) {
logger := p.Log(ctx)
logger.Debug("GetCustomRuleActions")
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/custom-rules",
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 GetCustomRuleActions request: %w", err)
}
var result GetCustomRuleActionsResponse
resp, err := p.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("get custom rule actions request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, p.Error(resp)
}
if params.RuleID != 0 {
var filteredResult GetCustomRuleActionsResponse
for _, val := range result {
if val.RuleID == params.RuleID {
filteredResult = append(filteredResult, val)
}
}
return &filteredResult, nil
}
return &result, nil
}
func (p *appsec) UpdateCustomRuleAction(ctx context.Context, params UpdateCustomRuleActionRequest) (*UpdateCustomRuleActionResponse, error) {
logger := p.Log(ctx)
logger.Debug("UpdateCustomRuleAction")
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/custom-rules/%d",
params.ConfigID,
params.Version,
params.PolicyID,
params.RuleID,
)
req, err := http.NewRequestWithContext(ctx, http.MethodPut, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create UpdateCustomRuleAction request: %w", err)
}
var result UpdateCustomRuleActionResponse
resp, err := p.Exec(req, &result, params)
if err != nil {
return nil, fmt.Errorf("update custom rule action request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusCreated && resp.StatusCode != http.StatusNoContent {
return nil, p.Error(resp)
}
return &result, nil
}