-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
156 lines (130 loc) · 2.7 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package yuque
import (
"bytes"
"encoding/json"
"errors"
"io/ioutil"
"net/http"
"time"
"github.com/my-Sakura/go-yuque-api/internal"
)
type Client struct {
token string
login string
// default is "https://www.yuque.com/api/v2"
baseURL string
// http request User-Agent
userAgent string
User *User
Document *Document
Repo *Repo
Group *Group
Search *Searcher
}
type clientOption func(*Client)
func NewClient(token string, options ...clientOption) (*Client, error) {
client := &Client{
token: token,
}
client.User = newUser(client)
client.Document = newDocument(client)
client.Group = newGroup(client)
client.Repo = newRepo(client)
client.Search = newSearcher(client)
for _, option := range options {
option(client)
}
if client.baseURL == "" {
client.baseURL = internal.BaseURL
}
user, err := client.User.GetInfo()
if err != nil {
return nil, err
}
client.login = user.Data.Login
return client, nil
}
func (c *Client) SetOption(opts ...clientOption) {
for _, option := range opts {
option(c)
}
}
func WithToken(token string) clientOption {
return func(c *Client) {
c.token = token
}
}
func WithBaseURL(url string) clientOption {
return func(c *Client) {
c.baseURL = url
}
}
func WithUserAgent(userAgent string) clientOption {
return func(c *Client) {
c.userAgent = userAgent
}
}
func WithLogin(login string) clientOption {
return func(c *Client) {
c.login = login
}
}
type option struct {
Method string
Headers map[string]string
Body interface{}
}
func (c *Client) do(url string, options ...option) ([]byte, error) {
var option option
if len(options) > 1 {
return nil, errors.New("options length more than one")
} else if len(options) == 1 {
option = options[0]
}
var (
err error
req *http.Request
timeout = time.Duration(5 * time.Second)
method = option.Method
body *bytes.Buffer
)
if len(method) == 0 {
method = "GET"
}
if option.Body != nil {
requestBody, err := json.Marshal(option.Body)
if err != nil {
return nil, err
}
body = bytes.NewBuffer(requestBody)
}
if body != nil {
req, err = http.NewRequest(method, url, body)
} else {
req, err = http.NewRequest(method, url, nil)
}
if err != nil {
return nil, err
}
req.Header.Add("X-Auth-Token", c.token)
req.Header.Add("Content-type", "application/json")
for k, v := range option.Headers {
req.Header.Set(k, v)
}
httpClient := &http.Client{
Timeout: timeout,
}
resp, err := httpClient.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
respBody, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
if resp.StatusCode != 200 {
return nil, errors.New(string(respBody))
}
return respBody, nil
}