-
Notifications
You must be signed in to change notification settings - Fork 12
/
gitops-application.go
193 lines (178 loc) · 8.47 KB
/
gitops-application.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
package main
import (
"fmt"
"harness/client"
"harness/defaults"
"harness/shared"
"harness/telemetry"
. "harness/types"
. "harness/utils"
"regexp"
"github.com/fatih/color"
"github.com/urfave/cli/v2"
)
func applyGitopsApplications(c *cli.Context) error {
filePath := c.String("file")
githubUsername := c.String("git-user")
orgIdentifier := c.String("org-id")
projectIdentifier := c.String("project-id")
baseURL := GetBaseUrl(c, defaults.GITOPS_BASE_URL)
if filePath == "" {
fmt.Println("Please enter valid filename")
return nil
}
fmt.Println("Trying to create or update gitops-application using the yaml=",
GetColoredText(filePath, color.FgCyan))
var content, _ = ReadFromFile(c.String("file"))
if isGithubRepoUrl(content) {
if githubUsername == "" || githubUsername == defaults.GITHUB_USERNAME_PLACEHOLDER {
githubUsername = TextInput("Enter valid github username:")
}
content = ReplacePlaceholderValues(content, defaults.GITHUB_USERNAME_PLACEHOLDER, githubUsername)
}
agentIdentifier = c.String("agent-identifier")
if agentIdentifier == "" || agentIdentifier == defaults.GITOPS_AGENT_IDENTIFIER_PLACEHOLDER {
agentIdentifier = TextInput("Enter a valid AgentIdentifier:")
}
content = ReplacePlaceholderValues(content, defaults.GITOPS_AGENT_IDENTIFIER_PLACEHOLDER, agentIdentifier)
baseURL = baseURL + agentIdentifier
requestBody := GetJsonFromYaml(content)
if requestBody == nil {
println(GetColoredText("Please enter valid repository yaml file", color.FgRed))
}
if orgIdentifier == "" {
orgIdentifier = ValueToString(GetNestedValue(requestBody, "gitops", "orgIdentifier").(string))
}
if projectIdentifier == "" {
projectIdentifier = ValueToString(GetNestedValue(requestBody, "gitops", "projectIdentifier").(string))
}
clusterIdentifier := ValueToString(GetNestedValue(requestBody, "gitops", "clusterIdentifier").(string))
repoIdentifier := ValueToString(GetNestedValue(requestBody, "gitops", "repoIdentifier").(string))
createOrUpdateApplicationURL := GetUrlWithQueryParams("", baseURL, defaults.GITOPS_APPLICATION_ENDPOINT, map[string]string{
"accountIdentifier": shared.CliCdRequestData.Account,
"orgIdentifier": orgIdentifier,
"projectIdentifier": projectIdentifier,
"clusterIdentifier": clusterIdentifier,
"repoIdentifier": repoIdentifier,
})
applicationName := ValueToString(GetNestedValue(requestBody, "gitops", "name").(string))
syncApplicationURL := GetUrlWithQueryParams("", baseURL,
fmt.Sprintf(defaults.GITOPS_APPLICATION_ENDPOINT+"/%s", applicationName+"/sync"), map[string]string{
"routingId": shared.CliCdRequestData.Account,
"accountIdentifier": shared.CliCdRequestData.Account,
"orgIdentifier": orgIdentifier,
"projectIdentifier": projectIdentifier,
})
extraParams := map[string]string{
"agentIdentifier": agentIdentifier,
}
entityExists := GetEntity(baseURL, fmt.Sprintf(defaults.GITOPS_APPLICATION_ENDPOINT+"/%s", applicationName),
projectIdentifier, orgIdentifier, extraParams)
var _ ResponseBody
var err error
if !entityExists {
println("Creating GitOps-Application with id: ", GetColoredText(applicationName, color.FgGreen))
applicationPayload := createGitOpsApplicationPayload(requestBody)
_, err = client.Post(createOrUpdateApplicationURL, shared.CliCdRequestData.AuthToken, applicationPayload, defaults.CONTENT_TYPE_JSON, nil)
if err == nil {
println(GetColoredText("Successfully created GitOps-Application with id= ", color.FgGreen) +
GetColoredText(applicationName, color.FgBlue))
telemetry.Track(telemetry.TrackEventInfoPayload{EventName: telemetry.APP_CREATED, UserId: shared.CliCdRequestData.UserId}, map[string]interface{}{
"accountId": shared.CliCdRequestData.Account,
"type": GetTypeFromYAML(content),
"userId": shared.CliCdRequestData.UserId,
"agentIdentifier": agentIdentifier,
})
return nil
}
} else {
println("Found GitOps Application with id=", GetColoredText(applicationName, color.FgCyan))
println("Updating details of GitOps Application with id=", GetColoredText(applicationName, color.FgBlue))
var appPUTUrl = GetUrlWithQueryParams("", baseURL,
fmt.Sprintf(defaults.GITOPS_APPLICATION_ENDPOINT+"/%s", applicationName), map[string]string{
"routingId": shared.CliCdRequestData.Account,
"accountIdentifier": shared.CliCdRequestData.Account,
"orgIdentifier": orgIdentifier,
"projectIdentifier": projectIdentifier,
"repoIdentifier": repoIdentifier,
"clusterIdentifier": clusterIdentifier,
})
newAppPayload := createGitOpsApplicationPUTPayload(requestBody)
syncPayload := createGitOpsApplicationPayload(requestBody)
println("Syncing the GitOps Application before updating the spec:", GetColoredText(applicationName, color.FgGreen))
_, err = client.Post(syncApplicationURL, shared.CliCdRequestData.AuthToken, syncPayload, defaults.CONTENT_TYPE_JSON, nil)
if err == nil {
println(GetColoredText("Successfully synced GitOps app with id= ", color.FgGreen) +
GetColoredText(applicationName, color.FgBlue))
_, err = client.Put(appPUTUrl, shared.CliCdRequestData.AuthToken, newAppPayload, defaults.CONTENT_TYPE_JSON, nil)
if err == nil {
println(GetColoredText("Successfully updated GitOps app with id= ", color.FgGreen) +
GetColoredText(applicationName, color.FgBlue))
telemetry.Track(telemetry.TrackEventInfoPayload{EventName: telemetry.APP_UPDATED, UserId: shared.CliCdRequestData.UserId}, map[string]interface{}{
"accountId": shared.CliCdRequestData.Account,
"type": GetTypeFromYAML(content),
"userId": shared.CliCdRequestData.UserId,
"agentIdentifier": agentIdentifier,
})
return nil
}
return nil
}
}
return nil
}
func createGitOpsApplicationPayload(requestBody map[string]interface{}) GitOpsApplication {
newApplication := GitOpsApplication{
Application: Application{
Metadata: Metadata{
Labels: Labels{
Envref: ValueToString(GetNestedValue(requestBody, "gitops", "application", "metadata", "labels", "harness.io/envRef").(string)),
Serviceref: ValueToString(GetNestedValue(requestBody, "gitops", "application", "metadata", "labels", "harness.io/serviceRef").(string)),
},
Name: ValueToString(GetNestedValue(requestBody, "gitops", "name").(string)),
ClusterName: ValueToString(GetNestedValue(requestBody, "gitops", "application", "metadata", "clusterName").(string)),
},
Spec: Spec{
Source: Source{
RepoURL: ValueToString(GetNestedValue(requestBody, "gitops", "application", "spec", "source", "repoURL").(string)),
Path: ValueToString(GetNestedValue(requestBody, "gitops", "application", "spec", "source", "path").(string)),
TargetRevision: ValueToString(GetNestedValue(requestBody, "gitops", "application", "spec", "source", "targetRevision").(string)),
},
Destination: Destination{
Server: ValueToString(GetNestedValue(requestBody, "gitops", "application", "spec", "destination", "server").(string)),
Namespace: ValueToString(GetNestedValue(requestBody, "gitops", "application", "spec", "destination", "namespace").(string)),
},
},
},
}
return newApplication
}
func createGitOpsApplicationPUTPayload(requestBody map[string]interface{}) GitOpsApplication {
putApp := GitOpsApplication{
Application{
Metadata: Metadata{
Labels: Labels{
Serviceref: ValueToString(GetNestedValue(requestBody, "gitops", "application", "metadata", "labels", "harness.io/serviceRef").(string)),
Envref: ValueToString(GetNestedValue(requestBody, "gitops", "application", "metadata", "labels", "harness.io/envRef").(string)),
},
},
Spec: Spec{
Source: Source{
RepoURL: ValueToString(GetNestedValue(requestBody, "gitops", "application", "spec", "source", "repoURL").(string)),
Path: ValueToString(GetNestedValue(requestBody, "gitops", "application", "spec", "source", "path").(string)),
TargetRevision: ValueToString(GetNestedValue(requestBody, "gitops", "application", "spec", "source", "targetRevision").(string)),
},
Destination: Destination{
Server: ValueToString(GetNestedValue(requestBody, "gitops", "application", "spec", "destination", "server").(string)),
Namespace: ValueToString(GetNestedValue(requestBody, "gitops", "application", "spec", "destination", "namespace").(string)),
},
},
},
}
return putApp
}
func isGithubRepoUrl(str string) bool {
regexPattern := `repoURL:\s+https:\/\/github.com\/GITHUB_USERNAME`
match, _ := regexp.MatchString(regexPattern, str)
return match
}