-
Notifications
You must be signed in to change notification settings - Fork 15
/
option.go
65 lines (53 loc) · 1.13 KB
/
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
package tiktok
import (
"net/http"
"time"
)
type HTTPClient interface {
Do(*http.Request) (*http.Response, error)
}
type Logger interface {
Print(...interface{})
Printf(string, ...interface{})
}
type option struct {
client HTTPClient
logger Logger
endpoint string
}
type Option func(o *option)
// WithHTTPClient setup HTTPClient with given client.
func WithHTTPClient(c HTTPClient) Option {
return func(o *option) {
o.client = c
}
}
// WithLogger setup logger for debug perporse.
// Default Logger will be discard.
func WithLogger(l Logger) Option {
return func(o *option) {
o.logger = l
}
}
// WithEndpoint setup endpoint for request.
// TikTok is not support sandbox mode yet, but it will be lauching soon.
// You can also use this for mocking purpose.
func WithEndpoint(e string) Option {
return func(o *option) {
o.endpoint = e
}
}
type nopLogger struct{}
func (n *nopLogger) Print(...interface{}) {
}
func (n *nopLogger) Printf(string, ...interface{}) {
}
func defaultOpt() *option {
return &option{
client: &http.Client{
Timeout: 30 * time.Second,
},
logger: &nopLogger{},
endpoint: APIBaseURL,
}
}