-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient.go
80 lines (64 loc) · 1.37 KB
/
client.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
package steamapi
import (
"errors"
"github.com/go-resty/resty/v2"
)
var (
ApiKeyNotExistErr = errors.New("steam api key must be provided")
)
const (
NopKey = "nop-key"
EmptyKey = ""
QuerySteamApiKey = "key"
QueryLanguage = "language"
)
type ClientOption func(client *Client)
func WithClientKey(key string) ClientOption {
return func(c *Client) {
c.cfg.key = key
}
}
func WithClientResty(client *resty.Client) ClientOption {
return func(c *Client) {
c.client = client
}
}
func WithHttpsClient() ClientOption {
return func(c *Client) {
c.cfg.https = true
}
}
// Client
// steam api client, interact with steam api server
type Client struct {
cfg ClientCfg
client *resty.Client
}
type ClientCfg struct {
key string
https bool
language string
}
// New func create a new Client only with api key which must be provided,
// if you just want to access some interface which does not need api key
// you can pass the NopKey
func New(key string) (*Client, error) {
return NewWith(
WithClientKey(key),
)
}
func NewWith(options ...ClientOption) (*Client, error) {
client := new(Client)
// apply options
for _, option := range options {
option(client)
}
// key must be provided
if len(client.cfg.key) == 0 {
return client, ApiKeyNotExistErr
}
if client.client == nil {
client.client = resty.New()
}
return client, nil
}