-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathbot_detection_action.go
196 lines (165 loc) · 6.37 KB
/
bot_detection_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
package botman
import (
"context"
"encoding/json"
"fmt"
"net/http"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v9/pkg/session"
validation "github.com/go-ozzo/ozzo-validation/v4"
)
type (
// The BotDetectionAction interface supports retrieving and updating the actions for bot detections of a configuration.
//
BotDetectionAction interface {
// GetBotDetectionActionList todo: add link
GetBotDetectionActionList(ctx context.Context, params GetBotDetectionActionListRequest) (*GetBotDetectionActionListResponse, error)
// GetBotDetectionAction todo: add link
GetBotDetectionAction(ctx context.Context, params GetBotDetectionActionRequest) (map[string]interface{}, error)
// UpdateBotDetectionAction todo: add link
UpdateBotDetectionAction(ctx context.Context, params UpdateBotDetectionActionRequest) (map[string]interface{}, error)
}
// GetBotDetectionActionListRequest is used to retrieve the bot detection actions for a configuration.
GetBotDetectionActionListRequest struct {
ConfigID int64
Version int64
SecurityPolicyID string
DetectionID string
}
// GetBotDetectionActionListResponse is used to retrieve the bot detection actions for a configuration.
GetBotDetectionActionListResponse struct {
Actions []map[string]interface{} `json:"actions"`
}
// GetBotDetectionActionRequest is used to retrieve the action for a bot detection.
GetBotDetectionActionRequest struct {
ConfigID int64
Version int64
SecurityPolicyID string
DetectionID string
}
// UpdateBotDetectionActionRequest is used to modify a bot detection action.
UpdateBotDetectionActionRequest struct {
ConfigID int64
Version int64
SecurityPolicyID string
DetectionID string
JsonPayload json.RawMessage
}
)
// Validate validates a GetBotDetectionActionRequest.
func (v GetBotDetectionActionRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
"SecurityPolicyID": validation.Validate(v.SecurityPolicyID, validation.Required),
"DetectionID": validation.Validate(v.DetectionID, validation.Required),
}.Filter()
}
// Validate validates a GetBotDetectionActionListRequest.
func (v GetBotDetectionActionListRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
"SecurityPolicyID": validation.Validate(v.SecurityPolicyID, validation.Required),
}.Filter()
}
// Validate validates an UpdateBotDetectionActionRequest.
func (v UpdateBotDetectionActionRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
"SecurityPolicyID": validation.Validate(v.SecurityPolicyID, validation.Required),
"DetectionID": validation.Validate(v.DetectionID, validation.Required),
"JsonPayload": validation.Validate(v.JsonPayload, validation.Required),
}.Filter()
}
func (b *botman) GetBotDetectionAction(ctx context.Context, params GetBotDetectionActionRequest) (map[string]interface{}, error) {
logger := b.Log(ctx)
logger.Debug("GetBotDetectionAction")
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/bot-detection-actions/%s",
params.ConfigID,
params.Version,
params.SecurityPolicyID,
params.DetectionID)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create GetBotDetectionAction request: %w", err)
}
var result map[string]interface{}
resp, err := b.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("GetBotDetectionAction request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, b.Error(resp)
}
return result, nil
}
func (b *botman) GetBotDetectionActionList(ctx context.Context, params GetBotDetectionActionListRequest) (*GetBotDetectionActionListResponse, error) {
logger := b.Log(ctx)
logger.Debug("GetBotDetectionActionList")
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/bot-detection-actions",
params.ConfigID,
params.Version,
params.SecurityPolicyID)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create GetBotDetectionActionList request: %w", err)
}
var result GetBotDetectionActionListResponse
resp, err := b.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("GetBotDetectionActionList request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, b.Error(resp)
}
var filteredResult GetBotDetectionActionListResponse
if params.DetectionID != "" {
for _, val := range result.Actions {
if val["detectionId"].(string) == params.DetectionID {
filteredResult.Actions = append(filteredResult.Actions, val)
}
}
} else {
filteredResult = result
}
return &filteredResult, nil
}
func (b *botman) UpdateBotDetectionAction(ctx context.Context, params UpdateBotDetectionActionRequest) (map[string]interface{}, error) {
logger := b.Log(ctx)
logger.Debug("UpdateBotDetectionAction")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
putURL := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/security-policies/%s/bot-detection-actions/%s",
params.ConfigID,
params.Version,
params.SecurityPolicyID,
params.DetectionID,
)
req, err := http.NewRequestWithContext(ctx, http.MethodPut, putURL, nil)
if err != nil {
return nil, fmt.Errorf("failed to create UpdateBotDetectionAction request: %w", err)
}
var result map[string]interface{}
resp, err := b.Exec(req, &result, params.JsonPayload)
if err != nil {
return nil, fmt.Errorf("UpdateBotDetectionAction request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, b.Error(resp)
}
return result, nil
}