-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathchallenge_interception_rules.go
122 lines (101 loc) · 4.39 KB
/
challenge_interception_rules.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
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 ChallengeInterceptionRules interface supports retrieving and updating the challenge interception rules for a
// configuration
// Deprecated: this interface will be removed in a future release. Use ChallengeInjectionRules instead.
ChallengeInterceptionRules interface {
// GetChallengeInterceptionRules https://techdocs.akamai.com/bot-manager/reference/get-challenge-interception-rules
// Deprecated: this method will be removed in a future release. Use GetChallengeInjectionRules instead.
GetChallengeInterceptionRules(ctx context.Context, params GetChallengeInterceptionRulesRequest) (map[string]interface{}, error)
// UpdateChallengeInterceptionRules https://techdocs.akamai.com/bot-manager/reference/put-challenge-interception-rules
// Deprecated: this method will be removed in a future release. Use UpdateChallengeInjectionRules instead.
UpdateChallengeInterceptionRules(ctx context.Context, params UpdateChallengeInterceptionRulesRequest) (map[string]interface{}, error)
}
// GetChallengeInterceptionRulesRequest is used to retrieve challenge interception rules
// Deprecated: this struct will be removed in a future release. Use GetChallengeInjectionRulesRequest instead.
GetChallengeInterceptionRulesRequest struct {
ConfigID int64
Version int64
}
// UpdateChallengeInterceptionRulesRequest is used to modify challenge interception rules
// Deprecated: this struct will be removed in a future release. Use UpdateChallengeInjectionRulesRequest instead.
UpdateChallengeInterceptionRulesRequest struct {
ConfigID int64
Version int64
JsonPayload json.RawMessage
}
)
// Validate validates a GetChallengeInterceptionRulesRequest.
func (v GetChallengeInterceptionRulesRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
}.Filter()
}
// Validate validates an UpdateChallengeInterceptionRulesRequest.
func (v UpdateChallengeInterceptionRulesRequest) Validate() error {
return validation.Errors{
"ConfigID": validation.Validate(v.ConfigID, validation.Required),
"Version": validation.Validate(v.Version, validation.Required),
"JsonPayload": validation.Validate(v.JsonPayload, validation.Required),
}.Filter()
}
func (b *botman) GetChallengeInterceptionRules(ctx context.Context, params GetChallengeInterceptionRulesRequest) (map[string]interface{}, error) {
logger := b.Log(ctx)
logger.Debug("GetChallengeInterceptionRules")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
uri := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/response-actions/challenge-interception-rules",
params.ConfigID,
params.Version)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, fmt.Errorf("failed to create GetChallengeInterceptionRules request: %w", err)
}
var result map[string]interface{}
resp, err := b.Exec(req, &result)
if err != nil {
return nil, fmt.Errorf("GetChallengeInterceptionRules request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, b.Error(resp)
}
return result, nil
}
func (b *botman) UpdateChallengeInterceptionRules(ctx context.Context, params UpdateChallengeInterceptionRulesRequest) (map[string]interface{}, error) {
logger := b.Log(ctx)
logger.Debug("UpdateChallengeInterceptionRules")
if err := params.Validate(); err != nil {
return nil, fmt.Errorf("%w: %s", ErrStructValidation, err.Error())
}
putURL := fmt.Sprintf(
"/appsec/v1/configs/%d/versions/%d/response-actions/challenge-interception-rules",
params.ConfigID,
params.Version,
)
req, err := http.NewRequestWithContext(ctx, http.MethodPut, putURL, nil)
if err != nil {
return nil, fmt.Errorf("failed to create UpdateChallengeInterceptionRules request: %w", err)
}
var result map[string]interface{}
resp, err := b.Exec(req, &result, params.JsonPayload)
if err != nil {
return nil, fmt.Errorf("UpdateChallengeInterceptionRules request failed: %w", err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, b.Error(resp)
}
return result, nil
}