forked from jgreat/drone-rancher-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
434 lines (388 loc) · 11.5 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
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
package main
import (
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"regexp"
"sort"
"strconv"
"strings"
"text/template"
"github.com/blang/semver"
"github.com/drone/drone-plugin-go/plugin"
"github.com/heroku/docker-registry-client/registry"
)
const (
baseDir string = "/rancher-catalog"
repoDir string = "/rancher-catalog/repo"
templateDir string = "/rancher-catalog/repo/base"
dockerComposeTemplateFile string = "/rancher-catalog/repo/base/docker-compose.tmpl"
rancherComposeTemplateFile string = "/rancher-catalog/repo/base/rancher-compose.tmpl"
configTemplateFile string = "/rancher-catalog/repo/base/config.tmpl"
iconFileBase string = "/rancher-catalog/repo/base/catalogIcon"
)
// catalog struct
type catalog struct {
vargs vargs
workspace plugin.Workspace
repo plugin.Repo
build plugin.Build
}
// vargs strct
type vargs struct {
DockerRepo string `json:"docker_repo"`
DockerUsername string `json:"docker_username"`
DockerPassword string `json:"docker_password"`
DockerURL string `json:"docker_url"`
CatalogRepo string `json:"catalog_repo"`
GitHubToken string `json:"github_token"`
GitHubUser string `json:"github_user"`
GitHubEmail string `json:"github_email"`
}
// tagsByBranch struct
type tagsByBranch struct {
branches map[string]branch
}
// branch struct
type branch struct {
versions map[string]version
}
// version struct
type version struct {
builds map[int]*Tag
}
// Tag struct
type Tag struct {
Tag string
Count int
Owner string
Project string
Branch string
Version string
Build int
SHA string
}
func main() {
fmt.Println("starting drone-rancher-catalog...")
var catalog = catalog{}
plugin.Param("workspace", &catalog.workspace)
plugin.Param("repo", &catalog.repo)
plugin.Param("build", &catalog.build)
plugin.Param("vargs", &catalog.vargs)
plugin.MustParse()
if len(catalog.vargs.DockerRepo) == 0 {
fmt.Println("ERROR: docker_repo: Docker Registry Repo to read tags from, not specified")
os.Exit(1)
}
if len(catalog.vargs.DockerUsername) == 0 {
fmt.Println("ERROR: docker_username: Docker Registry Username not specified")
os.Exit(1)
}
if len(catalog.vargs.DockerPassword) == 0 {
fmt.Println("ERROR: docker_password: Docker Registry Password not specified")
os.Exit(1)
}
if len(catalog.vargs.CatalogRepo) == 0 {
fmt.Println("ERROR: catalog_repo: GitHub Catalog Repo not specified")
os.Exit(1)
}
if len(catalog.vargs.GitHubToken) == 0 {
fmt.Println("ERROR: github_token: GitHub User Token not specified")
os.Exit(1)
}
if len(catalog.vargs.DockerURL) == 0 {
catalog.vargs.DockerURL = "https://registry.hub.docker.com/"
}
if len(catalog.vargs.GitHubUser) == 0 {
catalog.vargs.GitHubUser = catalog.build.Author
}
if len(catalog.vargs.GitHubEmail) == 0 {
catalog.vargs.GitHubEmail = catalog.build.Email
}
// create a dir outside the workspace
if !exists(baseDir) {
os.Mkdir(baseDir, 0755)
}
catalog.cloneCatalogRepo()
os.Chdir(repoDir)
catalog.gitConfigureEmail()
catalog.gitConfigureUser()
if !exists("./templates") {
os.Mkdir("./templates", 0755)
}
dockerComposeTmpl := catalog.parseTemplateFile(dockerComposeTemplateFile)
rancherComposeTmpl := catalog.parseTemplateFile(rancherComposeTemplateFile)
configTmpl := catalog.parseTemplateFile(configTemplateFile)
tags := catalog.getTags()
tbb := catalog.tagsByBranch(tags)
fmt.Println("Creating Catalog Templates for:")
for branch := range tbb.branches {
var count int
var last *Tag
// create branch dir
branchDir := fmt.Sprintf("./templates/%s", branch)
if !exists(branchDir) {
os.Mkdir(branchDir, 0755)
}
// sort semver so we can count builds in a feature branch
var vKeys []semver.Version
for k := range tbb.branches[branch].versions {
version, err := semver.Parse(k)
if err != nil {
fmt.Printf("Error parsing version %v \n", err)
continue
}
vKeys = append(vKeys, version)
}
semver.Sort(vKeys)
for _, version := range vKeys {
// sort builds to count in order
var bKeys []int
ver := version.String()
for k := range tbb.branches[branch].versions[ver].builds {
bKeys = append(bKeys, k)
}
sort.Ints(bKeys)
for _, build := range bKeys {
tbb.branches[branch].versions[ver].builds[build].Count = count
// create dir structure
buildDir := fmt.Sprintf("%s/%d", branchDir, count)
if !exists(buildDir) {
fmt.Printf(" %d:%s %s-%d\n", count, branch, ver, build)
os.Mkdir(buildDir, 0755)
}
// create docker-compose.yml and rancher-compose.yml from template
// don't generate files if they already exist
dockerComposeTarget := fmt.Sprintf("%s/docker-compose.yml", buildDir)
if !exists(dockerComposeTarget) {
catalog.executeTemplate(dockerComposeTarget, dockerComposeTmpl, tbb.branches[branch].versions[ver].builds[build])
}
rancherComposeTarget := fmt.Sprintf("%s/rancher-compose.yml", buildDir)
if !exists(rancherComposeTarget) {
catalog.executeTemplate(rancherComposeTarget, rancherComposeTmpl, tbb.branches[branch].versions[ver].builds[build])
}
last = tbb.branches[branch].versions[ver].builds[build]
count++
}
}
// create config.yml from temlplate
configTarget := fmt.Sprintf("%s/config.yml", branchDir)
catalog.executeTemplate(configTarget, configTmpl, last)
// Icon file
copyIcon(iconFileBase, branchDir)
}
// TODO: Delete dir/files if tags don't exist anymore. Need to maintian build dir numbering
if catalog.gitChanged() {
catalog.addCatalogRepo()
catalog.commitCatalogRepo()
catalog.pushCatalogRepo()
}
fmt.Println("... Finished drone-rancher-catalog")
}
func (c *catalog) getTags() []string {
hub, err := registry.New(c.vargs.DockerURL, c.vargs.DockerUsername, c.vargs.DockerPassword)
if err != nil {
fmt.Println("ERROR: Could not Contact Docker Registry", err)
os.Exit(1)
}
tags, err := hub.Tags(c.vargs.DockerRepo)
if err != nil {
fmt.Println("ERROR: Getting tags", err)
os.Exit(1)
}
return tags
}
// parseTag Returns a Tag object from a buildgoogles style tag
func (c *catalog) parseTag(t string) *Tag {
var tag = &Tag{}
featureRe := regexp.MustCompile(fmt.Sprintf(`^%s_%s_`, c.repo.Owner, c.repo.Name))
releaseRe := regexp.MustCompile(`^v\d+\.\d+\.\d+$`)
// Skip forks and other nonsense tags
switch {
case featureRe.MatchString(t):
var build string
// fmt.Println("Found Feature Branch Tag", t)
tagParts := strings.Split(t, "_")
// shift the owner and project from the front
// pop the sha, build, and version from the back
// join whats left into the branch
tag.Tag = t
tag.Owner, tagParts = tagParts[0], tagParts[1:]
tag.Project, tagParts = tagParts[0], tagParts[1:]
tag.SHA, tagParts = tagParts[len(tagParts)-1], tagParts[:len(tagParts)-1]
build, tagParts = tagParts[len(tagParts)-1], tagParts[:len(tagParts)-1]
tag.Build, _ = strconv.Atoi(build)
tag.Version, tagParts = tagParts[len(tagParts)-1], tagParts[:len(tagParts)-1]
tag.Branch = strings.Join(tagParts, "_")
case releaseRe.MatchString(t):
// fmt.Println("Found Release Tag", t)
tag.Tag = t
tag.Owner = c.repo.Owner
tag.Project = c.repo.Name
tag.Branch = "master"
tag.Build = 1
tag.SHA = ""
versionRe := regexp.MustCompile(`^v`)
tag.Version = versionRe.ReplaceAllString(t, "")
default:
return nil
}
return tag
}
// tagsByBranch break down tag list and return a tagsByBranch object
func (c *catalog) tagsByBranch(tags []string) *tagsByBranch {
tbb := &tagsByBranch{}
tbb.branches = make(map[string]branch)
for _, tg := range tags {
t := c.parseTag(tg)
if t == nil {
continue
}
if _, present := tbb.branches[t.Branch]; !present {
tbb.branches[t.Branch] = branch{
versions: make(map[string]version),
}
}
if _, present := tbb.branches[t.Branch].versions[t.Version]; !present {
tbb.branches[t.Branch].versions[t.Version] = version{
builds: make(map[int]*Tag),
}
}
if _, present := tbb.branches[t.Branch].versions[t.Version].builds[t.Build]; !present {
tbb.branches[t.Branch].versions[t.Version].builds[t.Build] = t
}
}
return tbb
}
func exists(f string) bool {
if _, err := os.Stat(f); os.IsNotExist(err) {
return false
}
return true
}
func (c *catalog) cloneCatalogRepo() {
gitHubURL := fmt.Sprintf("https://%s:[email protected]/%s.git", c.vargs.GitHubToken, c.vargs.CatalogRepo)
fmt.Println("Cloning Rancher-Catalog repo:", c.vargs.CatalogRepo)
// clear if existing and git clone target repo
os.RemoveAll(repoDir)
cmd := exec.Command("git", "clone", gitHubURL, repoDir)
err := cmd.Run()
if err != nil {
fmt.Printf("ERROR: Failed to Clone Repo %v\n", err)
os.Exit(1)
}
}
func (c *catalog) addCatalogRepo() {
cmd := exec.Command("git", "add", "-A")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()
if err != nil {
fmt.Printf("ERROR: Failed to git add %v\n", err)
os.Exit(1)
}
}
func (c *catalog) commitCatalogRepo() {
message := fmt.Sprintf("'Update from Drone Build: %d'", c.build.Number)
cmd := exec.Command("git", "commit", "-m", message)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()
if err != nil {
fmt.Printf("ERROR: Failed to git commit %v\n", err)
os.Exit(1)
}
}
func (c *catalog) pushCatalogRepo() {
cmd := exec.Command("git", "push")
err := cmd.Run()
// Not showing output, bleeds the API key
if err != nil {
fmt.Printf("ERROR: Failed to git push %v\n", err)
os.Exit(1)
}
}
func (c *catalog) parseTemplateFile(file string) *template.Template {
name := filepath.Base(file)
tmpl, err := template.New(name).ParseFiles(file)
if err != nil {
fmt.Printf("ERROR: Failed parse template %v\n", err)
os.Exit(1)
}
return tmpl
}
func (c *catalog) executeTemplate(target string, tmpl *template.Template, tag *Tag) {
targetFile, err := os.Create(target)
if err != nil {
fmt.Printf("ERROR: Failed to open file %v\n", err)
os.Exit(1)
}
err = tmpl.Execute(targetFile, tag)
if err != nil {
fmt.Printf("ERROR: Failed execute template %v\n", err)
os.Exit(1)
}
targetFile.Close()
}
// copy src.* (repo/base/catalogIcon.*) to dest directory
func copy(src string, dest string) {
cmd := exec.Command("cp", src, dest)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()
if err != nil {
fmt.Printf("ERROR: Failed to cp %v\n", err)
os.Exit(1)
}
}
func copyIcon(src string, dest string) {
dir := filepath.Dir(src)
base := filepath.Base(src)
// find files in dir that match base
iconRe := regexp.MustCompile(fmt.Sprintf(`^%s`, base))
files, _ := ioutil.ReadDir(dir)
for _, f := range files {
if iconRe.MatchString(f.Name()) {
name := fmt.Sprintf("%s/%s", dir, f.Name())
copy(name, dest)
}
}
}
func (c *catalog) gitConfigureEmail() {
cmd := exec.Command("git", "config", "user.email", c.vargs.GitHubEmail)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()
if err != nil {
fmt.Printf("ERROR: Failed to git config %v\n", err)
os.Exit(1)
}
}
func (c *catalog) gitConfigureUser() {
cmd := exec.Command("git", "config", "user.name", c.vargs.GitHubUser)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()
if err != nil {
fmt.Printf("ERROR: Failed to git config %v\n", err)
os.Exit(1)
}
}
// returns true if there are files that need to be commited.
func (c *catalog) gitChanged() bool {
cmd := exec.Command("git", "status", "--porcelain")
out, err := cmd.Output()
if err != nil {
fmt.Printf("ERROR: Failed to git status %v\n", err)
os.Exit(1)
}
// no output means no changes.
if len(out) == 0 {
fmt.Println("No files changed.")
return false
}
fmt.Println("Files changed, add/commit/push changes.")
return true
}