-
Notifications
You must be signed in to change notification settings - Fork 135
/
configuration.go
108 lines (95 loc) · 2.93 KB
/
configuration.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
// Copyright 2024 Coinbase, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package fetcher
import (
"time"
"github.com/coinbase/rosetta-sdk-go/asserter"
"github.com/coinbase/rosetta-sdk-go/client"
)
// Option is used to overwrite default values in
// Fetcher construction. Any Option not provided
// falls back to the default value.
type Option func(f *Fetcher)
// WithClient overrides the default client.APIClient.
func WithClient(client *client.APIClient) Option {
return func(f *Fetcher) {
f.rosettaClient = client
}
}
// WithMaxRetries overrides the default number of retries on
// a request.
func WithMaxRetries(maxRetries uint64) Option {
return func(f *Fetcher) {
f.maxRetries = maxRetries
}
}
// WithRetryElapsedTime overrides the default max elapsed time
// to retry a request.
func WithRetryElapsedTime(retryElapsedTime time.Duration) Option {
return func(f *Fetcher) {
f.retryElapsedTime = retryElapsedTime
}
}
// WithAsserter sets the asserter.Asserter on construction
// so it does not need to be initialized.
func WithAsserter(asserter *asserter.Asserter) Option {
return func(f *Fetcher) {
f.Asserter = asserter
}
}
// WithInsecureTLS overrides the default TLS
// security settings to allow insecure certificates
// on an HTTPS connection.
//
// This should ONLY be used when debugging a Rosetta API
// implementation. Using this option can lead to a man-in-the-middle
// attack!!
func WithInsecureTLS() Option {
return func(f *Fetcher) {
f.insecureTLS = true
}
}
// WithTimeout overrides the default HTTP timeout.
func WithTimeout(timeout time.Duration) Option {
return func(f *Fetcher) {
f.httpTimeout = timeout
}
}
// WithMaxConnections limits the number of concurrent
// requests the fetcher will attempt at once.
func WithMaxConnections(connections int) Option {
return func(f *Fetcher) {
f.maxConnections = connections
}
}
// WithForceRetry overrides the default
// retry handling logic and treats every error
// as retriable.
//
// This is particularly useful when accessing a Rosetta
// implementation via a load balancer where there may be
// periods of inconsistency (i.e. we get a network status
// from one implementation and query another that has not
// yet synced the most recent block).
func WithForceRetry() Option {
return func(f *Fetcher) {
f.forceRetry = true
}
}
// add a metaData map to fetcher
func WithMetaData(metaData string) Option {
return func(f *Fetcher) {
f.metaData = metaData
}
}