-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
864 lines (737 loc) · 25.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
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
package main
import (
"bytes"
"context"
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"os"
"regexp"
"strconv"
"strings"
"github.com/google/go-github/v53/github"
"golang.org/x/oauth2"
"gopkg.in/yaml.v2"
)
type ChartVersion struct {
Version string `yaml:"version"`
AppVersion string `yaml:"appVersion"`
}
type Chart struct {
Name string `yaml:"name"`
Versions []ChartVersion `yaml:"versions"`
}
type ChartIndex struct {
Entries map[string][]ChartVersion `yaml:"entries"`
}
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 err error
app_version, err := getLatestReleaseTag(owner, repo, token)
chartInfo, err1 := getLatestChartVersion(chart_index_url, chartName)
if err1 != nil {
fmt.Println("error: ", err)
}
if err != nil {
fmt.Println("error: ", err)
if err.Error() == "failed to get latest tag: 404 Not Found" {
app_version = chartInfo.Version
}
}
app_version = strings.Replace(app_version, releaseRemoveString, "", -1)
app_version = dockerTagPrefix + app_version + dockerTagSuffix
fmt.Println("app version new src repo: " + app_version)
chart_app_version := strings.Replace(chartInfo.AppVersion, releaseRemoveString, "", -1)
chart_app_version = dockerTagPrefix + chart_app_version + dockerTagSuffix
fmt.Println("app version in chart: " + chart_app_version)
fmt.Println("chart version in src repo: " + chartInfo.Version)
fmt.Println("current chart version my repo: " + oldChartVersion)
fmt.Println(app_version)
fmt.Println(oldChartVersion + "compare" + chartInfo.Version)
// if compareVersions(chart_app_version, app_version) < 0 {
// info := chartName + " app_version not matching chart_app_version want: " + app_version
// slackWebhookURL := os.Getenv("SLACK_WEBHOOK_URL")
// if err := sendSlackNotification(slackWebhookURL, info); err != nil {
// fmt.Printf("Failed to send Slack notification: %v\n", err)
// }
// os.Exit(1)
// }
if compareVersions(chart_app_version, app_version) < 0 {
if selfManagedImage == "true" {
fmt.Println("new version found of self managed app found")
err := UpdateChartVersion(
chartName,
"loeken",
"docker-"+valuesChartName,
"version.yaml",
"env",
"version",
app_version,
"main",
token,
)
if err != nil {
fmt.Println("error encountered: ", err)
}
info := chartName + " new version for image!"
slackWebhookURL := os.Getenv("SLACK_WEBHOOK_URL")
if err := sendSlackNotification(slackWebhookURL, info); err != nil {
fmt.Printf("Failed to send Slack notification: %v\n", err)
}
}
if selfManagedChart == "true" {
fmt.Println("new version found of self managed chart found")
err4 := UpdateHelmChartVersionsWithPR(
chartName,
"loeken",
"helm-charts",
"charts/"+chartName+"/Chart.yaml",
extractVersion(app_version),
app_version,
"main",
token,
)
if err4 != nil {
fmt.Println("error encountered: ", err4)
}
// prMessage := fmt.Sprintf("updated helm charts: https://github.com/loeken/helm-charts/pulls")
// // Send a Slack notification
// slackWebhookURL := os.Getenv("SLACK_WEBHOOK_URL") // Make sure this environment variable is set in your GitHub Action
// if err := sendSlackNotification(slackWebhookURL, prMessage); err != nil {
// fmt.Printf("Failed to send Slack notification: %v\n", err)
// }
}
}
if compareVersions(oldChartVersion, chartInfo.Version) < 0 {
fmt.Println("new version found of chart")
// update homelab
err1 := UpdateTargetRevision(valuesChartName, "loeken", "homelab", "deploy/argocd/bootstrap-" + chartType + "-apps/templates/"+valuesChartName+".yaml", extractVersion(chartInfo.Version), "main", token)
if err1 != nil {
fmt.Println("error encountered: ", err1)
}
// update values in this repo
fmt.Println("lets goo 2")
fmt.Println(valuesChartName, "loeken", "homelab-updater", "values-" + chartType + ".yaml", valuesChartName, "chartVersion", extractVersion(chartInfo.Version), "main", token)
err2 := UpdateChartVersionWithPR(valuesChartName, "loeken", "homelab-updater", "values-" + chartType + ".yaml", valuesChartName, "chartVersion", extractVersion(chartInfo.Version), "main", token)
if err2 != nil {
fmt.Println("error encountered: ", err2)
}
prMessage := fmt.Sprintf("Created pull request https://github.com/loeken/homelab/pulls & https://github.com/loeken/homelab-updater/pulls ")
// Send a Slack notification
slackWebhookURL := os.Getenv("SLACK_WEBHOOK_URL") // Make sure this environment variable is set in your GitHub Action
if err := sendSlackNotification(slackWebhookURL, prMessage); err != nil {
fmt.Printf("Failed to send Slack notification: %v\n", err)
}
os.Exit(1)
} else {
fmt.Println("chart is up2date")
}
}
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
}
func getLatestChartVersion(chartIndexURL, chartName string) (*ChartVersion, error) {
resp, err := http.Get(chartIndexURL)
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
var index ChartIndex
err = yaml.Unmarshal(body, &index)
if err != nil {
return nil, 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]
}
versionStr := strings.Join(parts, ".")
return &ChartVersion{Version: versionStr, AppVersion: version.AppVersion}, nil
}
}
return nil, fmt.Errorf("no stable version found for chart %s", chartName)
}
return nil, 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 UpdateChartVersion(chartName, owner, repo, filename, parentBlock, subBlock, newVersion, branch, token string) error {
client := &http.Client{}
// GET request to fetch file contents
fmt.Printf(fmt.Sprintf("https://api.github.com/repos/%s/%s/contents/%s", owner, repo, filename))
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 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[string]interface{})
values := make(map[interface{}]interface{})
if err := yaml.Unmarshal(content, &values); err != nil {
fmt.Printf("error unmarshalling YAML: %v", err)
return err
}
parent, ok := values[parentBlock]
if !ok {
// Handle the case where the parent block does not exist. You might want to create it or return an error.
fmt.Printf("Parent block %s does not exist in YAML\n", parentBlock)
return fmt.Errorf("parent block %s does not exist in YAML", parentBlock)
}
// Check if the parent is of type map[interface{}]interface{}
parentMap, ok := parent.(map[interface{}]interface{})
if !ok {
// Handle the case where the parent block is not a map. This could indicate a malformed YAML or an unexpected structure.
fmt.Printf("Parent block %s is not a map\n", parentBlock)
return fmt.Errorf("parent block %s is not a map", parentBlock)
}
parentMap[subBlock] = newVersion
// Update the chart version
values[parentBlock].(map[interface{}]interface{})[subBlock] = newVersion
//values[parentBlock].(map[string]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()
// 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 updateYAMLContent(values map[interface{}]interface{}, newVersion string, appVersion string) {
// Update appVersion
values["appVersion"] = appVersion
// Update version
values["version"] = newVersion
// Update annotations
if annotations, ok := values["annotations"].(map[interface{}]interface{}); ok {
newVersion = strings.Replace(newVersion, "-", " ", -1)
updatedChanges := fmt.Sprintf("- kind: changed\n description: updated to %s", newVersion)
annotations["artifacthub.io/changes"] = updatedChanges
}
}
func extractVersion(input string) string {
// Use regular expression to extract version patterns
re := regexp.MustCompile(`(\d+\.\d+(\.\d+)?)`)
matches := re.FindStringSubmatch(input)
if len(matches) == 0 {
return "" // Return an empty string if no matches found
}
versionParts := strings.Split(matches[1], ".")
// Append ".0" for the missing parts to make it x.x.x format
for len(versionParts) < 3 {
versionParts = append(versionParts, "0")
}
// Return only the first 3 segments
return strings.Join(versionParts[:3], ".")
}
func UpdateHelmChartVersionsWithPR(chartName, owner, repo, filename, newVersion, appVersion, branch, token string) error {
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
}
// 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 specific blocks in the YAML
updateYAMLContent(values, newVersion, appVersion)
// Marshal the updated values back to YAML
updatedContent, err := yaml.Marshal(values)
if err != nil {
fmt.Printf("error marshalling YAML: %v", err)
return err
}
// 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
}
// 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()
// 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 and send a notification to Slack
prMessage := fmt.Sprintf("Created pull request %s\n", newPR.GetHTMLURL())
fmt.Print(prMessage)
// Send a Slack notification
slackWebhookURL := os.Getenv("SLACK_WEBHOOK_URL") // Make sure this environment variable is set in your GitHub Action
if err := sendSlackNotification(slackWebhookURL, prMessage); err != nil {
fmt.Printf("Failed to send Slack notification: %v\n", err)
}
return nil
}
func UpdateTargetRevision(chartName, owner, repo, filename, newVersion, branch, token string) error {
fmt.Println("foobar here")
fmt.Println(chartName, owner, repo, filename, newVersion, 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 {
return fmt.Errorf("error getting file content: %v", err)
}
// Decode the file content from base64
contentBytes, err := fileContent.GetContent()
if err != nil {
return fmt.Errorf("error decoding file content: %v", err)
}
content := []byte(contentBytes)
// Strip helm template wrappers and capture them
re := regexp.MustCompile(`(?s)({{.*?}})\n(.+?)\n({{.*?}})`)
matches := re.FindSubmatch(content)
if matches == nil || len(matches) < 4 {
return errors.New("couldn't find the expected YAML section")
}
beginWrapper := matches[1] // {{ if .Values.certmanager.enabled }}
strippedContent := matches[2]
endWrapper := matches[3] // {{ end }}
// Unmarshal the stripped YAML content into a map
values := make(map[interface{}]interface{})
if err := yaml.Unmarshal(strippedContent, &values); err != nil {
return fmt.Errorf("error unmarshalling YAML: %v", err)
}
// Update the targetRevision
sourceBlock := values["spec"].(map[interface{}]interface{})["source"].(map[interface{}]interface{})
sourceBlock["targetRevision"] = newVersion
// Marshal the updated values back to YAML
updatedContent, err := yaml.Marshal(values)
if err != nil {
return fmt.Errorf("error marshalling YAML: %v", err)
}
// Re-add the wrappers to the updated content
finalContent := append(beginWrapper, '\n')
finalContent = append(finalContent, updatedContent...)
finalContent = append(finalContent, '\n')
finalContent = append(finalContent, endWrapper...)
// Create a new blob object for the updated content using the finalContent
newBlob, _, err := client.Git.CreateBlob(ctx, owner, repo, &github.Blob{
Content: github.String(string(finalContent)),
Encoding: github.String("utf-8"),
})
if err != nil {
return fmt.Errorf("Error creating blob: %v", err)
}
// 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 {
return fmt.Errorf("error getting ref: %v", err)
}
parentSHA := ref.Object.GetSHA()
// 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 {
return fmt.Errorf("error creating tree: %v", 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 {
return fmt.Errorf("error creating commit: %v", 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 {
return fmt.Errorf("error creating reference: %v", 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 {
return fmt.Errorf("failed to create pull request: %v", err)
}
// Print the URL of the new pull request
fmt.Printf("Created pull request %s\n", newPR.GetHTMLURL())
return nil
}
func sendSlackNotification(webhookURL, message string) error {
payload := map[string]string{"text": message}
jsonPayload, err := json.Marshal(payload)
if err != nil {
return err
}
req, err := http.NewRequest("POST", webhookURL, bytes.NewBuffer(jsonPayload))
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode >= 300 {
body, _ := ioutil.ReadAll(resp.Body)
return fmt.Errorf("received non-2xx response: %d, body: %s", resp.StatusCode, body)
}
return nil
}