forked from harness/harness-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitops-repository.go
102 lines (92 loc) · 4.25 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
package main
import (
"fmt"
"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")
baseURL := getBaseUrl(c, 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 == GITOPS_AGENT_IDENTIFIER_PLACEHOLDER {
agentIdentifier = TextInput("Enter a valid AgentIdentifier:")
}
content = replacePlaceholderValues(content, 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))
projectIdentifier := valueToString(GetNestedValue(requestBody, "gitops", "projectIdentifier").(string))
orgIdentifier := valueToString(GetNestedValue(requestBody, "gitops", "orgIdentifier").(string))
createOrUpdateRepositoryURL := GetUrlWithQueryParams("", baseURL, GITOPS_REPOSITORY_ENDPOINT, map[string]string{
"identifier": identifier,
"accountIdentifier": cliCdRequestData.Account,
"orgIdentifier": orgIdentifier,
"projectIdentifier": projectIdentifier,
})
extraParams := map[string]string{
"query.repo": valueToString(GetNestedValue(requestBody, "gitops", "repo", "repo").(string)),
}
entityExists := getEntity(baseURL, fmt.Sprintf(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 = Post(createOrUpdateRepositoryURL, cliCdRequestData.AuthToken, repoPayload, CONTENT_TYPE_JSON, nil)
if err == nil {
println(getColoredText("Successfully created repository with id= ", color.FgGreen) +
getColoredText(identifier, color.FgBlue))
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", GITOPS_REPOSITORY_ENDPOINT, identifier), map[string]string{
"accountIdentifier": cliCdRequestData.Account,
"orgIdentifier": orgIdentifier,
"projectIdentifier": projectIdentifier,
})
newRepoPayload := createRepoPUTPayload(requestBody)
_, err = Put(repoPUTUrl, cliCdRequestData.AuthToken, newRepoPayload, CONTENT_TYPE_JSON, nil)
if err == nil {
println(getColoredText("Successfully updated repository with id= ", color.FgGreen) +
getColoredText(identifier, color.FgBlue))
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
}