-
Notifications
You must be signed in to change notification settings - Fork 13
/
repository.go
400 lines (362 loc) · 10.7 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
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
package opslevel
import (
"fmt"
"github.com/relvacode/iso8601"
)
type Language struct {
Name string
Usage float32
}
// Lightweight Repository struct used to make some API calls return less data
type RepositoryId struct {
Id ID
DefaultAlias string
}
type Repository struct {
ArchivedAt iso8601.Time
CreatedOn iso8601.Time
DefaultAlias string
DefaultBranch string
Description string
Forked bool
HtmlUrl string
Id ID
Languages []Language
LastOwnerChangedAt iso8601.Time
Name string
Organization string
Owner TeamId
Private bool
RepoKey string
Services *RepositoryServiceConnection
Tags *RepositoryTagConnection
Tier Tier
Type string
Url string
Visible bool
}
type RepositoryUpdateInput struct {
Id ID `json:"id"`
Owner *ID `json:"ownerId,omitempty"`
}
type RepositoryPath struct {
Href string
Path string
}
type ServiceRepository struct {
BaseDirectory string
DisplayName string
Id ID
Repository RepositoryId
Service ServiceId
}
type RepositoryConnection struct {
HiddenCount int
Nodes []Repository
OrganizationCount int
OwnedCount int
PageInfo PageInfo
TotalCount int
VisibleCount int
}
type RepositoryServiceEdge struct {
AtRoot bool
Node ServiceId
Paths []RepositoryPath
ServiceRepositories []ServiceRepository
}
type RepositoryServiceConnection struct {
Edges []RepositoryServiceEdge
PageInfo PageInfo
TotalCount int
}
type ServiceRepositoryEdge struct {
Node RepositoryId
ServiceRepositories []ServiceRepository
}
type ServiceRepositoryConnection struct {
Edges []ServiceRepositoryEdge
PageInfo PageInfo
TotalCount int
}
type RepositoryTagConnection struct {
Nodes []Tag
PageInfo PageInfo
TotalCount int
}
type ServiceRepositoryCreateInput struct {
Service IdentifierInput `json:"service"`
Repository IdentifierInput `json:"repository"`
BaseDirectory string `json:"baseDirectory"`
DisplayName string `json:"displayName,omitempty"`
}
type ServiceRepositoryUpdateInput struct {
Id ID `json:"id"`
BaseDirectory string `json:"baseDirectory,omitempty"`
DisplayName string `json:"displayName,omitempty"`
}
func (r *Repository) GetService(service ID, directory string) *ServiceRepository {
for _, edge := range r.Services.Edges {
for _, connection := range edge.ServiceRepositories {
if connection.Service.Id == service && connection.BaseDirectory == directory {
return &connection
}
}
}
return nil
}
func (r *Repository) Hydrate(client *Client) error {
if r.Services == nil {
r.Services = &RepositoryServiceConnection{}
}
if r.Services.PageInfo.HasNextPage {
variables := client.InitialPageVariablesPointer()
(*variables)["after"] = r.Services.PageInfo.End
_, err := r.GetServices(client, variables)
if err != nil {
return err
}
}
if r.Tags == nil {
r.Tags = &RepositoryTagConnection{}
}
if r.Tags.PageInfo.HasNextPage {
variables := client.InitialPageVariablesPointer()
(*variables)["after"] = r.Tags.PageInfo.End
_, err := r.GetTags(client, variables)
if err != nil {
return err
}
}
return nil
}
func (r *Repository) GetServices(client *Client, variables *PayloadVariables) (*RepositoryServiceConnection, error) {
var q struct {
Account struct {
Repository struct {
Services RepositoryServiceConnection `graphql:"services(after: $after, first: $first)"`
} `graphql:"repository(id: $id)"`
}
}
if r.Id == "" {
return nil, fmt.Errorf("Unable to get Services, invalid repository id: '%s'", r.Id)
}
if variables == nil {
variables = client.InitialPageVariablesPointer()
}
(*variables)["id"] = r.Id
if err := client.Query(&q, *variables, WithName("RepositoryServicesList")); err != nil {
return nil, err
}
if r.Services == nil {
r.Services = &RepositoryServiceConnection{}
}
r.Services.Edges = append(r.Services.Edges, q.Account.Repository.Services.Edges...)
r.Services.PageInfo = q.Account.Repository.Services.PageInfo
r.Services.TotalCount += q.Account.Repository.Services.TotalCount
for r.Services.PageInfo.HasNextPage {
(*variables)["after"] = r.Services.PageInfo.End
_, err := r.GetServices(client, variables)
if err != nil {
return nil, err
}
}
return r.Services, nil
}
func (r *Repository) GetTags(client *Client, variables *PayloadVariables) (*RepositoryTagConnection, error) {
var q struct {
Account struct {
Repository struct {
Tags RepositoryTagConnection `graphql:"tags(after: $after, first: $first)"`
} `graphql:"repository(id: $id)"`
}
}
if r.Id == "" {
return nil, fmt.Errorf("Unable to get Tags, invalid repository id: '%s'", r.Id)
}
if variables == nil {
variables = client.InitialPageVariablesPointer()
}
(*variables)["id"] = r.Id
if err := client.Query(&q, *variables, WithName("RepositoryTagsList")); err != nil {
return nil, err
}
if r.Tags == nil {
r.Tags = &RepositoryTagConnection{}
}
r.Tags.Nodes = append(r.Tags.Nodes, q.Account.Repository.Tags.Nodes...)
r.Tags.PageInfo = q.Account.Repository.Tags.PageInfo
r.Tags.TotalCount += q.Account.Repository.Tags.TotalCount
for r.Tags.PageInfo.HasNextPage {
(*variables)["after"] = r.Tags.PageInfo.End
_, err := r.GetTags(client, variables)
if err != nil {
return nil, err
}
}
return r.Tags, nil
}
//#region Create
func (client *Client) ConnectServiceRepository(service *ServiceId, repository *Repository) (*ServiceRepository, error) {
input := ServiceRepositoryCreateInput{
Service: IdentifierInput{Id: service.Id},
Repository: IdentifierInput{Id: repository.Id},
BaseDirectory: "/",
DisplayName: fmt.Sprintf("%s/%s", repository.Organization, repository.Name),
}
return client.CreateServiceRepository(input)
}
func (client *Client) CreateServiceRepository(input ServiceRepositoryCreateInput) (*ServiceRepository, error) {
var m struct {
Payload struct {
ServiceRepository ServiceRepository
Errors []OpsLevelErrors
} `graphql:"serviceRepositoryCreate(input: $input)"`
}
v := PayloadVariables{
"input": input,
}
err := client.Mutate(&m, v, WithName("ServiceRepositoryCreate"))
return &m.Payload.ServiceRepository, HandleErrors(err, m.Payload.Errors)
}
//#endregion
//#region Retrieve
func (client *Client) GetRepositoryWithAlias(alias string) (*Repository, error) {
var q struct {
Account struct {
Repository Repository `graphql:"repository(alias: $repo)"`
}
}
v := PayloadVariables{
"repo": alias,
}
if err := client.Query(&q, v, WithName("RepositoryGet")); err != nil {
return nil, err
}
if err := q.Account.Repository.Hydrate(client); err != nil {
return &q.Account.Repository, err
}
return &q.Account.Repository, nil
}
func (client *Client) GetRepository(id ID) (*Repository, error) {
var q struct {
Account struct {
Repository Repository `graphql:"repository(id: $repo)"`
}
}
v := PayloadVariables{
"repo": id,
}
if err := client.Query(&q, v, WithName("RepositoryGet")); err != nil {
return nil, err
}
if err := q.Account.Repository.Hydrate(client); err != nil {
return &q.Account.Repository, err
}
return &q.Account.Repository, nil
}
func (client *Client) ListRepositories(variables *PayloadVariables) (*RepositoryConnection, error) {
var q struct {
Account struct {
Repositories RepositoryConnection `graphql:"repositories(after: $after, first: $first)"`
}
}
if variables == nil {
variables = client.InitialPageVariablesPointer()
}
if err := client.Query(&q, *variables, WithName("RepositoryList")); err != nil {
return &q.Account.Repositories, err
}
for q.Account.Repositories.PageInfo.HasNextPage {
(*variables)["after"] = q.Account.Repositories.PageInfo.End
resp, err := client.ListRepositories(variables)
if err != nil {
return &RepositoryConnection{}, err
}
for _, node := range resp.Nodes {
err := node.Hydrate(client)
if err != nil {
return &RepositoryConnection{}, err
}
q.Account.Repositories.Nodes = append(q.Account.Repositories.Nodes, node)
}
q.Account.Repositories.PageInfo = resp.PageInfo
q.Account.Repositories.TotalCount += resp.TotalCount
}
return &q.Account.Repositories, nil
}
func (client *Client) ListRepositoriesWithTier(tier string, variables *PayloadVariables) (*RepositoryConnection, error) {
var q struct {
Account struct {
Repositories RepositoryConnection `graphql:"repositories(tierAlias: $tier, after: $after, first: $first)"`
}
}
if variables == nil {
variables = client.InitialPageVariablesPointer()
}
(*variables)["tier"] = tier
if err := client.Query(&q, *variables, WithName("RepositoryListWithTier")); err != nil {
return &q.Account.Repositories, err
}
for q.Account.Repositories.PageInfo.HasNextPage {
(*variables)["after"] = q.Account.Repositories.PageInfo.End
resp, err := client.ListRepositoriesWithTier(tier, variables)
if err != nil {
return &RepositoryConnection{}, err
}
for _, node := range resp.Nodes {
err := node.Hydrate(client)
if err != nil {
return &RepositoryConnection{}, err
}
q.Account.Repositories.Nodes = append(q.Account.Repositories.Nodes, node)
}
q.Account.Repositories.PageInfo = resp.PageInfo
q.Account.Repositories.TotalCount += resp.TotalCount
}
return &q.Account.Repositories, nil
}
//#endregion
//#region Update
func (client *Client) UpdateRepository(input RepositoryUpdateInput) (*Repository, error) {
var m struct {
Payload struct {
Repository Repository
Errors []OpsLevelErrors
} `graphql:"repositoryUpdate(input: $input)"`
}
v := PayloadVariables{
"input": input,
}
err := client.Mutate(&m, v, WithName("RepositoryUpdate"))
return &m.Payload.Repository, HandleErrors(err, m.Payload.Errors)
}
func (client *Client) UpdateServiceRepository(input ServiceRepositoryUpdateInput) (*ServiceRepository, error) {
var m struct {
Payload struct {
ServiceRepository ServiceRepository
Errors []OpsLevelErrors
} `graphql:"serviceRepositoryUpdate(input: $input)"`
}
v := PayloadVariables{
"input": input,
}
err := client.Mutate(&m, v, WithName("ServiceRepositoryUpdate"))
return &m.Payload.ServiceRepository, HandleErrors(err, m.Payload.Errors)
}
//#endregion
//#region Delete
func (client *Client) DeleteServiceRepository(id ID) error {
var m struct {
Payload struct {
Id ID `graphql:"deletedId"`
Errors []OpsLevelErrors
} `graphql:"serviceRepositoryDelete(input: $input)"`
}
v := PayloadVariables{
"input": DeleteInput{Id: id},
}
err := client.Mutate(&m, v, WithName("ServiceRepositoryDelete"))
return HandleErrors(err, m.Payload.Errors)
}
//#endregion