This repository was archived by the owner on May 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgitlab.go
62 lines (50 loc) · 1.4 KB
/
gitlab.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
package main
import (
"fmt"
"sync"
"github.com/xanzy/go-gitlab"
)
func trawlGitLab(conf *Config, log Logger) <-chan *PullRequest {
out := make(chan *PullRequest)
// create a sync group that is used to close the out channel when all gitlab repos has been
// trawled
var wg sync.WaitGroup
client, err := gitlab.NewClient(conf.GitLabToken, gitlab.WithBaseURL(conf.GitlabURL+"/api/v4"))
if err != nil {
usageAndExit(err.Error(), 1)
}
const status = "opened"
// spin out each request to find PR on a repo into a separate goroutine
for _, repo := range conf.GitLabRepos {
// increment
wg.Add(1)
go func(repoName string) {
defer wg.Done()
log.Debugf("fetching GitLab PRs for %s\n", repoName)
opts := &gitlab.ListProjectMergeRequestsOptions{
State: gitlab.String(status),
}
pullRequests, _, err := client.MergeRequests.ListProjectMergeRequests(repoName, opts)
if err != nil {
log.Infof("Couldn't fetch PRs from GitLab (%s): %s\n", repoName, err)
return
}
for _, pr := range pullRequests {
out <- &PullRequest{
ID: pr.IID,
Author: pr.Author.Username,
Assignee: pr.Assignee.Username,
Updated: *pr.UpdatedAt,
WebLink: fmt.Sprintf("%s/%s/merge_requests/%d", conf.GitlabURL, repoName, pr.IID),
Title: pr.Title,
Repository: repoName,
}
}
}(repo)
}
go func() {
wg.Wait()
close(out)
}()
return out
}