forked from drone/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 83
/
client.go
236 lines (204 loc) · 5.33 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Copyright 2017 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package scm
import (
"context"
"errors"
"io"
"net/http"
"net/url"
"strconv"
"strings"
"sync"
)
var (
// ErrNotFound indicates a resource is not found.
ErrNotFound = errors.New("Not Found")
// ErrNotSupported indicates a resource endpoint is not
// supported or implemented.
ErrNotSupported = errors.New("Not Supported")
// ErrNotAuthorized indicates the request is not
// authorized or the user does not have access to the
// resource.
ErrNotAuthorized = errors.New("Not Authorized")
)
type (
// Request represents an HTTP request.
Request struct {
Method string
Path string
Header http.Header
Body io.Reader
}
// Response represents an HTTP response.
Response struct {
ID string
Status int
Header http.Header
Body io.ReadCloser
Page Page // Page values
Rate Rate // Rate limit snapshot
}
// Page represents parsed link rel values for
// pagination.
Page struct {
Next int
NextURL string
Last int
First int
Prev int
}
// Rate represents the rate limit for the current
// client.
Rate struct {
Limit int
Remaining int
Reset int64
}
// ListOptions specifies optional pagination
// parameters.
ListOptions struct {
URL string
Page int
Size int
}
// GraphQLService the API to performing GraphQL queries
GraphQLService interface {
Query(ctx context.Context, q interface{}, vars map[string]interface{}) error
}
// Client manages communication with a version control
// system API.
Client struct {
mu sync.Mutex
// HTTP client used to communicate with the API.
Client *http.Client
// Base URL for API requests.
BaseURL *url.URL
GraphQLURL *url.URL
// Services used for communicating with the API.
Driver Driver
Apps AppService
Contents ContentService
Deployments DeploymentService
Git GitService
GraphQL GraphQLService
Organizations OrganizationService
Issues IssueService
PullRequests PullRequestService
Repositories RepositoryService
Reviews ReviewService
Users UserService
Webhooks WebhookService
// DumpResponse optionally specifies a function to
// dump the the response body for debugging purposes.
// This can be set to httputil.DumpResponse.
DumpResponse func(*http.Response, bool) ([]byte, error)
// snapshot of the request rate limit.
rate Rate
}
)
// Rate returns a snapshot of the request rate limit for
// the current client.
func (c *Client) Rate() Rate {
c.mu.Lock()
defer c.mu.Unlock()
return c.rate
}
// SetRate set the last recorded request rate limit for
// the current client.
func (c *Client) SetRate(rate Rate) {
c.mu.Lock()
c.rate = rate
c.mu.Unlock()
}
// Do sends an API request and returns the API response.
// The API response is JSON decoded and stored in the
// value pointed to by v, or returned as an error if an
// API error has occurred. If v implements the io.Writer
// interface, the raw response will be written to v,
// without attempting to decode it.
func (c *Client) Do(ctx context.Context, in *Request) (*Response, error) {
uri, err := c.BaseURL.Parse(in.Path)
if err != nil {
return nil, err
}
// creates a new http request with context.
req, err := http.NewRequest(in.Method, uri.String(), in.Body)
if err != nil {
return nil, err
}
// hack to prevent the client from un-escaping the
// encoded github path parameters when parsing the url.
if strings.Contains(in.Path, "%2F") {
req.URL.Opaque = strings.Split(req.URL.RawPath, "?")[0]
}
req = req.WithContext(ctx)
if in.Header != nil {
req.Header = in.Header
}
// use the default client if none provided.
client := c.Client
if client == nil {
client = http.DefaultClient
}
res, err := client.Do(req)
if err != nil {
return nil, err
}
// dumps the response for debugging purposes.
if c.DumpResponse != nil {
c.DumpResponse(res, true)
}
return newResponse(res), nil
}
// newResponse creates a new Response for the provided
// http.Response. r must not be nil.
func newResponse(r *http.Response) *Response {
res := &Response{
Status: r.StatusCode,
Header: r.Header,
Body: r.Body,
}
res.populatePageValues()
return res
}
// populatePageValues parses the HTTP Link response headers
// and populates the various pagination link values in the
// Response.
//
// Copyright 2013 The go-github AUTHORS. All rights reserved.
// https://github.com/google/go-github
func (r *Response) populatePageValues() {
links := strings.Split(r.Header.Get("Link"), ",")
for _, link := range links {
segments := strings.Split(strings.TrimSpace(link), ";")
if len(segments) < 2 {
continue
}
if !strings.HasPrefix(segments[0], "<") ||
!strings.HasSuffix(segments[0], ">") {
continue
}
url, err := url.Parse(segments[0][1 : len(segments[0])-1])
if err != nil {
continue
}
page := url.Query().Get("page")
if page == "" {
continue
}
for _, segment := range segments[1:] {
switch strings.TrimSpace(segment) {
case `rel="next"`:
r.Page.Next, _ = strconv.Atoi(page)
case `rel="prev"`:
r.Page.Prev, _ = strconv.Atoi(page)
case `rel="first"`:
r.Page.First, _ = strconv.Atoi(page)
case `rel="last"`:
r.Page.Last, _ = strconv.Atoi(page)
}
}
}
}