forked from rcarmstrong/go-bitbucket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepository.go
305 lines (241 loc) · 7.66 KB
/
repository.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
package bitbucket
import (
"encoding/json"
"net/http"
"os"
"github.com/k0kubun/pp"
"github.com/mitchellh/mapstructure"
)
type Project struct {
Key string
Name string
}
type Repository struct {
c *Client
Project Project
Slug string
Full_name string
Description string
Fork_policy string
Type string
Owner map[string]interface{}
Links map[string]interface{}
}
type Pipeline struct {
Type string
Enabled bool
Repository Repository
}
type PipelineVariable struct {
Type string
Uuid string
Key string
Value string
Secured bool
}
type PipelineKeyPair struct {
Type string
Uuid string
PublicKey string
PrivateKey string
}
func (r *Repository) Create(ro *RepositoryOptions) (*Repository, error) {
data := r.buildRepositoryBody(ro)
urlStr := r.c.requestUrl("/repositories/%s/%s", ro.Owner, ro.Repo_slug)
response, err := r.c.execute("POST", urlStr, data)
if err != nil {
return nil, err
}
return decodeRepository(response)
}
func (r *Repository) Get(ro *RepositoryOptions) (*Repository, error) {
urlStr := r.c.requestUrl("/repositories/%s/%s", ro.Owner, ro.Repo_slug)
response, err := r.c.execute("GET", urlStr, "")
if err != nil {
return nil, err
}
return decodeRepository(response)
}
func (r *Repository) Delete(ro *RepositoryOptions) (interface{}, error) {
urlStr := r.c.requestUrl("/repositories/%s/%s", ro.Owner, ro.Repo_slug)
return r.c.execute("DELETE", urlStr, "")
}
func (r *Repository) ListWatchers(ro *RepositoryOptions) (interface{}, error) {
urlStr := r.c.requestUrl("/repositories/%s/%s/watchers", ro.Owner, ro.Repo_slug)
return r.c.execute("GET", urlStr, "")
}
func (r *Repository) ListForks(ro *RepositoryOptions) (interface{}, error) {
urlStr := r.c.requestUrl("/repositories/%s/%s/forks", ro.Owner, ro.Repo_slug)
return r.c.execute("GET", urlStr, "")
}
// GetFile retrieves the content of the file with give node (commit hash)
func (r *Repository) GetFile(ro *RepositoryOptions, node, path string) (interface{}, error) {
urlStr := r.c.requestUrl("/repositories/%s/%s/src/%s/%s", ro.Owner, ro.Repo_slug, node, path)
return r.c.executeRaw("GET", urlStr, "")
}
// ListDefaultReviewers returns the list of default reviewers for the given repo
func (r *Repository) ListDefaultReviewers(ro *RepositoryOptions) (interface{}, error) {
urlStr := r.c.requestUrl("/repositories/%s/%s/default-reviewers", ro.Owner, ro.Repo_slug)
return r.c.execute(http.MethodGet, urlStr, "")
}
// AddDefaultReviewer will add the given user to the default-reviewers list. The RepositoryOptions for the Owner
// and the Repo_slug are used. The username is not validated. Review for spelling mistakes.
func (r *Repository) AddDefaultReviewer(ro *RepositoryOptions, username string) error {
urlStr := r.c.requestUrl("/repositories/%s/%s/default-reviewers/%s", ro.Owner, ro.Repo_slug, username)
_, err := r.c.execute(http.MethodPut, urlStr, "")
if err != nil {
return err
}
return nil
}
// RemoveDefaultReviewer will take the given user out of the default-reviewers list. The RepositoryOptions for the Owner
// and the Repo_slug are used. The username is not validated. Review for spelling mistakes.
func (r *Repository) RemoveDefaultReviewer(ro *RepositoryOptions, username string) error {
urlStr := r.c.requestUrl("/repositories/%s/%s/default-reviewers/%s", ro.Owner, ro.Repo_slug, username)
_, err := r.c.execute(http.MethodDelete, urlStr, "")
if err != nil {
return err
}
return nil
}
func (r *Repository) UpdatePipelineConfig(rpo *RepositoryPipelineOptions) (*Pipeline, error) {
data := r.buildPipelineBody(rpo)
urlStr := r.c.requestUrl("/repositories/%s/%s/pipelines_config", rpo.Owner, rpo.Repo_slug)
response, err := r.c.execute("PUT", urlStr, data)
if err != nil {
return nil, err
}
return decodePipelineRepository(response)
}
func (r *Repository) AddPipelineVariable(rpvo *RepositoryPipelineVariableOptions) (*PipelineVariable, error) {
data := r.buildPipelineVariableBody(rpvo)
urlStr := r.c.requestUrl("/repositories/%s/%s/pipelines_config/variables/", rpvo.Owner, rpvo.Repo_slug)
response, err := r.c.execute("POST", urlStr, data)
if err != nil {
return nil, err
}
return decodePipelineVariableRepository(response)
}
func (r *Repository) AddPipelineKeyPair(rpkpo *RepositoryPipelineKeyPairOptions) (*PipelineKeyPair, error) {
data := r.buildPipelineKeyPairBody(rpkpo)
urlStr := r.c.requestUrl("/repositories/%s/%s/pipelines_config/ssh/key_pair", rpkpo.Owner, rpkpo.Repo_slug)
response, err := r.c.execute("PUT", urlStr, data)
if err != nil {
return nil, err
}
return decodePipelineKeyPairRepository(response)
}
func (r *Repository) buildJsonBody(body map[string]interface{}) string {
data, err := json.Marshal(body)
if err != nil {
pp.Println(err)
os.Exit(9)
}
return string(data)
}
func (r *Repository) buildRepositoryBody(ro *RepositoryOptions) string {
body := map[string]interface{}{}
if ro.Scm != "" {
body["scm"] = ro.Scm
}
//if ro.Scm != "" {
// body["name"] = ro.Name
//}
if ro.Is_private != "" {
body["is_private"] = ro.Is_private
}
if ro.Description != "" {
body["description"] = ro.Description
}
if ro.Fork_policy != "" {
body["fork_policy"] = ro.Fork_policy
}
if ro.Language != "" {
body["language"] = ro.Language
}
if ro.Has_issues != "" {
body["has_issues"] = ro.Has_issues
}
if ro.Has_wiki != "" {
body["has_wiki"] = ro.Has_wiki
}
if ro.Project != "" {
body["project"] = map[string]string{
"key": ro.Project,
}
}
return r.buildJsonBody(body)
}
func (r *Repository) buildPipelineBody(rpo *RepositoryPipelineOptions) string {
body := map[string]interface{}{}
body["enabled"] = rpo.Enabled
return r.buildJsonBody(body)
}
func (r *Repository) buildPipelineVariableBody(rpvo *RepositoryPipelineVariableOptions) string {
body := map[string]interface{}{}
if rpvo.Uuid != "" {
body["uuid"] = rpvo.Uuid
}
body["key"] = rpvo.Key
body["value"] = rpvo.Value
body["secured"] = rpvo.Secured
return r.buildJsonBody(body)
}
func (r *Repository) buildPipelineKeyPairBody(rpkpo *RepositoryPipelineKeyPairOptions) string {
body := map[string]interface{}{}
if rpkpo.Private_key != "" {
body["private_key"] = rpkpo.Private_key
}
if rpkpo.Public_key != "" {
body["public_key"] = rpkpo.Public_key
}
return r.buildJsonBody(body)
}
func decodeRepository(repoResponse interface{}) (*Repository, error) {
repoMap := repoResponse.(map[string]interface{})
if repoMap["type"] == "error" {
return nil, DecodeError(repoMap)
}
var repository = new(Repository)
err := mapstructure.Decode(repoMap, repository)
if err != nil {
return nil, err
}
return repository, nil
}
func decodePipelineRepository(repoResponse interface{}) (*Pipeline, error) {
repoMap := repoResponse.(map[string]interface{})
if repoMap["type"] == "error" {
return nil, DecodeError(repoMap)
}
var pipeline = new(Pipeline)
err := mapstructure.Decode(repoMap, pipeline)
if err != nil {
return nil, err
}
return pipeline, nil
}
func decodePipelineVariableRepository(repoResponse interface{}) (*PipelineVariable, error) {
repoMap := repoResponse.(map[string]interface{})
if repoMap["type"] == "error" {
return nil, DecodeError(repoMap)
}
var pipelineVariable = new(PipelineVariable)
err := mapstructure.Decode(repoMap, pipelineVariable)
if err != nil {
return nil, err
}
return pipelineVariable, nil
}
func decodePipelineKeyPairRepository(repoResponse interface{}) (*PipelineKeyPair, error) {
repoMap := repoResponse.(map[string]interface{})
if repoMap["type"] == "error" {
return nil, DecodeError(repoMap)
}
var pipelineKeyPair = new(PipelineKeyPair)
err := mapstructure.Decode(repoMap, pipelineKeyPair)
if err != nil {
return nil, err
}
return pipelineKeyPair, nil
}