-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
runner_option.go
437 lines (374 loc) · 10.3 KB
/
runner_option.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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
package runn
import (
"fmt"
"strconv"
"strings"
"github.com/goccy/go-yaml"
"github.com/k1LoW/runn/internal/deprecation"
"github.com/pb33f/libopenapi"
"github.com/pb33f/libopenapi/datamodel"
)
type httpRunnerConfig struct {
Endpoint string `yaml:"endpoint"`
OpenAPI3DocLocation string `yaml:"openapi3,omitempty"`
SkipValidateRequest bool `yaml:"skipValidateRequest,omitempty"`
SkipValidateResponse bool `yaml:"skipValidateResponse,omitempty"`
SkipCircularReferenceCheck bool `yaml:"skipCircularReferenceCheck,omitempty"`
NotFollowRedirect bool `yaml:"notFollowRedirect,omitempty"`
MultipartBoundary string `yaml:"multipartBoundary,omitempty"`
CACert string `yaml:"cacert,omitempty"`
Cert string `yaml:"cert,omitempty"`
Key string `yaml:"key,omitempty"`
SkipVerify bool `yaml:"skipVerify,omitempty"`
Timeout string `yaml:"timeout,omitempty"`
UseCookie *bool `yaml:"useCookie,omitempty"`
Trace traceConfig
openAPI3Doc libopenapi.Document
}
type traceConfig struct {
Enable *bool `yaml:"enable"`
HeaderName string `yaml:"headerName,omitempty"`
}
type grpcRunnerConfig struct {
Addr string `yaml:"addr"`
TLS *bool `yaml:"tls,omitempty"`
CACert string `yaml:"cacert,omitempty"`
Cert string `yaml:"cert,omitempty"`
Key string `yaml:"key,omitempty"`
SkipVerify bool `yaml:"skipVerify,omitempty"`
ImportPaths []string `yaml:"importPaths,omitempty"`
Protos []string `yaml:"protos,omitempty"`
BufDirs []string `yaml:"bufDirs,omitempty"`
BufLocks []string `yaml:"bufLocks,omitempty"`
BufConfigs []string `yaml:"bufConfigs,omitempty"`
BufModules []string `yaml:"bufModules,omitempty"`
Trace traceConfig
cacert []byte
cert []byte
key []byte
}
type dbRunnerConfig struct {
DSN string `yaml:"dsn"`
Trace *bool `yaml:"trace,omitempty"`
}
type sshRunnerConfig struct {
SSHConfig string `yaml:"sshConfig,omitempty"`
Host string `yaml:"host,omitempty"`
Hostname string `yaml:"hostname,omitempty"`
User string `yaml:"user,omitempty"`
Port int `yaml:"port,omitempty"`
IdentityFile string `yaml:"identityFile,omitempty"`
IdentityKey string `yaml:"identityKey,omitempty"`
KeepSession bool `yaml:"keepSession,omitempty"`
LocalForward string `yaml:"localForward,omitempty"`
KeyboardInteractive []*sshAnswer `yaml:"keyboardInteractive,omitempty"`
}
type sshAnswer struct {
Match string `yaml:"match"`
Answer string `yaml:"answer"`
}
type includeRunnerConfig struct {
Path string `yaml:"path"`
Params map[string]any `yaml:"params,omitempty"`
}
type cdpRunnerConfig struct {
Flags map[string]any `yaml:"flags,omitempty"`
Remote string `yaml:"-"`
}
type httpRunnerOption func(*httpRunnerConfig) error
type grpcRunnerOption func(*grpcRunnerConfig) error
type dbRunnerOption func(*dbRunnerConfig) error
type sshRunnerOption func(*sshRunnerConfig) error
type cdpRunnerOption func(*cdpRunnerConfig) error
func (c *sshRunnerConfig) validate() error {
if c.Host == "" && c.Hostname == "" {
return fmt.Errorf("host or hostname is required")
}
if c.IdentityFile != "" && c.IdentityKey != "" {
return fmt.Errorf("identityFile and identityKey cannot be used at the same time")
}
return nil
}
// OpenApi3 sets OpenAPI Document using file path.
// Deprecated: Use OpenAPI3 instead.
func OpenApi3(l string) httpRunnerOption {
deprecation.AddWarning("OpenApi3", "runn.OpenApi3 is deprecated. Use runn.OpenAPI3 instead.")
return OpenAPI3(l)
}
// OpenAPI3 sets OpenAPI Document using file path.
func OpenAPI3(l string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.OpenAPI3DocLocation = l
return nil
}
}
// OpenApi3FromData sets OpenAPI Document from data.
// Deprecated: Use OpenAPI3FromData instead.
func OpenApi3FromData(d []byte) httpRunnerOption {
deprecation.AddWarning("OpenApi3FromData", "runn.OpenApi3FromData is deprecated. Use runn.OpenAPI3FromData instead.")
return OpenAPI3FromData(d)
}
// OpenAPI3FromData sets OpenAPI Document from data.
func OpenAPI3FromData(d []byte) httpRunnerOption {
return func(c *httpRunnerConfig) error {
hash := hashBytes(d)
od, ok := globalOpenAPI3DocRegistory[hash]
if ok {
c.openAPI3Doc = od
return nil
}
oc := &datamodel.DocumentConfiguration{
AllowFileReferences: true,
AllowRemoteReferences: true,
SkipCircularReferenceCheck: c.SkipCircularReferenceCheck,
}
doc, err := libopenapi.NewDocumentWithConfiguration(d, oc)
if err != nil {
return err
}
c.openAPI3Doc = doc
return nil
}
}
// SkipValidateRequest sets whether to skip validation of HTTP request with OpenAPI Document.
func SkipValidateRequest(skip bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.SkipValidateRequest = skip
return nil
}
}
// SkipValidateResponse sets whether to skip validation of HTTP response with OpenAPI Document.
func SkipValidateResponse(skip bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.SkipValidateResponse = skip
return nil
}
}
// SkipCircularReferenceCheck sets whether to skip circular reference check in OpenAPI Document.
func SkipCircularReferenceCheck(skip bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.SkipCircularReferenceCheck = skip
return nil
}
}
func NotFollowRedirect(nf bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.NotFollowRedirect = nf
return nil
}
}
func MultipartBoundary(b string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.MultipartBoundary = b
return nil
}
}
func HTTPCACert(path string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.CACert = path
return nil
}
}
func HTTPCert(path string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.Cert = path
return nil
}
}
func HTTPKey(path string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.Key = path
return nil
}
}
func HTTPSkipVerify(skip bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.SkipVerify = skip
return nil
}
}
func HTTPTimeout(timeout string) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.Timeout = timeout
return nil
}
}
func UseCookie(use bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.UseCookie = &use
return nil
}
}
func HTTPTrace(trace bool) httpRunnerOption {
return func(c *httpRunnerConfig) error {
c.Trace.Enable = &trace
return nil
}
}
func TLS(useTLS bool) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.TLS = &useTLS
return nil
}
}
func CACert(path string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.CACert = path
return nil
}
}
func Cert(path string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.Cert = path
return nil
}
}
func Key(path string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.Key = path
return nil
}
}
func CACertFromData(b []byte) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.cacert = b
return nil
}
}
func CertFromData(b []byte) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.cert = b
return nil
}
}
func KeyFromData(b []byte) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.key = b
return nil
}
}
// Protos append protos.
func Protos(protos []string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.Protos = unique(append(c.Protos, protos...))
return nil
}
}
// ImportPaths set import paths.
func ImportPaths(paths []string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.ImportPaths = unique(append(c.ImportPaths, paths...))
return nil
}
}
func GRPCTrace(trace bool) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.Trace.Enable = &trace
return nil
}
}
func BufDir(dirs ...string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.BufDirs = unique(append(c.BufDirs, dirs...))
return nil
}
}
func BufLock(locks ...string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.BufLocks = unique(append(c.BufLocks, locks...))
return nil
}
}
func BufConfig(configs ...string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.BufConfigs = unique(append(c.BufConfigs, configs...))
return nil
}
}
func BufModule(modules ...string) grpcRunnerOption {
return func(c *grpcRunnerConfig) error {
c.BufModules = unique(append(c.BufModules, modules...))
return nil
}
}
func DBTrace(trace bool) dbRunnerOption {
return func(c *dbRunnerConfig) error {
c.Trace = &trace
return nil
}
}
func SSHConfig(p string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.SSHConfig = p
return nil
}
}
func Host(h string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.Host = h
return nil
}
}
func Hostname(h string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.Hostname = h
return nil
}
}
func User(u string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.User = u
return nil
}
}
func Port(p int) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.Port = p
return nil
}
}
func IdentityFile(p string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.IdentityFile = p
return nil
}
}
func IdentityKey(k []byte) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.IdentityKey = string(k)
return nil
}
}
func KeepSession(enable bool) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.KeepSession = enable
return nil
}
}
func LocalForward(l string) sshRunnerOption {
return func(c *sshRunnerConfig) error {
c.LocalForward = l
return nil
}
}
// CDPFlag set chromedp flag.
func CDPFlag(flag string, tf any) cdpRunnerOption {
return func(c *cdpRunnerConfig) error {
c.Flags[flag] = tf
return nil
}
}
func (t *traceConfig) UnmarshalYAML(b []byte) error {
if enable, err := strconv.ParseBool(strings.TrimSpace(string(b))); err == nil {
t.Enable = &enable
return nil
}
type Alias traceConfig
s := &Alias{}
if err := yaml.Unmarshal(b, s); err != nil {
return err
}
t.Enable = s.Enable
t.HeaderName = s.HeaderName
return nil
}