-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go_old
610 lines (516 loc) · 16 KB
/
main.go_old
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
package main
import (
"bytes"
"context"
"encoding/base64"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
"strconv"
"strings"
"github.com/google/go-github/v53/github"
"golang.org/x/oauth2"
"gopkg.in/yaml.v2"
)
type ChartVersion struct {
Version string `yaml:"version"`
}
type Chart struct {
Name string `yaml:"name"`
Versions []ChartVersion `yaml:"versions"`
}
type ChartIndex struct {
Entries map[string][]ChartVersion `yaml:"entries"`
}
func getLatestChartVersion(chartIndexURL, chartName string) (string, error) {
resp, err := http.Get(chartIndexURL)
if err != nil {
return "", err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return "", err
}
var index ChartIndex
err = yaml.Unmarshal(body, &index)
if err != nil {
return "", err
}
// Find the latest stable version of the specified chart
if versions, ok := index.Entries[chartName]; ok {
for _, version := range versions {
if !strings.Contains(version.Version, "alpha") && !strings.Contains(version.Version, "beta") {
strippedTag := strings.TrimPrefix(version.Version, "v")
parts := strings.Split(strippedTag, ".")
if len(parts) > 3 {
parts = parts[:3]
}
version := strings.Join(parts, ".")
return version, nil
}
}
return "", fmt.Errorf("no stable version found for chart %s", chartName)
}
return "", fmt.Errorf("chart %s not found", chartName)
}
func getLatestReleaseTag(owner, repo, token string) (string, error) {
// Try to get the latest release first
url := fmt.Sprintf("https://api.github.com/repos/%s/%s/releases/latest", owner, repo)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return "", err
}
req.SetBasicAuth("loeken", token)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return "", err
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusOK {
var release struct {
TagName string `json:"tag_name"`
}
err = json.NewDecoder(resp.Body).Decode(&release)
if err != nil {
return "", err
}
// Strip the "v" prefix from the tag name if it exists
strippedTag := strings.TrimPrefix(release.TagName, "v")
return strippedTag, nil
} else if resp.StatusCode == http.StatusNotFound {
// If no releases found, get the latest tag
url = fmt.Sprintf("https://api.github.com/repos/%s/%s/tags", owner, repo)
req, err = http.NewRequest("GET", url, nil)
if err != nil {
return "", err
}
req.SetBasicAuth("loeken", token)
resp, err = client.Do(req)
if err != nil {
return "", err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return "", fmt.Errorf("failed to get latest tag: %s", resp.Status)
}
var tags []struct {
Name string `json:"name"`
}
err = json.NewDecoder(resp.Body).Decode(&tags)
if err != nil {
return "", err
}
if len(tags) == 0 {
return "", fmt.Errorf("no tags found")
}
// Strip the "v" prefix from the tag name if it exists
strippedTag := strings.TrimPrefix(tags[0].Name, "v")
return strippedTag, nil
} else {
return "", fmt.Errorf("failed to get latest release tag: %s", resp.Status)
}
}
func UpdateChartVersionWithPR(chartName, owner, repo, filename, parentBlock, subBlock, newVersion, branch, token string) error {
fmt.Println(repo, chartName, filename, owner, branch)
ctx := context.Background()
ts := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: token},
)
tc := oauth2.NewClient(ctx, ts)
client := github.NewClient(tc)
// Get the current contents of the file
fileContent, _, _, err := client.Repositories.GetContents(ctx, owner, repo, filename, &github.RepositoryContentGetOptions{
Ref: branch,
})
if err != nil {
fmt.Println("error getting file content:", err)
return err
}
// Decode the file content from base64
contentBytes, err := fileContent.GetContent()
if err != nil {
fmt.Printf("error decoding file content: %v", err)
return err
}
// Update the YAML value
// Convert contentBytes to a byte slice
content := []byte(contentBytes)
// Unmarshal the YAML content into a map
values := make(map[interface{}]interface{})
if err := yaml.Unmarshal(content, &values); err != nil {
fmt.Printf("error unmarshalling YAML: %v", err)
return err
}
// Update the chart version
values[parentBlock].(map[interface{}]interface{})[subBlock] = newVersion
// Marshal the updated values back to YAML
updatedContent, err := yaml.Marshal(values)
if err != nil {
fmt.Printf("error marshalling YAML: %v", err)
return err
}
fmt.Println(updatedContent)
// Create a new blob object for the updated content
newBlob, _, err := client.Git.CreateBlob(ctx, owner, repo, &github.Blob{
Content: github.String(string(updatedContent)),
Encoding: github.String("utf-8"),
})
if err != nil {
fmt.Println("Error creating blob: ", err)
return err
}
fmt.Println("New blob SHA:", *newBlob.SHA)
// Get the latest commit object for the branch
ref, _, err := client.Git.GetRef(ctx, owner, repo, fmt.Sprintf("refs/heads/%s", branch))
if err != nil {
fmt.Printf("error getting ref: %v", err)
return err
}
parentSHA := ref.Object.GetSHA()
fmt.Println("filenmae path:")
fmt.Println(fileContent.GetPath())
fmt.Println(*newBlob.SHA)
// Create a new tree object with the updated file
newTree, _, err := client.Git.CreateTree(ctx, owner, repo, parentSHA, []*github.TreeEntry{
{
Path: github.String(fileContent.GetPath()),
Mode: github.String("100644"),
Type: github.String("blob"),
SHA: newBlob.SHA,
},
})
if err != nil {
fmt.Printf("error creating tree: %v", err)
return err
}
// Create a new commit object with the updated tree object
newCommit, _, err := client.Git.CreateCommit(ctx, owner, repo, &github.Commit{
Message: github.String(fmt.Sprintf("Update %s to version %s", chartName, newVersion)),
Tree: newTree,
Parents: []*github.Commit{{SHA: &parentSHA}},
})
if err != nil {
fmt.Printf("error creating commit: %v", err)
return err
}
// Create a new reference for the updated commit
newBranch := fmt.Sprintf("refs/heads/update-%s-to-%s", chartName, newVersion)
_, _, err = client.Git.CreateRef(ctx, owner, repo, &github.Reference{
Ref: github.String(newBranch),
Object: &github.GitObject{SHA: newCommit.SHA},
})
if err != nil {
fmt.Printf("error creating reference: %v", err)
return err
}
// Create a pull request with the changes
title := fmt.Sprintf("Update %s to version %s", chartName, newVersion)
body := fmt.Sprintf("Update %s to version %s", chartName, newVersion)
newPR, _, err := client.PullRequests.Create(ctx, owner, repo, &github.NewPullRequest{
Title: github.String(title),
Body: github.String(body),
Head: github.String(newBranch),
Base: github.String(branch),
})
if err != nil {
fmt.Printf("failed to create pull request: %v", err)
return err
}
// Print the URL of the new pull request
fmt.Printf("Created pull request %s\n", newPR.GetHTMLURL())
return nil
}
func UpdateChartVersion(chartName, owner, repo, filename, parentBlock, subBlock, oldVersion, newVersion, branch, token string) error {
client := &http.Client{}
// GET request to fetch file contents
getReq, err := http.NewRequest("GET", fmt.Sprintf("https://api.github.com/repos/%s/%s/contents/%s", owner, repo, filename), nil)
if err != nil {
return err
}
getReq.Header.Set("Authorization", "token "+token)
getResp, err := client.Do(getReq)
if err != nil {
return err
}
defer getResp.Body.Close()
getBody, err := ioutil.ReadAll(getResp.Body)
if err != nil {
return err
}
fmt.Println("GET request status: ", getResp.Status)
fmt.Println("GET request body: ", string(getBody))
// Unmarshal the response
getRespMap := make(map[string]interface{})
err = json.Unmarshal(getBody, &getRespMap)
if err != nil {
return err
}
// Decode content
decodedContent, err := base64.StdEncoding.DecodeString(getRespMap["content"].(string))
if err != nil {
return err
}
yamlMap := make(map[interface{}]interface{})
err = yaml.Unmarshal(decodedContent, &yamlMap)
if err != nil {
return err
}
env, ok := yamlMap["env"].(map[interface{}]interface{})
if !ok {
return fmt.Errorf("no env section found in the file")
}
env["version"] = newVersion
updatedContent, err := yaml.Marshal(yamlMap)
if err != nil {
return err
}
fmt.Println("sha of file:", getRespMap["sha"])
// Prepare request body for the PUT request
putReqBody := map[string]interface{}{
"message": "Update version to " + newVersion,
"content": base64.StdEncoding.EncodeToString(updatedContent),
"branch": branch,
"sha": getRespMap["sha"],
"committer": map[string]string{
"name": "loeken",
"email": "[email protected]",
},
}
putReqBodyBytes, err := json.Marshal(putReqBody)
if err != nil {
return err
}
// PUT request to update file
putReq, err := http.NewRequest("PUT", fmt.Sprintf("https://api.github.com/repos/%s/%s/contents/%s", owner, repo, filename), bytes.NewBuffer(putReqBodyBytes))
if err != nil {
return err
}
putReq.Header.Set("Accept", "application/vnd.github+json")
putReq.Header.Set("Authorization", "Bearer "+token)
putReq.Header.Set("X-GitHub-Api-Version", "2022-11-28")
putReq.Header.Set("Content-Type", "application/json")
putResp, err := client.Do(putReq)
if err != nil {
return err
}
defer putResp.Body.Close()
putBody, err := ioutil.ReadAll(putResp.Body)
if err != nil {
return err
}
fmt.Println("PUT request status: ", putResp.Status)
fmt.Println("PUT request body: ", string(putBody))
return nil
}
func main() {
outputFile := "output.txt"
owner := os.Getenv("INPUT_GITHUB_USER")
repo := os.Getenv("INPUT_GITHUB_REPO")
token := os.Getenv("INPUT_GITHUB_TOKEN")
chart_index_url := os.Getenv("INPUT_CHART_INDEX_URL")
chartName := os.Getenv("INPUT_CHART_NAME")
valuesChartName := os.Getenv("INPUT_VALUES_CHART_NAME")
oldChartVersion := os.Getenv("INPUT_CHART_VERSION")
remoteChartName := os.Getenv("INPUT_REMOTE_CHART_NAME")
chartType := os.Getenv("INPUT_CHART_TYPE")
releaseRemoveString := os.Getenv("INPUT_RELEASE_REMOVE_STRING")
selfManagedImage := os.Getenv("INPUT_SELF_MANAGED_IMAGE")
selfManagedChart := os.Getenv("INPUT_SELF_MANAGED_CHART")
dockerTagPrefix := os.Getenv("INPUT_DOCKERTAGPREFIX")
dockerTagSuffix := os.Getenv("INPUT_DOCKERTAGSUFFIX")
var chart_version string
var err error
app_version, err := getLatestReleaseTag(owner, repo, token)
if err != nil {
fmt.Println("error: ", err)
if err.Error() == "failed to get latest tag: 404 Not Found" {
app_version = chart_version
}
}
app_version = strings.Replace(app_version, releaseRemoveString, "", -1)
app_version = dockerTagPrefix + app_version + dockerTagSuffix
if chart_index_url == "" {
// try and get app Version:
oldAppVersion, _ := GetAppVersionFromGitHubChart("loeken", "helm-charts", chartName, token)
oldAppVersion = strings.ReplaceAll(oldAppVersion, releaseRemoveString, "")
fmt.Println("oldAppVersioN" + oldAppVersion)
if selfManagedImage == "true" {
result := compareVersions(oldAppVersion, app_version)
if result < 0 {
fmt.Println("detected new version: " + app_version + " old version:" + oldAppVersion)
fmt.Println(
chartName,
"loeken",
"docker-"+chartName,
".github/workflows/release.yml",
"env",
"version",
oldAppVersion,
app_version,
"main",
token,
)
err := UpdateChartVersion(
chartName,
"loeken",
"docker-"+chartName,
"version.yaml",
"env",
"version",
oldAppVersion,
app_version,
"main",
token,
)
if err != nil {
fmt.Println("error encountered: ", err)
}
}
return
}
} else {
chart_version, err = getLatestChartVersion(chart_index_url, chartName)
if err != nil {
fmt.Println("error: ", err)
}
}
fmt.Println("chart:", chart_version)
fmt.Println("app:", app_version)
fmt.Println("old chart version:", oldChartVersion)
fmt.Println(oldChartVersion + "<" + chart_version)
result := compareVersions(oldChartVersion, chart_version)
if result < 0 {
fmt.Println("update required newer release found")
if selfManagedImage == "true" {
UpdateChartVersion(chartName, "loeken", "docker-"+chartName, "version.yaml", valuesChartName, "env", "version", chart_version, "main", token)
if err != nil {
fmt.Println("error encountered: ", err)
}
fmt.Println("finishied")
}
if selfManagedChart == "true" {
fmt.Println("self managed chart: ", chartName, "loeken", "helm-charts", "charts/"+remoteChartName+"/Chart.yaml", "version", "", oldChartVersion, chart_version, "main", token)
UpdateChartVersion(chartName, "loeken", "helm-charts", "charts/"+remoteChartName+"/Chart.yaml", "version", "", oldChartVersion, chart_version, "main", token)
if err != nil {
fmt.Println("error encountered: ", err)
}
UpdateChartVersion(chartName, "loeken", "helm-charts", "charts/"+remoteChartName+"/Chart.yaml", "appVersion", "", oldChartVersion, chart_version, "main", token)
if err != nil {
fmt.Println("error encountered: ", err)
}
fmt.Println("finishied")
}
// update homelab
err := UpdateChartVersionWithPR(valuesChartName, "loeken", "homelab", "deploy/argocd/bootstrap-"+chartType+"-apps/values.yaml.example", valuesChartName, "chartVersion", chart_version, "main", token)
if err != nil {
fmt.Println("error encountered: ", err)
}
// update values in this repo
UpdateChartVersionWithPR(valuesChartName, "loeken", "homelab-updater", "values-"+chartType+".yaml", valuesChartName, "chartVersion", chart_version, "main", token)
if err != nil {
fmt.Println("error encountered: ", err)
}
fmt.Println(chartName, " chart version updated")
} else {
fmt.Println("else")
}
f, err := os.Create(outputFile)
if err != nil {
fmt.Println("error: ", err)
}
defer f.Close()
_, err = f.WriteString(fmt.Sprintf("LATEST_APP_RELEASE=%s\n", app_version))
if err != nil {
fmt.Println("error: ", err)
}
_, err = f.WriteString(fmt.Sprintf("LATEST_CHART_RELEASE=%s\n", chart_version))
if err != nil {
fmt.Println("error: ", err)
}
}
func compareVersions(version1, version2 string) int {
parts1 := strings.Split(version1, ".")
parts2 := strings.Split(version2, ".")
// Ensure both versions have the same number of components
maxParts := len(parts1)
if len(parts2) > maxParts {
maxParts = len(parts2)
}
// Compare each component numerically
for i := 0; i < maxParts; i++ {
num1 := 0
num2 := 0
if i < len(parts1) {
num1, _ = strconv.Atoi(parts1[i])
}
if i < len(parts2) {
num2, _ = strconv.Atoi(parts2[i])
}
if num1 < num2 {
return -1
} else if num1 > num2 {
return 1
}
}
// All components are equal
return 0
}
type RemoteChart struct {
AppVersion string `yaml:"appVersion"`
}
type GitHubContent struct {
Content string `json:"content"`
}
func GetFileContentFromGitHub(owner, repo, path, token string) (string, error) {
// Build the request URL
url := fmt.Sprintf("https://api.github.com/repos/%s/%s/contents/%s", owner, repo, path)
// Create a new request
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return "", err
}
// Set the Authorization header
req.Header.Set("Authorization", fmt.Sprintf("token %s", token))
// Send the request
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return "", err
}
defer resp.Body.Close()
// Parse the response
if resp.StatusCode != http.StatusOK {
return "", fmt.Errorf("failed to get file content: %s", resp.Status)
}
var content GitHubContent
err = json.NewDecoder(resp.Body).Decode(&content)
if err != nil {
return "", err
}
// The content is base64 encoded, so it needs to be decoded
decoded, err := base64.StdEncoding.DecodeString(content.Content)
if err != nil {
return "", err
}
return string(decoded), nil
}
func GetAppVersionFromGitHubChart(owner, repo, chartName, token string) (string, error) {
// Build the path to the Chart.yaml file
path := fmt.Sprintf("charts/%s/Chart.yaml", chartName)
// Get the file content from GitHub
content, err := GetFileContentFromGitHub(owner, repo, path, token)
if err != nil {
return "", err
}
// Parse the YAML content
var chart RemoteChart
err = yaml.Unmarshal([]byte(content), &chart)
if err != nil {
return "", err
}
return chart.AppVersion, nil
}