-
Notifications
You must be signed in to change notification settings - Fork 0
/
remote.go
482 lines (437 loc) · 11.6 KB
/
remote.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
package gogh
import (
"context"
"errors"
"fmt"
"net/url"
"path"
"strings"
"github.com/kyoh86/gogh/v2/internal/github"
"github.com/kyoh86/gogh/v2/internal/githubv4"
)
const DefaultHost = "github.com"
type RemoteController struct {
adaptor github.Adaptor
}
func NewRemoteController(adaptor github.Adaptor) *RemoteController {
return &RemoteController{
adaptor: adaptor,
}
}
func parseSpec(repo *github.Repository) (Spec, error) {
rawURL := strings.TrimSuffix(repo.GetCloneURL(), ".git")
u, err := url.Parse(rawURL)
if err != nil {
return Spec{}, fmt.Errorf("parse clone-url %q: %w", rawURL, err)
}
owner, name := path.Split(u.Path)
return NewSpec(u.Host, strings.TrimLeft(strings.TrimRight(owner, "/"), "/"), name)
}
func ingestRepository(repo *github.Repository) (Repository, error) {
var parentSpec *Spec
if parent := repo.GetParent(); parent != nil {
spec, err := parseSpec(parent)
if err != nil {
return Repository{}, fmt.Errorf("parse parent repository as local spec: %w", err)
}
parentSpec = &spec
}
spec, err := parseSpec(repo)
if err != nil {
return Repository{}, fmt.Errorf("parse repository as local spec: %w", err)
}
return Repository{
Spec: spec,
URL: strings.TrimSuffix(repo.GetCloneURL(), ".git"),
Description: repo.GetDescription(),
Homepage: repo.GetHomepage(),
Language: repo.GetLanguage(),
UpdatedAt: repo.GetUpdatedAt().Time,
Archived: repo.GetArchived(),
Private: repo.GetPrivate(),
IsTemplate: repo.GetIsTemplate(),
Fork: repo.GetFork(),
Parent: parentSpec,
}, nil
}
const (
RepositoryListMaxLimitPerPage = 100
)
type RepositoryRelation string
const (
RepositoryRelationOwner = RepositoryRelation("owner")
RepositoryRelationOrganizationMember = RepositoryRelation("organizationMember")
RepositoryRelationCollaborator = RepositoryRelation("collaborator")
)
var AllRepositoryRelation = []RepositoryRelation{
RepositoryRelationOwner,
RepositoryRelationOrganizationMember,
RepositoryRelationCollaborator,
}
func (r RepositoryRelation) String() string {
return string(r)
}
type RepositoryOrderField = githubv4.RepositoryOrderField
var AllRepositoryOrderField = []githubv4.RepositoryOrderField{
githubv4.RepositoryOrderFieldCreatedAt,
githubv4.RepositoryOrderFieldName,
githubv4.RepositoryOrderFieldPushedAt,
githubv4.RepositoryOrderFieldStargazers,
githubv4.RepositoryOrderFieldUpdatedAt,
}
type OrderDirection = githubv4.OrderDirection
var AllOrderDirection = []githubv4.OrderDirection{
githubv4.OrderDirectionAsc,
githubv4.OrderDirectionDesc,
}
type RemoteListOption struct {
Private *bool
IsFork *bool
IsArchived *bool
Order OrderDirection
Sort RepositoryOrderField
Relation []RepositoryRelation
Limit int
}
func (o *RemoteListOption) GetOptions() *github.RepositoryListOptions {
owner := github.RepositoryAffiliationOwner
if o == nil {
return &github.RepositoryListOptions{
OrderBy: github.RepositoryOrder{
Field: github.RepositoryOrderFieldUpdatedAt,
Direction: githubv4.OrderDirectionDesc,
},
Limit: RepositoryListMaxLimitPerPage,
OwnerAffiliations: []github.RepositoryAffiliation{owner},
}
}
opt := &github.RepositoryListOptions{
IsFork: o.IsFork,
IsArchived: o.IsArchived,
}
if o.Sort == "" {
opt.OrderBy = github.RepositoryOrder{
Field: github.RepositoryOrderFieldUpdatedAt,
Direction: githubv4.OrderDirectionDesc,
}
} else {
opt.OrderBy = github.RepositoryOrder{
Field: o.Sort,
}
if o.Order == "" {
if opt.OrderBy.Field == github.RepositoryOrderFieldName {
opt.OrderBy.Direction = github.OrderDirectionAsc
} else {
opt.OrderBy.Direction = github.OrderDirectionDesc
}
} else {
opt.OrderBy.Direction = o.Order
}
}
if o.Limit == 0 {
opt.Limit = RepositoryListMaxLimitPerPage
} else {
opt.Limit = o.Limit
}
if len(o.Relation) == 0 {
opt.OwnerAffiliations = []github.RepositoryAffiliation{owner}
} else {
member := github.RepositoryAffiliationOrganizationMember
collabo := github.RepositoryAffiliationCollaborator
for _, r := range o.Relation {
switch r {
case RepositoryRelationOwner:
opt.OwnerAffiliations = append(opt.OwnerAffiliations, owner)
case RepositoryRelationOrganizationMember:
opt.OwnerAffiliations = append(opt.OwnerAffiliations, member)
case RepositoryRelationCollaborator:
opt.OwnerAffiliations = append(opt.OwnerAffiliations, collabo)
}
}
}
if o.Private != nil {
if *o.Private {
private := github.RepositoryPrivacyPrivate
opt.Privacy = private
} else {
public := github.RepositoryPrivacyPublic
opt.Privacy = public
}
}
return opt
}
func (c *RemoteController) Me(
ctx context.Context,
) (string, error) {
user, err := c.adaptor.GetMe(ctx)
if err != nil {
return "", fmt.Errorf("get a user: %w", err)
}
return user, nil
}
func (c *RemoteController) List(
ctx context.Context,
option *RemoteListOption,
) (allSpecs []Repository, _ error) {
sch, ech := c.ListAsync(ctx, option)
for {
select {
case spec, more := <-sch:
if !more {
return
}
allSpecs = append(allSpecs, spec)
case err := <-ech:
if err != nil {
return nil, err
}
case <-ctx.Done():
if err := ctx.Err(); err != nil {
return nil, err
}
}
}
}
func ingestRepositoryFragment(
host string,
repo *github.RepositoryFragment,
) (ret Repository, _ error) {
ret.URL = repo.Url
ret.IsTemplate = repo.IsTemplate
ret.Archived = repo.IsArchived
ret.Private = repo.IsPrivate
ret.Fork = repo.IsFork
spec, err := NewSpec(host, repo.Owner.GetLogin(), repo.Name)
if err != nil {
return Repository{}, err
}
ret.Spec = spec
ret.Description = repo.Description
ret.Homepage = repo.HomepageUrl
ret.Language = repo.PrimaryLanguage.Name
ret.UpdatedAt = repo.UpdatedAt
if repo.Parent.Owner != nil && repo.Parent.Name != "" {
parent, err := NewSpec(host, repo.Parent.Owner.GetLogin(), repo.Parent.Name)
if err != nil {
return Repository{}, err
}
ret.Parent = &parent
}
return ret, nil
}
var errOverLimit = errors.New("over limit")
func (c *RemoteController) repoListSpecList(
repos []*github.RepositoryFragment,
count *int,
limit int,
ch chan<- Repository,
) error {
for _, repo := range repos {
if limit > 0 && limit <= *count {
return errOverLimit
}
spec, err := ingestRepositoryFragment(c.adaptor.GetHost(), repo)
if err != nil {
return err
}
ch <- spec
*count++
}
return nil
}
func ptr[T any](v T) *T {
return &v
}
func (c *RemoteController) ListAsync(
ctx context.Context,
option *RemoteListOption,
) (<-chan Repository, <-chan error) {
opt := option.GetOptions()
sch := make(chan Repository, 1)
ech := make(chan error, 1)
go func() {
defer close(sch)
defer close(ech)
var count int
var limit int
switch {
case opt.Limit == 0:
limit = 0
opt.Limit = RepositoryListMaxLimitPerPage
case opt.Limit > RepositoryListMaxLimitPerPage:
limit = opt.Limit
opt.Limit = RepositoryListMaxLimitPerPage
default:
limit = opt.Limit
}
for {
repos, page, err := c.adaptor.RepositoryList(ctx, opt)
if err != nil {
ech <- err
return
}
if err := c.repoListSpecList(repos, &count, limit, sch); err != nil {
if errors.Is(err, errOverLimit) {
return
}
ech <- err
return
}
if !page.HasNextPage {
return
}
opt.After = page.EndCursor
}
}()
return sch, ech
}
type RemoteCreateOption struct {
Description string
Homepage string
Organization string
LicenseTemplate string
GitignoreTemplate string
TeamID int64
DisableDownloads bool
IsTemplate bool
Private bool
DisableWiki bool
AutoInit bool
DisableProjects bool
DisableIssues bool
PreventSquashMerge bool
PreventMergeCommit bool
PreventRebaseMerge bool
DeleteBranchOnMerge bool
}
func (o *RemoteCreateOption) buildRepository(name string) *github.Repository {
if o == nil {
return &github.Repository{Name: &name}
}
return &github.Repository{
Name: stringPtr(name),
Description: stringPtr(o.Description),
Homepage: stringPtr(o.Homepage),
Private: boolPtr(o.Private),
HasIssues: falsePtr(o.DisableIssues),
HasProjects: falsePtr(o.DisableProjects),
HasWiki: falsePtr(o.DisableWiki),
HasDownloads: falsePtr(o.DisableDownloads),
IsTemplate: boolPtr(o.IsTemplate),
TeamID: int64Ptr(o.TeamID),
AutoInit: boolPtr(o.AutoInit),
GitignoreTemplate: stringPtr(o.GitignoreTemplate),
LicenseTemplate: stringPtr(o.LicenseTemplate),
AllowSquashMerge: falsePtr(o.PreventSquashMerge),
AllowMergeCommit: falsePtr(o.PreventMergeCommit),
AllowRebaseMerge: falsePtr(o.PreventRebaseMerge),
DeleteBranchOnMerge: boolPtr(o.DeleteBranchOnMerge),
}
}
func (o *RemoteCreateOption) GetOrganization() string {
if o == nil {
return ""
}
return o.Organization
}
func (c *RemoteController) Create(
ctx context.Context,
name string,
option *RemoteCreateOption,
) (Repository, error) {
repo, _, err := c.adaptor.RepositoryCreate(
ctx,
option.GetOrganization(),
option.buildRepository(name),
)
if err != nil {
return Repository{}, fmt.Errorf("create a repository: %w", err)
}
return ingestRepository(repo)
}
type RemoteCreateFromTemplateOption struct {
Owner string `json:"owner,omitempty"`
Description string `json:"description,omitempty"`
Private bool `json:"private,omitempty"`
}
func (o *RemoteCreateFromTemplateOption) buildTemplateRepoRequest(
name string,
) *github.TemplateRepoRequest {
if o == nil {
return &github.TemplateRepoRequest{Name: &name}
}
return &github.TemplateRepoRequest{
Name: stringPtr(name),
Owner: stringPtr(o.Owner),
Description: stringPtr(o.Description),
Private: falsePtr(o.Private),
}
}
func (c *RemoteController) CreateFromTemplate(
ctx context.Context,
templateOwner, templateName, name string,
option *RemoteCreateFromTemplateOption,
) (Repository, error) {
repo, _, err := c.adaptor.RepositoryCreateFromTemplate(
ctx,
templateOwner,
templateName,
option.buildTemplateRepoRequest(name),
)
if err != nil {
return Repository{}, fmt.Errorf("create a repository from template: %w", err)
}
return ingestRepository(repo)
}
type RemoteForkOption struct {
// Organization is the name of the organization that owns the repository.
Organization string
}
func (o *RemoteForkOption) GetOptions() *github.RepositoryCreateForkOptions {
if o == nil {
return nil
}
return &github.RepositoryCreateForkOptions{
Organization: o.Organization,
}
}
func (c *RemoteController) Fork(
ctx context.Context,
owner string,
name string,
option *RemoteForkOption,
) (Repository, error) {
repo, _, err := c.adaptor.RepositoryCreateFork(ctx, owner, name, option.GetOptions())
if err != nil {
var acc *github.AcceptedError
if !errors.As(err, &acc) {
return Repository{}, fmt.Errorf("fork a repository: %w", err)
}
}
return ingestRepository(repo)
}
type RemoteGetOption struct{}
func (c *RemoteController) Get(
ctx context.Context,
owner string,
name string,
_ *RemoteGetOption,
) (Repository, error) {
repo, _, err := c.adaptor.RepositoryGet(ctx, owner, name)
if err != nil {
return Repository{}, fmt.Errorf("get a repository: %w", err)
}
return ingestRepository(repo)
}
type RemoteDeleteOption struct{}
func (c *RemoteController) Delete(
ctx context.Context,
owner string,
name string,
_ *RemoteDeleteOption,
) error {
if _, err := c.adaptor.RepositoryDelete(ctx, owner, name); err != nil {
return fmt.Errorf("delete a repository: %w", err)
}
return nil
}