-
Notifications
You must be signed in to change notification settings - Fork 4
/
gitea.go
1076 lines (866 loc) · 28.4 KB
/
gitea.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
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package githosts
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"slices"
"strconv"
"strings"
"time"
"gitlab.com/tozd/go/errors"
"github.com/hashicorp/go-retryablehttp"
"github.com/peterhellberg/link"
)
const (
giteaUsersPerPageDefault = 20
giteaUsersLimit = -1
giteaOrganizationsPerPageDefault = 20
giteaOrganizationsLimit = -1
giteaReposPerPageDefault = 20
giteaReposLimit = -1
giteaEnvVarAPIUrl = "GITEA_APIURL"
giteaMatchByExact = "exact"
giteaMatchByIfDefined = "anyDefined"
giteaProviderName = "Gitea"
txtNext = "next"
)
type NewGiteaHostInput struct {
Caller string
HTTPClient *retryablehttp.Client
APIURL string
DiffRemoteMethod string
BackupDir string
Token string
Orgs []string
BackupsToRetain int
LogLevel int
}
type GiteaHost struct {
Caller string
httpClient *retryablehttp.Client
APIURL string
DiffRemoteMethod string
BackupDir string
BackupsToRetain int
Token string
Orgs []string
LogLevel int
}
func NewGiteaHost(input NewGiteaHostInput) (*GiteaHost, error) {
setLoggerPrefix(input.Caller)
if input.APIURL == "" {
return nil, fmt.Errorf("%s API URL missing", giteaProviderName)
}
diffRemoteMethod, err := getDiffRemoteMethod(input.DiffRemoteMethod)
if err != nil {
return nil, err
}
if diffRemoteMethod == "" {
logger.Print("using default diff remote method: " + defaultRemoteMethod)
diffRemoteMethod = defaultRemoteMethod
} else {
logger.Print("using diff remote method: " + diffRemoteMethod)
}
httpClient := input.HTTPClient
if httpClient == nil {
httpClient = getHTTPClient()
}
return &GiteaHost{
httpClient: httpClient,
APIURL: input.APIURL,
DiffRemoteMethod: diffRemoteMethod,
BackupDir: input.BackupDir,
BackupsToRetain: input.BackupsToRetain,
Token: input.Token,
Orgs: input.Orgs,
LogLevel: input.LogLevel,
}, nil
}
type giteaUser struct {
ID int `json:"id"`
Login string `json:"login"`
LoginName string `json:"login_name"`
FullName string `json:"full_name"`
Email string `json:"email"`
Username string `json:"username"`
}
type giteaOrganization struct {
ID int `json:"id"`
Name string `json:"name"`
FullName string `json:"full_name"`
AvatarURL string `json:"avatar_url"`
Description string `json:"description"`
Website string `json:"website"`
Location string `json:"location"`
Visibility string `json:"visibility"`
RepoAdminChangeTeamAcces bool `json:"repo_admin_change_team_access"`
Username string `json:"username"`
}
type (
giteaGetUsersResponse []giteaUser
giteaGetOrganizationsResponse []giteaOrganization
)
func (g *GiteaHost) makeGiteaRequest(reqUrl string) (*http.Response, []byte, error) {
ctx, cancel := context.WithTimeout(context.Background(), defaultHttpRequestTimeout)
defer cancel()
req, err := retryablehttp.NewRequestWithContext(ctx, http.MethodGet, reqUrl, nil)
if err != nil {
return nil, nil, fmt.Errorf("failed to request %s: %w", reqUrl, err)
}
req.Header.Set("Authorization", "token "+g.Token)
req.Header.Set("Content-Type", contentTypeApplicationJSON)
req.Header.Set("Accept", contentTypeApplicationJSON)
resp, err := g.httpClient.Do(req)
if err != nil {
return nil, nil, fmt.Errorf("failed to request %s: %w", reqUrl, err)
}
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, nil, fmt.Errorf("failed to read response body: %w", err)
}
body = bytes.ReplaceAll(body, []byte("\r"), []byte("\r\n"))
_ = resp.Body.Close()
return resp, body, err
}
type repoExistsInput struct {
matchBy string // anyDefined, allDefined, exact
repos []repository
name string
owner string
pathWithNamespace string
domain string
httpsUrl string
sshUrl string
urlWithToken string
urlWithBasicAuth string
logLevel int
}
type userExistsInput struct {
matchBy string // anyDefined, allDefined, exact
users []giteaUser
id int
login string
loginName string
email string
fullName string
}
type organizationExistsInput struct {
matchBy string // anyDefined, allDefined, exact
organizations []giteaOrganization
name string
fullName string
}
func repoExists(in repoExistsInput) bool {
switch in.matchBy {
case giteaMatchByExact:
if in.logLevel > 0 {
logger.Printf("matchBy %s", giteaMatchByExact)
}
case giteaMatchByIfDefined:
if in.logLevel > 0 {
logger.Printf("matchBy %s", giteaMatchByExact)
}
case "":
if in.logLevel > 0 {
logger.Printf("matchBy not defined")
}
return false
default:
logger.Printf("unexpected matchBy value %s", in.matchBy)
return false
}
if in.matchBy == "" {
if in.logLevel > 0 {
logger.Printf("matchBy not defined, defaulting to %s", giteaMatchByExact)
}
}
if len(in.repos) == 0 {
return false
}
for _, r := range in.repos {
nameMatch := in.name == r.Name
ownerMatch := in.owner == r.Owner
domainMatch := in.domain == r.Domain
cloneUrlMatch := in.httpsUrl == r.HTTPSUrl
sshUrlMatch := in.sshUrl == r.SSHUrl
urlWithTokenMatch := in.urlWithToken == r.URLWithToken
urlWithBasicAuthMatch := in.urlWithBasicAuth == r.URLWithBasicAuth
pathWithNamespaceMatch := in.pathWithNamespace == r.PathWithNameSpace
switch in.matchBy {
case giteaMatchByExact:
if allTrue(nameMatch, domainMatch, ownerMatch, cloneUrlMatch, sshUrlMatch, urlWithTokenMatch,
urlWithBasicAuthMatch, pathWithNamespaceMatch) {
return true
}
continue
case giteaMatchByIfDefined:
anyDefined := in.name != "" || in.domain != "" || in.owner != "" || in.httpsUrl != "" || in.sshUrl != ""
switch {
case in.name != "" && !nameMatch:
continue
case in.domain != "" && !domainMatch:
continue
case in.owner != "" && !ownerMatch:
continue
case in.httpsUrl != "" && !cloneUrlMatch:
continue
case in.sshUrl != "" && !sshUrlMatch:
continue
case in.urlWithToken != "" && !urlWithTokenMatch:
continue
case in.urlWithBasicAuth != "" && !urlWithBasicAuthMatch:
continue
case in.pathWithNamespace != "" && !pathWithNamespaceMatch:
continue
default:
if anyDefined {
return true
}
continue
}
}
}
return false
}
func userExists(in userExistsInput) bool {
for _, u := range in.users {
loginMatch := in.login == u.Login
idMatch := in.id == u.ID
loginNameMatch := in.loginName == u.LoginName
emailMatch := in.email == u.Email
fullNameMatch := in.fullName == u.FullName
switch in.matchBy {
case giteaMatchByExact:
if allTrue(loginMatch, loginNameMatch, idMatch, emailMatch, fullNameMatch) {
return true
}
continue
case giteaMatchByIfDefined:
anyDefined := in.login != "" || in.id != 0 || in.loginName != "" || in.email != "" || in.fullName != ""
switch {
case in.login != "" && !loginMatch:
continue
case in.id != 0 && !idMatch:
continue
case in.loginName != "" && !loginNameMatch:
continue
case in.email != "" && !emailMatch:
continue
case in.fullName != "" && !fullNameMatch:
continue
default:
if anyDefined {
return true
}
continue
}
}
}
return false
}
func organisationExists(in organizationExistsInput) bool {
for _, o := range in.organizations {
nameMatch := in.name == o.Name
fullNameMatch := in.fullName == o.FullName
switch in.matchBy {
case giteaMatchByExact:
if allTrue(nameMatch, fullNameMatch) {
return true
}
continue
case giteaMatchByIfDefined:
switch {
case in.name != "" && !nameMatch:
continue
case in.fullName != "" && !fullNameMatch:
continue
}
return true
}
}
return false
}
func (g *GiteaHost) describeRepos() (describeReposOutput, errors.E) {
logger.Println("listing repositories")
userRepos, err := g.getAllUserRepositories()
if err != nil {
return describeReposOutput{}, errors.Errorf("failed to get user repositories: %s", err)
}
orgs, err := g.getOrganizations()
if err != nil {
return describeReposOutput{}, errors.Errorf("failed to get organizations: %s", err)
}
var orgsRepos []repository
if len(orgs) > 0 {
orgsRepos, err = g.getOrganizationsRepos(orgs)
if err != nil {
return describeReposOutput{}, errors.Errorf("failed to get organizations repos: %s", err)
}
}
return describeReposOutput{
Repos: append(userRepos, orgsRepos...),
}, nil
}
func extractDomainFromAPIUrl(apiUrl string) string {
u, err := url.Parse(apiUrl)
if err != nil {
logger.Printf("failed to parse apiUrl %s: %v", apiUrl, err)
}
return u.Hostname()
}
func (g *GiteaHost) getOrganizationsRepos(organizations []giteaOrganization) ([]repository, errors.E) {
domain := extractDomainFromAPIUrl(g.APIURL)
var repos []repository
for _, org := range organizations {
if g.LogLevel > 0 {
logger.Printf("getting repositories from gitea organization %s", org.Name)
}
orgRepos, err := g.getOrganizationRepos(org.Name)
if err != nil {
return nil, errors.Errorf("failed to get organization %s repos: %s", org.Name, err)
}
for _, orgRepo := range orgRepos {
repos = append(repos, repository{
Name: orgRepo.Name,
Owner: orgRepo.Owner.Login,
HTTPSUrl: orgRepo.CloneUrl,
SSHUrl: orgRepo.SshUrl,
PathWithNameSpace: orgRepo.FullName,
Domain: domain,
})
}
}
return repos, nil
}
func (g *GiteaHost) getAllUsers() ([]giteaUser, errors.E) {
if strings.TrimSpace(g.APIURL) == "" {
g.APIURL = gitlabAPIURL
}
getUsersURL := g.APIURL + "/admin/users"
if g.LogLevel > 0 {
logger.Printf("get users url: %s", getUsersURL)
}
// Initial request
u, err := url.Parse(getUsersURL)
if err != nil {
logger.Printf("failed to parse get users URL %s: %v", getUsersURL, err)
return nil, errors.Wrap(err, "failed to parse get users URL")
}
q := u.Query()
// set initial max per page
q.Set("per_page", strconv.Itoa(giteaUsersPerPageDefault))
q.Set("limit", strconv.Itoa(giteaUsersLimit))
u.RawQuery = q.Encode()
var body []byte
reqUrl := u.String()
var users []giteaUser
for {
var resp *http.Response
resp, body, err = g.makeGiteaRequest(reqUrl)
if err != nil {
logger.Printf("failed to get users: %v", err)
return nil, errors.Wrap(err, "failed to make Gitea request")
}
if g.LogLevel > 0 {
logger.Printf(string(body))
}
switch resp.StatusCode {
case http.StatusOK:
if g.LogLevel > 0 {
logger.Println("users retrieved successfully")
}
case http.StatusForbidden:
logger.Println("failed to get users due to invalid or missing credentials (HTTP 403)")
return nil, errors.Wrap(err, "forbidden response to Gitea request")
default:
logger.Printf("failed to get users with unexpected response: %d (%s)", resp.StatusCode, resp.Status)
return nil, errors.Wrap(err, "unexpected errors making Gitea request")
}
var respObj giteaGetUsersResponse
if err = json.Unmarshal(body, &respObj); err != nil {
logger.Println(err)
return nil, errors.Wrap(err, "failed to unmarshal Gitea response")
}
users = append(users, respObj...)
// reset request url
reqUrl = ""
for _, l := range link.ParseResponse(resp) {
if l.Rel == txtNext {
reqUrl = l.URI
}
}
if reqUrl == "" {
break
}
}
return users, nil
}
func (g *GiteaHost) getOrganizations() ([]giteaOrganization, errors.E) {
if len(g.Orgs) == 0 {
if g.LogLevel > 0 {
logger.Print("no organizations specified")
}
return nil, nil
}
if strings.TrimSpace(g.APIURL) == "" {
g.APIURL = gitlabAPIURL
}
var organizations []giteaOrganization
if slices.Contains(g.Orgs, "*") {
var err errors.E
organizations, err = g.getAllOrganizations()
if err != nil {
return nil, errors.Errorf("failed to get all organizations: %s", err.Error())
}
} else {
for _, orgName := range g.Orgs {
org, err := g.getOrganization(orgName)
if err != nil {
return nil, errors.Errorf("failed to get organization %s: %s", orgName, err.Error())
}
organizations = append(organizations, org)
}
}
return organizations, nil
}
func (g *GiteaHost) getOrganization(orgName string) (giteaOrganization, errors.E) {
if g.LogLevel > 0 {
logger.Printf("retrieving organization %s", orgName)
}
if strings.TrimSpace(g.APIURL) == "" {
g.APIURL = gitlabAPIURL
}
getOrganizationsURL := fmt.Sprintf("%s%s", g.APIURL+"/orgs/", orgName)
if g.LogLevel > 0 {
logger.Printf("get organization url: %s", getOrganizationsURL)
}
// Initial request
u, err := url.Parse(getOrganizationsURL)
if err != nil {
logger.Printf("failed to parse get organization URL %s: %v", getOrganizationsURL, err)
return giteaOrganization{}, errors.Errorf("failed to parse get organization URL: %s", err.Error())
}
// u.RawQuery = q.Encode()
var body []byte
reqUrl := u.String()
var resp *http.Response
resp, body, err = g.makeGiteaRequest(reqUrl)
if err != nil {
return giteaOrganization{}, errors.Wrap(err, fmt.Sprintf("failed to get organization: %s", orgName))
}
if g.LogLevel > 0 {
logger.Print(string(body))
}
var organization giteaOrganization
switch resp.StatusCode {
case http.StatusOK:
if g.LogLevel > 0 {
logger.Println("organizations retrieved successfully")
}
case http.StatusForbidden:
logger.Println("failed to get organizations due to invalid or missing credentials (HTTP 403)")
return giteaOrganization{}, errors.Errorf("failed to get organizations due to invalid or missing credentials (HTTP 403)")
default:
logger.Printf("failed to get organizations with unexpected response: %d (%s)", resp.StatusCode, resp.Status)
return giteaOrganization{}, errors.Errorf("failed to get organizations with unexpected response: %d (%s)", resp.StatusCode, resp.Status)
}
if err = json.Unmarshal(body, &organization); err != nil {
logger.Printf("failed to unmarshal organization json response: %v", err.Error())
return giteaOrganization{}, errors.Errorf("failed to unmarshal organization json response: %s", err.Error())
}
// if we got a link response then
// reset request url
// link: <https://gitea.lessknown.co.uk/api/v1/admin/organisations?limit=2&page=2>; rel="next",<https://gitea.lessknown.co.uk/api/v1/admin/organisations?limit=2&page=2>; rel="last"
return organization, nil
}
func (g *GiteaHost) getAllOrganizations() ([]giteaOrganization, errors.E) {
logger.Printf("retrieving organizations")
if strings.TrimSpace(g.APIURL) == "" {
g.APIURL = gitlabAPIURL
}
getOrganizationsURL := g.APIURL + "/orgs"
if g.LogLevel > 0 {
logger.Printf("get organizations url: %s", getOrganizationsURL)
}
// Initial request
u, err := url.Parse(getOrganizationsURL)
if err != nil {
logger.Printf("failed to parse get organizations URL %s: %v", getOrganizationsURL, err)
return nil, nil
}
q := u.Query()
// set initial max per page
q.Set("per_page", strconv.Itoa(giteaOrganizationsPerPageDefault))
q.Set("limit", strconv.Itoa(giteaOrganizationsLimit))
u.RawQuery = q.Encode()
var body []byte
reqUrl := u.String()
var organizations []giteaOrganization
for {
var resp *http.Response
resp, body, err = g.makeGiteaRequest(reqUrl)
if err != nil {
logger.Printf("failed to get organizations: %v", err.Error())
return nil, nil
}
if g.LogLevel > 0 {
logger.Print(string(body))
}
switch resp.StatusCode {
case http.StatusOK:
if g.LogLevel > 0 {
logger.Println("organizations retrieved successfully")
}
case http.StatusForbidden:
logger.Println("failed to get organizations due to invalid or missing credentials (HTTP 403)")
return organizations, nil
default:
logger.Printf("failed to get organizations with unexpected response: %d (%s)",
resp.StatusCode, resp.Status)
return organizations, nil
}
var respObj giteaGetOrganizationsResponse
if err = json.Unmarshal(body, &respObj); err != nil {
return nil, errors.Wrap(err, "failed to unmarshal Gitea response")
}
organizations = append(organizations, respObj...)
// if we got a link response then
// reset request url
// link: <https://gitea.lessknown.co.uk/api/v1/admin/organisations?limit=2&page=2>; rel="next",<https://gitea.lessknown.co.uk/api/v1/admin/organisations?limit=2&page=2>; rel="last"
reqUrl = ""
for _, l := range link.ParseResponse(resp) {
if l.Rel == txtNext {
reqUrl = l.URI
}
}
if reqUrl == "" {
break
}
}
return organizations, nil
}
type giteaRepository struct {
Id int `json:"id"`
Owner struct {
Id int `json:"id"`
Login string `json:"login"`
LoginName string `json:"login_name"`
FullName string `json:"full_name"`
Email string `json:"email"`
AvatarUrl string `json:"avatar_url"`
Language string `json:"language"`
IsAdmin bool `json:"is_admin"`
LastLogin time.Time `json:"last_login"`
Created time.Time `json:"created"`
Restricted bool `json:"restricted"`
Active bool `json:"active"`
ProhibitLogin bool `json:"prohibit_login"`
Location string `json:"location"`
Website string `json:"website"`
Description string `json:"description"`
Visibility string `json:"visibility"`
FollowersCount int `json:"followers_count"`
FollowingCount int `json:"following_count"`
StarredReposCount int `json:"starred_repos_count"`
Username string `json:"username"`
} `json:"owner"`
Name string `json:"name"`
FullName string `json:"full_name"`
Description string `json:"description"`
Empty bool `json:"empty"`
Private bool `json:"private"`
Fork bool `json:"fork"`
Template bool `json:"template"`
Parent interface{} `json:"parent"`
Mirror bool `json:"mirror"`
Size int `json:"size"`
Language string `json:"language"`
LanguagesUrl string `json:"languages_url"`
HtmlUrl string `json:"html_url"`
Link string `json:"link"`
SshUrl string `json:"ssh_url"`
CloneUrl string `json:"clone_url"`
OriginalUrl string `json:"original_url"`
Website string `json:"website"`
StarsCount int `json:"stars_count"`
ForksCount int `json:"forks_count"`
WatchersCount int `json:"watchers_count"`
OpenIssuesCount int `json:"open_issues_count"`
OpenPrCounter int `json:"open_pr_counter"`
ReleaseCounter int `json:"release_counter"`
DefaultBranch string `json:"default_branch"`
Archived bool `json:"archived"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
ArchivedAt time.Time `json:"archived_at"`
Permissions struct {
Admin bool `json:"admin"`
Push bool `json:"push"`
Pull bool `json:"pull"`
} `json:"permissions"`
HasIssues bool `json:"has_issues"`
InternalTracker struct {
EnableTimeTracker bool `json:"enable_time_tracker"`
AllowOnlyContributorsToTrackTime bool `json:"allow_only_contributors_to_track_time"`
EnableIssueDependencies bool `json:"enable_issue_dependencies"`
} `json:"internal_tracker"`
HasWiki bool `json:"has_wiki"`
HasPullRequests bool `json:"has_pull_requests"`
HasProjects bool `json:"has_projects"`
HasReleases bool `json:"has_releases"`
HasPackages bool `json:"has_packages"`
HasActions bool `json:"has_actions"`
IgnoreWhitespaceConflicts bool `json:"ignore_whitespace_conflicts"`
AllowMergeCommits bool `json:"allow_merge_commits"`
AllowRebase bool `json:"allow_rebase"`
AllowRebaseExplicit bool `json:"allow_rebase_explicit"`
AllowSquashMerge bool `json:"allow_squash_merge"`
AllowRebaseUpdate bool `json:"allow_rebase_update"`
DefaultDeleteBranchAfterMerge bool `json:"default_delete_branch_after_merge"`
DefaultMergeStyle string `json:"default_merge_style"`
DefaultAllowMaintainerEdit bool `json:"default_allow_maintainer_edit"`
AvatarUrl string `json:"avatar_url"`
Internal bool `json:"internal"`
MirrorInterval string `json:"mirror_interval"`
MirrorUpdated time.Time `json:"mirror_updated"`
RepoTransfer interface{} `json:"repo_transfer"`
}
func (g *GiteaHost) getOrganizationRepos(organizationName string) ([]giteaRepository, errors.E) {
logger.Printf("retrieving repositories for organization %s", organizationName)
if strings.TrimSpace(g.APIURL) == "" {
g.APIURL = gitlabAPIURL
}
getOrganizationReposURL := g.APIURL + fmt.Sprintf("/orgs/%s/repos", organizationName)
if g.LogLevel > 0 {
logger.Printf("get %s organization repos url: %s", organizationName, getOrganizationReposURL)
}
// Initial request
u, err := url.Parse(getOrganizationReposURL)
if err != nil {
return nil, errors.Errorf("failed to parse get %s organization repos URL %s: %s", organizationName, getOrganizationReposURL, err)
}
q := u.Query()
// set initial max per page
q.Set("per_page", strconv.Itoa(giteaReposPerPageDefault))
q.Set("limit", strconv.Itoa(giteaReposLimit))
u.RawQuery = q.Encode()
var body []byte
var repos []giteaRepository
reqUrl := u.String()
for {
var resp *http.Response
resp, body, err = g.makeGiteaRequest(reqUrl)
if err != nil {
return nil, errors.Errorf("failed to make Gitea request: %s", err)
}
if g.LogLevel > 0 {
logger.Print(string(body))
}
switch resp.StatusCode {
case http.StatusOK:
if g.LogLevel > 0 {
logger.Println("repos retrieved successfully")
}
case http.StatusForbidden:
return nil, errors.Errorf("failed to get repos due to invalid or missing credentials (HTTP 403)")
default:
logger.Printf("failed to get repos with unexpected response: %d (%s)", resp.StatusCode, resp.Status)
return nil, nil
}
var respObj []giteaRepository
if err = json.Unmarshal(body, &respObj); err != nil {
return nil, errors.Errorf("failed to unmarshal organization repos json response: %s", err)
}
repos = append(repos, respObj...)
// if we got a link response then
// reset request url
// link: <https://gitea.lessknown.co.uk/api/v1/admin/repos?limit=2&page=2>; rel="next",<https://gitea.lessknown.co.uk/api/v1/admin/repos?limit=2&page=2>; rel="last"
reqUrl = ""
for _, l := range link.ParseResponse(resp) {
if l.Rel == txtNext {
reqUrl = l.URI
}
}
if reqUrl == "" {
break
}
}
return repos, nil
}
func (g *GiteaHost) getAllUserRepos(userName string) ([]repository, errors.E) {
logger.Printf("retrieving all repositories for user %s", userName)
if strings.TrimSpace(g.APIURL) == "" {
g.APIURL = gitlabAPIURL
}
getOrganizationReposURL := g.APIURL + fmt.Sprintf("/users/%s/repos", userName)
if g.LogLevel > 0 {
logger.Printf("get %s user repos url: %s", userName, getOrganizationReposURL)
}
// Initial request
u, err := url.Parse(getOrganizationReposURL)
if err != nil {
logger.Printf("failed to parse get %s user repos URL %s: %v", userName, getOrganizationReposURL, err)
return nil, errors.Wrap(err, "failed to parse get user repos URL")
}
q := u.Query()
// set initial max per page
q.Set("per_page", strconv.Itoa(giteaReposPerPageDefault))
q.Set("limit", strconv.Itoa(giteaReposLimit))
u.RawQuery = q.Encode()
var body []byte
var repos []repository
reqUrl := u.String()
for {
var resp *http.Response
resp, body, err = g.makeGiteaRequest(reqUrl)
if err != nil {
logger.Printf("failed to get repos: %v", err)
return nil, errors.Wrap(err, "failed to parse get user repos URL")
}
if g.LogLevel > 0 {
logger.Print(string(body))
}
switch resp.StatusCode {
case http.StatusOK:
if g.LogLevel > 0 {
logger.Println("repos retrieved successfully")
}
case http.StatusForbidden:
logger.Println("failed to get repos due to invalid or missing credentials (HTTP 403)")
return nil, errors.Wrap(err, "failed to get repos due to invalid or missing credentials (HTTP 403)")
default:
logger.Printf("failed to get repos with unexpected response: %d (%s)", resp.StatusCode, resp.Status)
return nil, errors.Wrap(err, "failed to parse get user repos URL")
}
var respObj []giteaRepository
if err = json.Unmarshal(body, &respObj); err != nil {
return nil, errors.Wrap(err, "failed to unmarshal user repos json response")
}
for _, r := range respObj {
var ru *url.URL
ru, err = url.Parse(r.CloneUrl)
if err != nil {
logger.Printf("failed to parse clone url for %s\n", r.Name)
return nil, errors.Wrap(err, fmt.Sprintf("failed to parse clone url for: %s", r.CloneUrl))
}
repos = append(repos, repository{
Name: r.Name,
Owner: r.Owner.Login,
HTTPSUrl: r.CloneUrl,
SSHUrl: r.SshUrl,
Domain: ru.Host,
PathWithNameSpace: r.FullName,
})
}
reqUrl = ""
for _, l := range link.ParseResponse(resp) {
if l.Rel == txtNext {
reqUrl = l.URI
}
}
if reqUrl == "" {
break
}
}
return repos, nil
}
func (g *GiteaHost) getAPIURL() string {
return g.APIURL
}
// return normalised method.
func (g *GiteaHost) diffRemoteMethod() string {
switch strings.ToLower(g.DiffRemoteMethod) {
case refsMethod:
return refsMethod
case cloneMethod:
return cloneMethod
default:
logger.Printf("unexpected diff remote method: %s", g.DiffRemoteMethod)
return "invalid remote comparison method"
}
}
func giteaWorker(token string, logLevel int, backupDIR, diffRemoteMethod string, backupsToKeep int, jobs <-chan repository, results chan<- RepoBackupResults) {
for repo := range jobs {
firstPos := strings.Index(repo.HTTPSUrl, "//")
repo.URLWithToken = fmt.Sprintf("%s%s@%s", repo.HTTPSUrl[:firstPos+2], token, repo.HTTPSUrl[firstPos+2:])
err := processBackup(logLevel, repo, backupDIR, backupsToKeep, diffRemoteMethod)
backupResult := RepoBackupResults{
Repo: repo.PathWithNameSpace,
}
status := statusOk
if err != nil {
status = statusFailed
backupResult.Error = err
}
backupResult.Status = status
results <- backupResult
}
}
func (g *GiteaHost) Backup() ProviderBackupResult {
if g.BackupDir == "" {
logger.Printf("backup skipped as backup directory not specified")
return ProviderBackupResult{}
}
maxConcurrent := 5
repoDesc, err := g.describeRepos()