-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.go
103 lines (91 loc) · 2.15 KB
/
options.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
package taskqueue
import (
"context"
"crypto/tls"
"net/url"
"time"
)
type Options struct {
Host string
Username string
Password string
TLSConfig *tls.Config
URI string
Context context.Context
Timeout time.Duration
NoRetry bool
}
type Option func(*Options)
// WithHost sets the Redis connection host.
func WithHost(host string) Option {
return func(opts *Options) {
opts.Host = host
}
}
// WithUsername sets the username to use when authenticating to Redis.
func WithUsername(username string) Option {
return func(opts *Options) {
opts.Username = username
}
}
// WithPassword sets the password to use when authenticating to Redis.
func WithPassword(password string) Option {
return func(opts *Options) {
opts.Password = password
}
}
// WithTLSConfig sets the TLS configuration of the Redis instance.
func WithTLSConfig(tlsConfig *tls.Config) Option {
return func(opts *Options) {
opts.TLSConfig = tlsConfig
}
}
// WithURI sets the Redis URI connection string.
func WithURI(uri string) Option {
return func(opts *Options) {
opts.URI = uri
}
}
// WithContext sets the Redis context object.
func WithContext(ctx context.Context) Option {
return func(opts *Options) {
opts.Context = ctx
}
}
// WithTimeout sets the Redis read/write timeout.
func WithTimeout(timeout time.Duration) Option {
return func(opts *Options) {
opts.Timeout = timeout
}
}
// WithNoRetry enables or disables task retry, which re-adds the task back to the queue if an error
// occurs while retrieving it.
func WithNoRetry() Option {
return func(opts *Options) {
opts.NoRetry = true
}
}
func getOptions(setters []Option) (*Options, error) {
options := &Options{
Host: "localhost:6379",
TLSConfig: nil,
Context: context.Background(),
Timeout: time.Second * 3,
NoRetry: false,
}
for _, setter := range setters {
setter(options)
}
if options.URI != "" {
parsed, err := url.Parse(options.URI)
if err != nil {
return nil, err
}
username := parsed.User.Username()
password, _ := parsed.User.Password()
WithHost(parsed.Host)(options)
WithUsername(username)(options)
WithPassword(password)(options)
}
return options, nil
}