-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathgitops-repository.go
135 lines (122 loc) · 5.66 KB
/
gitops-repository.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
package main
import (
"fmt"
"harness/client"
"harness/defaults"
"harness/shared"
"harness/telemetry"
. "harness/types"
. "harness/utils"
"github.com/fatih/color"
"github.com/urfave/cli/v2"
)
var agentIdentifier = ""
// create or update a Gitops Repository
func applyRepository(c *cli.Context) error {
filePath := c.String("file")
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 repository using the yaml=",
GetColoredText(filePath, color.FgCyan))
var content, _ = ReadFromFile(c.String("file"))
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))
}
identifier := ValueToString(GetNestedValue(requestBody, "gitops", "identifier").(string))
if projectIdentifier == "" {
projectIdentifier = ValueToString(GetNestedValue(requestBody, "gitops", "projectIdentifier").(string))
}
if orgIdentifier == "" {
orgIdentifier = ValueToString(GetNestedValue(requestBody, "gitops", "orgIdentifier").(string))
}
createOrUpdateRepositoryURL := GetUrlWithQueryParams("", baseURL, defaults.GITOPS_REPOSITORY_ENDPOINT, map[string]string{
"identifier": identifier,
"accountIdentifier": shared.CliCdRequestData.Account,
"orgIdentifier": orgIdentifier,
"projectIdentifier": projectIdentifier,
})
extraParams := map[string]string{
"query.repo": ValueToString(GetNestedValue(requestBody, "gitops", "repo", "repo").(string)),
}
entityExists := GetEntity(baseURL, fmt.Sprintf(defaults.GITOPS_REPOSITORY_ENDPOINT+"/%s", identifier),
projectIdentifier, orgIdentifier, extraParams)
var _ ResponseBody
var err error
if !entityExists {
println("Creating repository with id: ", GetColoredText(identifier, color.FgGreen))
repoPayload := createRepoPayload(requestBody)
_, err = client.Post(createOrUpdateRepositoryURL, shared.CliCdRequestData.AuthToken, repoPayload, defaults.CONTENT_TYPE_JSON, nil)
if err == nil {
println(GetColoredText("Successfully created repository with id= ", color.FgGreen) +
GetColoredText(identifier, color.FgBlue))
telemetry.Track(telemetry.TrackEventInfoPayload{EventName: telemetry.REPO_CREATED, UserId: shared.CliCdRequestData.UserId}, map[string]interface{}{
"accountId": shared.CliCdRequestData.Account,
"type": GetTypeFromYAML(content),
"userId": shared.CliCdRequestData.UserId,
"agentIdentifier": agentIdentifier,
})
telemetry.Track(telemetry.TrackEventInfoPayload{EventName: telemetry.REPO_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 repository with id=", GetColoredText(identifier, color.FgCyan))
println("Updating details of repository with id=", GetColoredText(identifier, color.FgBlue))
var repoPUTUrl = GetUrlWithQueryParams("", baseURL,
fmt.Sprintf("%s/%s", defaults.GITOPS_REPOSITORY_ENDPOINT, identifier), map[string]string{
"accountIdentifier": shared.CliCdRequestData.Account,
"orgIdentifier": orgIdentifier,
"projectIdentifier": projectIdentifier,
})
newRepoPayload := createRepoPUTPayload(requestBody)
_, err = client.Put(repoPUTUrl, shared.CliCdRequestData.AuthToken, newRepoPayload, defaults.CONTENT_TYPE_JSON, nil)
if err == nil {
println(GetColoredText("Successfully updated repository with id= ", color.FgGreen) +
GetColoredText(identifier, color.FgBlue))
telemetry.Track(telemetry.TrackEventInfoPayload{EventName: telemetry.REPO_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
}
func createRepoPayload(requestBody map[string]interface{}) GitOpsRepository {
newRepo := GitOpsRepository{Repo: Repo{
Name: ValueToString(GetNestedValue(requestBody, "gitops", "name").(string)),
ConnectionType: ValueToString(GetNestedValue(requestBody, "gitops", "repo", "connectionType").(string)),
Repo: ValueToString(GetNestedValue(requestBody, "gitops", "repo", "repo").(string)),
Type: ValueToString(GetNestedValue(requestBody, "gitops", "repo", "type").(string))}}
return newRepo
}
func createRepoPUTPayload(requestBody map[string]interface{}) RepoWithUpdateMask {
repoWithUpdateMask := RepoWithUpdateMask{
Repo: Repo{
Name: ValueToString(GetNestedValue(requestBody, "gitops", "name").(string)),
ConnectionType: ValueToString(GetNestedValue(requestBody, "gitops", "repo", "connectionType").(string)),
Repo: ValueToString(GetNestedValue(requestBody, "gitops", "repo", "repo").(string)),
Type: ValueToString(GetNestedValue(requestBody, "gitops", "repo", "type").(string))},
UpdateMask: struct {
Paths []string `json:"paths"`
}(UpdateMask{Paths: []string{"name", "connectionType", "authType"}})}
return repoWithUpdateMask
}