-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.go
215 lines (174 loc) · 5.11 KB
/
main.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
package main
import (
"crypto/tls"
"io/ioutil"
"log"
"net/http"
"os"
"path"
"path/filepath"
"time"
"github.com/ericaro/frontmatter"
"github.com/gorhill/cronexpr"
"github.com/xanzy/go-gitlab"
)
var (
ciAPIV4URL string = ""
gitlabAPIToken string = ""
ciProjectID string = ""
ciProjectDir string = ""
ciJobName string = ""
issuesRelativePath string = ".gitlab/recurring_issue_templates/"
)
type metadata struct {
Title string `yaml:"title"`
Description string `fm:"content" yaml:"-"`
Confidential bool `yaml:"confidential"`
Assignees []string `yaml:"assignees,flow"`
Labels []string `yaml:"labels,flow"`
DueIn string `yaml:"duein"`
Crontab string `yaml:"crontab"`
NextTime time.Time
}
func processIssueFile(lastTime time.Time) filepath.WalkFunc {
return func(path string, info os.FileInfo, err error) error {
if err != nil {
log.Fatal(err)
}
if filepath.Ext(path) != ".md" {
return nil
}
contents, err := ioutil.ReadFile(path)
if err != nil {
return err
}
data, err := parseMetadata(contents)
if err != nil {
return err
}
cronExpression, err := cronexpr.Parse(data.Crontab)
if err != nil {
return err
}
data.NextTime = cronExpression.Next(lastTime)
if data.NextTime.Before(time.Now()) {
log.Println(path, "was due", data.NextTime.Format(time.RFC3339), "- creating new issue")
err := createIssue(data)
if err != nil {
return err
}
} else {
log.Println(path, "is due", data.NextTime.Format(time.RFC3339))
}
return nil
}
}
func parseMetadata(contents []byte) (*metadata, error) {
data := new(metadata)
err := frontmatter.Unmarshal(contents, data)
if err != nil {
return nil, err
}
return data, nil
}
func createIssue(data *metadata) error {
transCfg := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
httpClient := &http.Client{
Transport: transCfg,
}
git, err := gitlab.NewClient(gitlabAPIToken, gitlab.WithBaseURL(ciAPIV4URL), gitlab.WithHTTPClient(httpClient))
if err != nil {
return err
}
project, _, err := git.Projects.GetProject(ciProjectID, nil)
if err != nil {
return err
}
options := &gitlab.CreateIssueOptions{
Title: gitlab.String(data.Title),
Description: gitlab.String(data.Description),
Confidential: &data.Confidential,
CreatedAt: &data.NextTime,
}
if data.DueIn != "" {
duration, err := time.ParseDuration(data.DueIn)
if err != nil {
return err
}
dueDate := gitlab.ISOTime(data.NextTime.Add(duration))
options.DueDate = &dueDate
}
_, _, err = git.Issues.CreateIssue(project.ID, options)
if err != nil {
return err
}
return nil
}
func getLastRunTime() (time.Time, error) {
transCfg := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
httpClient := &http.Client{
Transport: transCfg,
}
git, err := gitlab.NewClient(gitlabAPIToken, gitlab.WithBaseURL(ciAPIV4URL), gitlab.WithHTTPClient(httpClient))
if err != nil {
return time.Unix(0, 0), err
}
options := &gitlab.ListProjectPipelinesOptions{
Scope: gitlab.String("finished"),
Status: gitlab.BuildState(gitlab.Success),
OrderBy: gitlab.String("updated_at"),
}
pipelineInfos, _, err := git.Pipelines.ListProjectPipelines(ciProjectID, options)
if err != nil {
return time.Unix(0, 0), err
}
for _, pipelineInfo := range pipelineInfos {
jobs, _, err := git.Jobs.ListPipelineJobs(ciProjectID, pipelineInfo.ID, nil)
if err != nil {
return time.Unix(0, 0), err
}
for _, job := range jobs {
if job.Name == ciJobName {
return *job.FinishedAt, nil
}
}
}
return time.Unix(0, 0), nil
}
func main() {
gitlabAPIToken = os.Getenv("GITLAB_API_TOKEN")
if gitlabAPIToken == "" {
log.Fatal("Environment variable 'GITLAB_API_TOKEN' not found. Ensure this is set under the project CI/CD settings.")
}
ciAPIV4URL = os.Getenv("CI_API_V4_URL")
if ciAPIV4URL == "" {
log.Fatal("Environment variable 'CI_API_V4_URL' not found. This tool must be ran as part of a GitLab pipeline.")
}
ciProjectID = os.Getenv("CI_PROJECT_ID")
if gitlabAPIToken == "" {
log.Fatal("Environment variable 'CI_PROJECT_ID' not found. This tool must be ran as part of a GitLab pipeline.")
}
ciProjectDir = os.Getenv("CI_PROJECT_DIR")
if gitlabAPIToken == "" {
log.Fatal("Environment variable 'CI_PROJECT_DIR' not found. This tool must be ran as part of a GitLab pipeline.")
}
ciJobName = os.Getenv("CI_JOB_NAME")
if gitlabAPIToken == "" {
log.Fatal("Environment variable 'CI_JOB_NAME' not found. This tool must be ran as part of a GitLab pipeline.")
}
issuesRelativePath = path.Join(ciProjectDir, issuesRelativePath)
lastRunTime, err := getLastRunTime()
if err != nil {
log.Fatal(err)
}
log.Println("Last run:", lastRunTime.Format(time.RFC3339))
err = filepath.Walk(issuesRelativePath, processIssueFile(lastRunTime))
if err != nil {
log.Fatal(err)
}
log.Println("Run complete")
}