-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitlab.go
141 lines (119 loc) · 3.09 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
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
package summaraizer
import (
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
)
// GitLab is a source that fetches comments from a GitLab issue or merge request.
type GitLab struct {
Token string
RepoOwner string
RepoName string
IssueNumber string
Url string // The (base) URL of the GitLab instance.
}
// Fetch fetches comments from a GitLab issue.
func (gl *GitLab) Fetch(writer io.Writer) error {
return fetchAndEncode(writer, func() (Comments, error) {
var comments Comments
issue := issue{
repo: repo{
Owner: gl.RepoOwner,
Name: gl.RepoName,
},
Number: gl.IssueNumber,
}
issueResponse, err := fetchGitLabIssue(gl, issue)
if err != nil {
return nil, err
}
comments = append(comments, Comment{
Author: issueResponse.Author.Username,
Body: issueResponse.Description,
})
issueComments, err := fetchGitLabIssueNotes(gl, issue)
if err != nil {
return nil, err
}
for _, issueComments := range *issueComments {
comments = append(comments, Comment{
Author: issueComments.Author.Username,
Body: issueComments.Body,
})
}
return comments, nil
})
}
func fetchGitLabIssue(gl *GitLab, issue issue) (*gitLabIssueResponse, error) {
issueURL := fmt.Sprintf(
"%s/api/v4/projects/%s/issues/%s",
gl.Url,
url.QueryEscape(fmt.Sprintf("%s/%s", issue.Owner, issue.Name)),
issue.Number,
)
request := newGitLabRequest("GET", issueURL, gl.Token)
resp, err := http.DefaultClient.Do(&request)
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, err
}
var issueResponse gitLabIssueResponse
err = json.Unmarshal(body, &issueResponse)
if err != nil {
return nil, err
}
return &issueResponse, nil
}
func fetchGitLabIssueNotes(gl *GitLab, issue issue) (*gitLabIssueNotesResponse, error) {
commentsURL := fmt.Sprintf(
"%s/api/v4/projects/%s/issues/%s/notes?per_page=100",
gl.Url,
url.QueryEscape(fmt.Sprintf("%s/%s", issue.Owner, issue.Name)),
issue.Number,
)
request := newGitLabRequest("GET", commentsURL, gl.Token)
resp, err := http.DefaultClient.Do(&request)
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, err
}
var commentsResponse gitLabIssueNotesResponse
err = json.Unmarshal(body, &commentsResponse)
if err != nil {
return nil, err
}
return &commentsResponse, nil
}
func newGitLabRequest(method, url string, token string) http.Request {
req, err := http.NewRequest(method, url, nil)
if err != nil {
panic(err)
}
addGitLabHeaders(req, token)
return *req
}
func addGitLabHeaders(req *http.Request, token string) {
req.Header.Add("PRIVATE-TOKEN", token)
}
type gitLabIssueResponse struct {
Description string `json:"description"`
Author gitLabAuthorResponse `json:"author"`
}
type gitLabAuthorResponse struct {
Username string `json:"username"`
}
type gitLabIssueNotesResponse = []gitLabIssueNoteResponse
type gitLabIssueNoteResponse struct {
Body string `json:"body"`
Author gitLabAuthorResponse `json:"author"`
}