forked from ktrysmt/go-bitbucket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitbucket.go
564 lines (503 loc) · 18.6 KB
/
bitbucket.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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
package bitbucket
type users interface {
Get(username string) (*User, error)
Followers(username string) (interface{}, error)
Following(username string) (interface{}, error)
Repositories(username string) (interface{}, error)
}
type user interface {
Profile() (*User, error)
Emails() (interface{}, error)
}
type pullrequests interface {
Create(opt PullRequestsOptions) (interface{}, error)
Update(opt PullRequestsOptions) (interface{}, error)
List(opt PullRequestsOptions) (interface{}, error)
Get(opt PullRequestsOptions) (interface{}, error)
Activities(opt PullRequestsOptions) (interface{}, error)
Activity(opt PullRequestsOptions) (interface{}, error)
Commits(opt PullRequestsOptions) (interface{}, error)
Patch(opt PullRequestsOptions) (interface{}, error)
Diff(opt PullRequestsOptions) (interface{}, error)
Merge(opt PullRequestsOptions) (interface{}, error)
Decline(opt PullRequestsOptions) (interface{}, error)
}
type workspace interface {
GetProject(opt ProjectOptions) (*Project, error)
CreateProject(opt ProjectOptions) (*Project, error)
}
type issues interface {
Gets(io *IssuesOptions) (interface{}, error)
Get(io *IssuesOptions) (interface{}, error)
Delete(io *IssuesOptions) (interface{}, error)
Update(io *IssuesOptions) (interface{}, error)
Create(io *IssuesOptions) (interface{}, error)
GetVote(io *IssuesOptions) (bool, interface{}, error)
PutVote(io *IssuesOptions) error
DeleteVote(io *IssuesOptions) error
GetWatch(io *IssuesOptions) (bool, interface{}, error)
PutWatch(io *IssuesOptions) error
DeleteWatch(io *IssuesOptions) error
GetComments(ico *IssueCommentsOptions) (interface{}, error)
CreateComment(ico *IssueCommentsOptions) (interface{}, error)
GetComment(ico *IssueCommentsOptions) (interface{}, error)
UpdateComment(ico *IssueCommentsOptions) (interface{}, error)
DeleteComment(ico *IssueCommentsOptions) (interface{}, error)
GetChanges(ico *IssueChangesOptions) (interface{}, error)
CreateChange(ico *IssueChangesOptions) (interface{}, error)
GetChange(ico *IssueChangesOptions) (interface{}, error)
}
type repository interface {
Get(opt RepositoryOptions) (*Repository, error)
Create(opt RepositoryOptions) (*Repository, error)
Delete(opt RepositoryOptions) (interface{}, error)
ListWatchers(opt RepositoryOptions) (interface{}, error)
ListForks(opt RepositoryOptions) (interface{}, error)
ListDefaultReviewers(opt RepositoryOptions) (*DefaultReviewers, error)
GetDefaultReviewer(opt RepositoryDefaultReviewerOptions) (*DefaultReviewer, error)
AddDefaultReviewer(opt RepositoryDefaultReviewerOptions) (*DefaultReviewer, error)
DeleteDefaultReviewer(opt RepositoryDefaultReviewerOptions) (interface{}, error)
UpdatePipelineConfig(opt RepositoryPipelineOptions) (*Pipeline, error)
ListPipelineVariables(opt RepositoryPipelineVariablesOptions) (*PipelineVariables, error)
AddPipelineVariable(opt RepositoryPipelineVariableOptions) (*PipelineVariable, error)
DeletePipelineVariable(opt RepositoryPipelineVariableDeleteOptions) (interface{}, error)
AddPipelineKeyPair(opt RepositoryPipelineKeyPairOptions) (*PipelineKeyPair, error)
UpdatePipelineBuildNumber(opt RepositoryPipelineBuildNumberOptions) (*PipelineBuildNumber, error)
ListFiles(opt RepositoryFilesOptions) (*[]RepositoryFile, error)
GetFileBlob(opt RepositoryBlobOptions) (*RepositoryBlob, error)
ListBranches(opt RepositoryBranchOptions) (*RepositoryBranches, error)
BranchingModel(opt RepositoryBranchingModelOptions) (*BranchingModel, error)
ListEnvironments(opt RepositoryEnvironmentsOptions) (*Environments, error)
AddEnvironment(opt RepositoryEnvironmentOptions) (*Environment, error)
DeleteEnvironment(opt RepositoryEnvironmentDeleteOptions) (interface{}, error)
GetEnvironment(opt RepositoryEnvironmentOptions) (*Environment, error)
ListDeploymentVariables(opt RepositoryDeploymentVariablesOptions) (*DeploymentVariables, error)
AddDeploymentVariable(opt RepositoryDeploymentVariableOptions) (*DeploymentVariable, error)
DeleteDeploymentVariable(opt RepositoryDeploymentVariableDeleteOptions) (interface{}, error)
UpdateDeploymentVariable(opt RepositoryDeploymentVariableOptions) (*DeploymentVariable, error)
}
type repositories interface {
ListForAccount(opt RepositoriesOptions) (interface{}, error)
ListForTeam(opt RepositoriesOptions) (interface{}, error)
ListPublic() (interface{}, error)
}
type commits interface {
GetCommits(opt CommitsOptions) (interface{}, error)
GetCommit(opt CommitsOptions) (interface{}, error)
GetCommitComments(opt CommitsOptions) (interface{}, error)
GetCommitComment(opt CommitsOptions) (interface{}, error)
GetCommitStatus(opt CommitsOptions) (interface{}, error)
GiveApprove(opt CommitsOptions) (interface{}, error)
RemoveApprove(opt CommitsOptions) (interface{}, error)
CreateCommitStatus(cmo CommitsOptions, cso CommitStatusOptions) (interface{}, error)
}
type branchrestrictions interface {
Gets(opt BranchRestrictionsOptions) (interface{}, error)
Get(opt BranchRestrictionsOptions) (interface{}, error)
Create(opt BranchRestrictionsOptions) (interface{}, error)
Update(opt BranchRestrictionsOptions) (interface{}, error)
Delete(opt BranchRestrictionsOptions) (interface{}, error)
}
type diff interface {
GetDiff(opt DiffOptions) (interface{}, error)
GetPatch(opt DiffOptions) (interface{}, error)
}
type webhooks interface {
Gets(opt WebhooksOptions) (interface{}, error)
Get(opt WebhooksOptions) (interface{}, error)
Create(opt WebhooksOptions) (interface{}, error)
Update(opt WebhooksOptions) (interface{}, error)
Delete(opt WebhooksOptions) (interface{}, error)
}
type teams interface {
List(role string) (interface{}, error) // [WIP?] role=[admin|contributor|member]
Profile(teamname string) (interface{}, error)
Members(teamname string) (interface{}, error)
Followers(teamname string) (interface{}, error)
Following(teamname string) (interface{}, error)
Repositories(teamname string) (interface{}, error)
Projects(teamname string) (interface{}, error)
}
type pipelines interface {
List(po *PipelinesOptions) (interface{}, error)
Get(po *PipelinesOptions) (interface{}, error)
ListSteps(po *PipelinesOptions) (interface{}, error)
GetStep(po *PipelinesOptions) (interface{}, error)
GetLog(po *PipelinesOptions) (string, error)
}
type RepositoriesOptions struct {
Owner string `json:"owner"`
Role string `json:"role"` // role=[owner|admin|contributor|member]
Page *int `json:"page"`
Keyword *string `json:"keyword"`
}
type RepositoryOptions struct {
Uuid string `json:"uuid"`
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Scm string `json:"scm"`
// Name string `json:"name"`
IsPrivate string `json:"is_private"`
Description string `json:"description"`
ForkPolicy string `json:"fork_policy"`
Language string `json:"language"`
HasIssues string `json:"has_issues"`
HasWiki string `json:"has_wiki"`
Project string `json:"project"`
}
type RepositoryForkOptions struct {
FromOwner string `json:"from_owner"`
FromSlug string `json:"from_slug"`
Owner string `json:"owner"`
// TODO: does the API supports specifying slug on forks?
// see: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/forks#post
Name string `json:"name"`
IsPrivate string `json:"is_private"`
Description string `json:"description"`
ForkPolicy string `json:"fork_policy"`
Language string `json:"language"`
HasIssues string `json:"has_issues"`
HasWiki string `json:"has_wiki"`
Project string `json:"project"`
}
type RepositoryFilesOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Ref string `json:"ref"`
Path string `json:"path"`
MaxDepth int `json:"max_depth"`
}
type RepositoryBlobOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Ref string `json:"ref"`
Path string `json:"path"`
}
type File struct {
Path string
Name string
}
// Based on https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/src#post
type RepositoryBlobWriteOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
FilePath string `json:"filepath"`
FileName string `json:"filename"`
Files []File `json:"files"`
Author string `json:"author"`
Message string `json:"message"`
Branch string `json:"branch"`
}
// RepositoryRefOptions represents the options for describing a repository's refs (i.e.
// tags and branches). The field BranchFlg is a boolean that is indicates whether a specific
// RepositoryRefOptions instance is meant for Branch specific set of api methods.
type RepositoryRefOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Query string `json:"query"`
Sort string `json:"sort"`
PageNum int `json:"page"`
Pagelen int `json:"pagelen"`
MaxDepth int `json:"max_depth"`
Name string `json:"name"`
BranchFlg bool
}
type RepositoryBranchOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Query string `json:"query"`
Sort string `json:"sort"`
PageNum int `json:"page"`
Pagelen int `json:"pagelen"`
MaxDepth int `json:"max_depth"`
BranchName string `json:"branch_name"`
}
type RepositoryBranchCreationOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Name string `json:"name"`
Target RepositoryBranchTarget `json:"target"`
}
type RepositoryBranchDeleteOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
RepoUUID string `json:"uuid"`
RefName string `json:"name"`
RefUUID string `json:uuid`
}
type RepositoryBranchTarget struct {
Hash string `json:"hash"`
}
type RepositoryTagOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Query string `json:"q"`
Sort string `json:"sort"`
PageNum int `json:"page"`
Pagelen int `json:"pagelen"`
MaxDepth int `json:"max_depth"`
}
type RepositoryTagCreationOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Name string `json:"name"`
Target RepositoryTagTarget `json:"target"`
}
type RepositoryTagTarget struct {
Hash string `json:"hash"`
}
type PullRequestsOptions struct {
ID string `json:"id"`
CommentID string `json:"comment_id"`
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Title string `json:"title"`
Description string `json:"description"`
CloseSourceBranch bool `json:"close_source_branch"`
SourceBranch string `json:"source_branch"`
SourceRepository string `json:"source_repository"`
DestinationBranch string `json:"destination_branch"`
DestinationCommit string `json:"destination_repository"`
Message string `json:"message"`
Reviewers []string `json:"reviewers"`
States []string `json:"states"`
Query string `json:"query"`
Sort string `json:"sort"`
}
type PullRequestCommentOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
PullRequestID string `json:"id"`
Content string `json:"content"`
CommentId string `json:"-"`
}
type IssuesOptions struct {
ID string `json:"id"`
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
States []string `json:"states"`
Query string `json:"query"`
Sort string `json:"sort"`
Title string `json:"title"`
Content string `json:"content"`
State string `json:"state"`
Kind string `json:"kind"`
Milestone string `json:"milestone"`
Component string `json:"component"`
Priority string `json:"priority"`
Version string `json:"version"`
Assignee string `json:"assignee"`
}
type IssueCommentsOptions struct {
IssuesOptions
Query string `json:"query"`
Sort string `json:"sort"`
CommentContent string `json:"comment_content"`
CommentID string `json:"comment_id"`
}
type IssueChangesOptions struct {
IssuesOptions
Query string `json:"query"`
Sort string `json:"sort"`
Message string `json:"message"`
ChangeID string `json:"change_id"`
Changes []struct {
Type string
NewValue string
} `json:"changes"`
}
type CommitsOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Revision string `json:"revision"`
Branchortag string `json:"branchortag"`
Include string `json:"include"`
Exclude string `json:"exclude"`
CommentID string `json:"comment_id"`
Page *int `json:"page"`
}
type CommitStatusOptions struct {
Key string `json:"key"`
Url string `json:"url"`
State string `json:"state"`
Name string `json:"name"`
Description string `json:"description"`
}
type BranchRestrictionsOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
ID string `json:"id"`
Groups map[string]string `json:"groups"`
Pattern string `json:"pattern"`
Users []string `json:"users"`
Kind string `json:"kind"`
FullSlug string `json:"full_slug"`
Name string `json:"name"`
Value interface{} `json:"value"`
}
type DiffOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Spec string `json:"spec"`
}
type DiffStatOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Spec string `json:"spec"`
Whitespace bool `json:"ignore_whitespace"`
Merge bool `json:"merge"`
Path string `json:"path"`
Renames bool `json:"renames"`
PageNum int `json:"page"`
Pagelen int `json:"pagelen"`
MaxDepth int `json:"max_depth"`
Fields []string
}
type WebhooksOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Uuid string `json:"uuid"`
Description string `json:"description"`
Url string `json:"url"`
Active bool `json:"active"`
Events []string `json:"events"` // EX: {'repo:push','issue:created',..} REF: https://bit.ly/3FjRHHu
}
type RepositoryPipelineOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Enabled bool `json:"has_pipelines"`
}
type RepositoryDefaultReviewerOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Username string `json:"username"`
}
type RepositoryPipelineVariablesOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Query string `json:"q"`
Sort string `json:"sort"`
PageNum int `json:"page"`
Pagelen int `json:"pagelen"`
MaxDepth int `json:"max_depth"`
}
type RepositoryPipelineVariableOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Uuid string `json:"uuid"`
Key string `json:"key"`
Value string `json:"value"`
Secured bool `json:"secured"`
}
type RepositoryPipelineVariableDeleteOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Uuid string `json:"uuid"`
}
type RepositoryPipelineKeyPairOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
PrivateKey string `json:"private_key"`
PublicKey string `json:"public_key"`
}
type RepositoryPipelineBuildNumberOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Next int `json:"next"`
}
type RepositoryBranchingModelOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
}
type DownloadsOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
FilePath string `json:"filepath"`
FileName string `json:"filename"`
Files []File `json:"files"`
}
type PageRes struct {
Page int32 `json:"page"`
PageLen int32 `json:"pagelen"`
MaxDepth int32 `json:"max_depth"`
Size int32 `json:"size"`
}
type PipelinesOptions struct {
Owner string `json:"owner"`
Page int `json:"page"`
RepoSlug string `json:"repo_slug"`
Query string `json:"query"`
Sort string `json:"sort"`
IDOrUuid string `json:"ID"`
StepUuid string `json:"StepUUID"`
}
type RepositoryEnvironmentsOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
}
type RepositoryGroupPermissionsOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Group string `json:"group"`
Permission string `json:"permission"`
}
type RepositoryUserPermissionsOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
User string `json:"user"`
Permission string `json:"permission"`
}
type RepositoryEnvironmentTypeOption int
const (
Test RepositoryEnvironmentTypeOption = iota
Staging
Production
)
func (e RepositoryEnvironmentTypeOption) String() string {
return [...]string{"Test", "Staging", "Production"}[e]
}
type RepositoryEnvironmentOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Uuid string `json:"uuid"`
Name string `json:"name"`
EnvironmentType RepositoryEnvironmentTypeOption `json:"environment_type"`
Rank int `json:"rank"`
}
type RepositoryEnvironmentDeleteOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Uuid string `json:"uuid"`
}
type RepositoryDeploymentVariablesOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Environment *Environment `json:"environment"`
Query string `json:"q"`
Sort string `json:"sort"`
PageNum int `json:"page"`
Pagelen int `json:"pagelen"`
MaxDepth int `json:"max_depth"`
}
type RepositoryDeploymentVariableOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Environment *Environment `json:"environment"`
Uuid string `json:"uuid"`
Key string `json:"key"`
Value string `json:"value"`
Secured bool `json:"secured"`
}
type RepositoryDeploymentVariableDeleteOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Environment *Environment `json:"environment"`
Uuid string `json:"uuid"`
}
type DeployKeyOptions struct {
Owner string `json:"owner"`
RepoSlug string `json:"repo_slug"`
Id int `json:"id"`
Label string `json:"label"`
Key string `json:"key"`
}