forked from nkatsaros/go-sabnzbd
-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.go
70 lines (58 loc) · 1.13 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
package sabnzbd
import "net/http"
type Option func(*Sabnzbd) error
func UseHttp() Option {
return func(s *Sabnzbd) error {
s.useHttp()
return nil
}
}
func UseHttps() Option {
return func(s *Sabnzbd) error {
s.useHttps()
return nil
}
}
func UseHTTPAuth(user, pass string) Option {
return func(s *Sabnzbd) error {
s.httpUser = user
s.httpPass = pass
return nil
}
}
func UseInsecureHTTP() Option {
return func(s *Sabnzbd) error {
s.useInsecureHttp()
return nil
}
}
func Addr(addr string) Option {
return func(s *Sabnzbd) error {
return s.setAddr(addr)
}
}
func Path(path string) Option {
return func(s *Sabnzbd) error {
return s.setPath(path)
}
}
func LoginAuth(username, password string) Option {
return func(s *Sabnzbd) error {
return s.setAuth(loginAuth{username, password})
}
}
func ApikeyAuth(apikey string) Option {
return func(s *Sabnzbd) error {
return s.setAuth(apikeyAuth{apikey})
}
}
func NoneAuth() Option {
return func(s *Sabnzbd) error {
return s.setAuth(noneAuth{})
}
}
func UseRoundTripper(rt http.RoundTripper) Option {
return func(s *Sabnzbd) error {
return s.setRoundTripper(rt)
}
}