-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.go
136 lines (120 loc) · 3.24 KB
/
config.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
package wallarm
import (
"net/http"
"sync"
"time"
)
// APIURL is API host of the EU Wallarm Cloud
var apiURL = "https://api.wallarm.com"
const (
// Version is the client version
Version = "0.0.25"
)
// Option is a functional option for configuring the API client
type Option func(*api) error
// RetryPolicy specifies number of retries and min/max retry delays
// This config is used when the client exponentially backs off after errored requests
type RetryPolicy struct {
MaxRetries int
MinRetryDelay time.Duration
MaxRetryDelay time.Duration
}
// Logger defines the interface this library needs to use logging
// This is a subset of the methods implemented in the log package
type Logger interface {
Printf(format string, v ...interface{})
}
type (
// API holds the configuration for the current API client. A client should not
// be modified concurrently.
API interface {
Action
Application
IPList
Allowlist
Graylist
Denylist
Client
Vulnerability
Integration
Node
Scanner
Trigger
User
WallarmMode
RuleSettings
ApiSpec
}
api struct {
baseURL, UserAgent string
headers http.Header
httpClient *http.Client
retryPolicy RetryPolicy
logger Logger
*sync.Mutex
}
)
// HTTPClient accepts a custom *http.Client for making API calls.
func HTTPClient(client *http.Client) Option {
return func(api *api) error {
api.httpClient = client
return nil
}
}
// Headers allows you to set custom HTTP headers when making API calls (e.g. for
// satisfying HTTP proxies, or for debugging).
func Headers(headers http.Header) Option {
return func(api *api) error {
api.headers = headers
return nil
}
}
// UserAgent allows to set custome User-Agent header.
func UserAgent(userAgent string) Option {
return func(api *api) error {
api.UserAgent = userAgent
return nil
}
}
// UsingRetryPolicy applies a non-default number of retries and min/max retry delays
// This will be used when the client exponentially backs off after errored requests
func UsingRetryPolicy(maxRetries int, minRetryDelaySecs int, maxRetryDelaySecs int) Option {
// seconds is very granular for a minimum delay - but this is only in case of failure
return func(api *api) error {
api.retryPolicy = RetryPolicy{
MaxRetries: maxRetries,
MinRetryDelay: time.Duration(minRetryDelaySecs) * time.Second,
MaxRetryDelay: time.Duration(maxRetryDelaySecs) * time.Second,
}
return nil
}
}
// UsingLogger can be set if you want to get log output from this API instance
// By default no log output is emitted
func UsingLogger(logger Logger) Option {
return func(api *api) error {
api.logger = logger
return nil
}
}
// UsingBaseURL allows to set the Wallarm API endpoint
func UsingBaseURL(apiURL string) Option {
return func(api *api) error {
api.baseURL = apiURL
return nil
}
}
// parseOptions parses the supplied options functions and returns a configured
// *API instance.
func (api *api) parseOptions(opts ...Option) error {
// Range over each options function and apply it to our API type to
// configure it. Options functions are applied in order, with any
// conflicting options overriding earlier calls.
for _, option := range opts {
err := option(api)
if err != nil {
return err
}
}
return nil
}