forked from ramvasanth/wavecell
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.go
More file actions
126 lines (106 loc) · 2.48 KB
/
Copy pathoptions.go
File metadata and controls
126 lines (106 loc) · 2.48 KB
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
package wavecell
import (
"github.com/gojek/heimdall/v7/hystrix"
"net/http"
"strings"
"time"
"github.com/gojek/heimdall/v7"
)
// DefaultTimeout is the default timeout of the Wavecell API.
const DefaultTimeout = 30 * time.Second
// BaseURL is the base URL of the Wavecell API.
const BaseURL = "https://sms.8x8.com"
// Option is the option for the client.
type Option struct {
BaseURL string
APIKey string
SubAccountID string
Client heimdall.Doer
Timeout time.Duration
HystrixOptions []hystrix.Option
client *hystrix.Client
}
func (o *Option) Assign(opts ...FnOption) *Option {
for _, opt := range opts {
opt(o)
}
return o
}
// Clone returns a clone of the option.
func (o *Option) Clone() *Option {
opt := *o
return &opt
}
// Default is the default option for the client.
func (o *Option) Default() *Option {
if o.BaseURL == "" {
o.BaseURL = BaseURL
}
o.BaseURL = strings.TrimRight(o.BaseURL, "/")
if o.Client == nil {
o.Client = http.DefaultClient
}
if o.Timeout < DefaultTimeout {
o.Timeout = DefaultTimeout
}
opts := append([]hystrix.Option{
hystrix.WithHTTPTimeout(o.Timeout),
hystrix.WithHystrixTimeout(o.Timeout),
hystrix.WithHTTPClient(o.Client),
},
o.HystrixOptions...,
)
o.client = hystrix.NewClient(
opts...,
)
return o
}
// Validate validates the option.
func (o *Option) Validate() (err error) {
if o.APIKey == "" {
err = ErrEmptyAPIKEY
return
}
if o.SubAccountID == "" {
err = ErrEmptySubAccountID
}
return
}
// FnOption is the functional option to set the Option.
type FnOption func(o *Option)
// WithBaseURL sets the base URL of the Wavecell API.
func WithBaseURL(u string) FnOption {
return func(o *Option) {
o.BaseURL = u
}
}
// WithAPIKey sets the API key of the Wavecell API.
func WithAPIKey(key string) FnOption {
return func(o *Option) {
o.APIKey = key
}
}
// WithSubAccountID sets the sub account ID of the Wavecell API.
func WithSubAccountID(id string) FnOption {
return func(o *Option) {
o.SubAccountID = id
}
}
// WithClient sets the client of the Wavecell API.
func WithClient(c heimdall.Doer) FnOption {
return func(o *Option) {
o.Client = c
}
}
// WithTimeout sets the timeout of the Wavecell API.
func WithTimeout(t time.Duration) FnOption {
return func(o *Option) {
o.Timeout = t
}
}
// WithHystrixOptions sets the hystrix options of the Wavecell API.
func WithHystrixOptions(opts ...hystrix.Option) FnOption {
return func(o *Option) {
o.HystrixOptions = opts
}
}