-
Notifications
You must be signed in to change notification settings - Fork 14
/
client.go
199 lines (175 loc) · 5.62 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
// package bamboo provides a client to communicate with Atlassian Bamboo CI Server API
//
// Usage:
// import bamboo "github.com/rcarmstrong/go-bamboo"
//
// A Bamboo client exposes various services that control access to different parts of
// the Bamboo API. For example:
// client := bamboo.NewSimpleClient(nil, "myUsername", "myPassword")
//
// // Optionally set a different connection URL for the bamboo client.
// // Defaults to "http://localhost:8085/rest/api/latest/"
// client.SetURL("https://my.bambooserver.com:8085/")
//
// planNames, _, err := client.Plans.ListPlanNames()
package bamboo
import (
"bytes"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/url"
"strings"
"time"
)
const (
libraryVersion = "1.0"
defaultBaseURL = "http://localhost:8085/rest/api/latest/"
)
// Client manages the communication with the Bamboo API
type Client struct {
client *http.Client // HTTP client used to communicate with the API
BaseURL *url.URL
authorizer Authorizer // User credentials
common service // Reuse a single struct instead of allocating one for each service on the heap.
// Services used for talking to different parts of the Bamboo API
Info *InfoService
Plans *PlanService
Deploys *DeployService
Branches *PlanBranchService
Projects *ProjectService
Results *ResultService
Comments *CommentService
Labels *LabelService
Clone *CloneService
Server *ServerService
Permissions *Permissions
}
type service struct {
name string
client *Client
}
// SetURL for the client to use for the Bamboo API
func (c *Client) SetURL(desiredURL string) error {
newURL, err := url.Parse(desiredURL)
if err != nil {
return err
}
if newURL.Scheme == "" {
return newErrBadURL("URL scheme was blank")
}
if !strings.HasSuffix(newURL.Path, "/rest/api/latest/") {
newURL.Path += "/rest/api/latest/"
}
c.BaseURL = newURL
return nil
}
// NewSimpleClient returns a new Bamboo API client. If a nil httpClient is
// provided, http.DefaultClient will be used. To use API methods which require
// authentication, provide an admin username/password
func NewSimpleClient(httpClient *http.Client, username, password string) *Client {
creds := &SimpleCredentials{Username: username, Password: password}
return NewClient(httpClient, creds)
}
// NewSimpleClient returns a new Bamboo API client. If a nil httpClient is
// provided, http.DefaultClient will be used. To use API methods which require
// authentication, provide an admin username/password
func NewTokenClient(httpClient *http.Client, token string) *Client {
creds := &TokenCredentials{
Token: token,
}
return NewClient(httpClient, creds)
}
// NewClient returns a new Bamboo API client. If a nil httpClient is
// provided, http.DefaultClient will be used.
func NewClient(httpClient *http.Client, creds Authorizer) *Client {
if httpClient == nil {
httpClient = &http.Client{
Timeout: time.Second * 10,
}
}
baseURL, _ := url.Parse(defaultBaseURL)
c := &Client{
client: httpClient,
BaseURL: baseURL,
authorizer: creds,
}
c.common.client = c
c.Plans = (*PlanService)(&c.common)
c.Deploys = (*DeployService)(&c.common)
c.Branches = (*PlanBranchService)(&c.common)
c.Projects = (*ProjectService)(&c.common)
c.Info = (*InfoService)(&c.common)
c.Results = (*ResultService)(&c.common)
c.Comments = (*CommentService)(&c.common)
c.Labels = (*LabelService)(&c.common)
c.Clone = (*CloneService)(&c.common)
c.Server = (*ServerService)(&c.common)
c.Permissions = (*Permissions)(&c.common)
return c
}
// NewRequest creates an API request. A relative URL can be provided in urlStr,
// in which case it is resolved relative to the BaseURL of the Client.
// Relative URLs should always be specified without a preceding slash. If
// specified, the value pointed to by body is JSON encoded and included as the
// request body.
func (c *Client) NewRequest(method, urlStr string, body interface{}) (*http.Request, error) {
if !strings.HasSuffix(c.BaseURL.Path, "/") {
return nil, fmt.Errorf("BaseURL must have a trailing slash, but %q does not", c.BaseURL)
}
u, err := c.BaseURL.Parse(urlStr)
if err != nil {
return nil, err
}
var buf io.ReadWriter
if body != nil {
buf = new(bytes.Buffer)
enc := json.NewEncoder(buf)
enc.SetEscapeHTML(false)
err := enc.Encode(body)
if err != nil {
return nil, err
}
}
req, err := http.NewRequest(method, u.String(), buf)
if err != nil {
return nil, err
}
creds := c.authorizer
req.Header.Set("Authorization", creds.Authorization())
req.Header.Set("Accept", "application/json")
if body != nil {
req.Header.Set("Content-Type", "application/json")
}
return req, nil
}
// 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 body will be written to v, without attempting to
// first decode it. If rate limit is exceeded and reset time is in the future,
// Do returns *RateLimitError immediately without making a network API call.
func (c *Client) Do(req *http.Request, v interface{}) (*http.Response, error) {
resp, err := c.client.Do(req)
if err != nil {
return nil, err
}
defer func() {
// Drain up to 512 bytes and close the body to let the Transport reuse the connection
io.CopyN(ioutil.Discard, resp.Body, 512)
resp.Body.Close()
}()
if v != nil {
if w, ok := v.(io.Writer); ok {
io.Copy(w, resp.Body)
} else {
err = json.NewDecoder(resp.Body).Decode(v)
if err == io.EOF {
err = nil // ignore EOF errors caused by empty response body
}
}
}
return resp, err
}