-
Notifications
You must be signed in to change notification settings - Fork 13
/
services.go
135 lines (121 loc) · 5.13 KB
/
services.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"
"strings"
log "github.com/sirupsen/logrus"
"github.com/fatih/color"
"github.com/urfave/cli/v2"
)
var cloudBucketName = ""
func applyService(c *cli.Context) error {
filePath := c.String("file")
baseURL := GetNGBaseURL(c)
if filePath == "" {
fmt.Println("Please enter valid filename")
return nil
}
cloudProjectName = c.String("cloud-project")
cloudBucketName = c.String("cloud-bucket")
cloudRegionName = c.String("cloud-region")
orgIdentifier := c.String("org-id")
projectIdentifier := c.String("project-id")
fmt.Println("Trying to create or update service using the yaml=",
GetColoredText(filePath, color.FgCyan))
createOrUpdateSvcURL := GetUrlWithQueryParams("", baseURL, defaults.SERVICES_ENDPOINT, map[string]string{
"accountIdentifier": CliCdRequestData.Account,
})
var content, _ = ReadFromFile(c.String("file"))
content = updateServiceYamlContent(content)
requestBody := GetJsonFromYaml(content)
if requestBody == nil {
println(GetColoredText("Please enter valid yaml", color.FgRed))
}
identifier := ValueToString(GetNestedValue(requestBody, "service", "identifier").(string))
name := ValueToString(GetNestedValue(requestBody, "service", "name").(string))
if orgIdentifier == "" {
orgIdentifier = defaults.DEFAULT_ORG
}
if projectIdentifier == "" {
projectIdentifier = defaults.DEFAULT_PROJECT
}
//setup payload for svc create / update
svcPayload := HarnessService{Identifier: identifier, Name: name,
ProjectIdentifier: projectIdentifier, OrgIdentifier: orgIdentifier, Yaml: content}
entityExists := GetEntity(baseURL, fmt.Sprintf("servicesV2/%s", identifier),
projectIdentifier, orgIdentifier, map[string]string{})
var err error
if !entityExists {
println("Creating service with id: ", GetColoredText(identifier, color.FgGreen))
_, err = client.Post(createOrUpdateSvcURL, CliCdRequestData.AuthToken, svcPayload, defaults.CONTENT_TYPE_JSON, nil)
if err == nil {
println(GetColoredText("Successfully created service with id= ", color.FgGreen) +
GetColoredText(identifier, color.FgBlue))
telemetry.Track(telemetry.TrackEventInfoPayload{EventName: telemetry.SVC_CREATED, UserId: CliCdRequestData.UserId}, map[string]interface{}{
"accountId": CliCdRequestData.Account,
"connectorType": GetTypeFromYAML(content),
"userId": CliCdRequestData.UserId,
})
return nil
}
} else {
println("Found service with id=", GetColoredText(identifier, color.FgCyan))
println("Updating details of service with id=", GetColoredText(identifier, color.FgBlue))
_, err = client.Put(createOrUpdateSvcURL, CliCdRequestData.AuthToken, svcPayload, defaults.CONTENT_TYPE_JSON, nil)
if err == nil {
println(GetColoredText("Successfully updated connector with id= ", color.FgGreen) +
GetColoredText(identifier, color.FgBlue))
telemetry.Track(telemetry.TrackEventInfoPayload{EventName: telemetry.SVC_UPDATED, UserId: CliCdRequestData.UserId}, map[string]interface{}{
"accountId": CliCdRequestData.Account,
"type": GetTypeFromYAML(content),
"userId": CliCdRequestData.UserId,
})
return nil
}
}
return nil
}
func updateServiceYamlContent(content string) string {
var serviceType = strings.ToLower(FetchCloudType(content))
switch {
case strings.EqualFold(serviceType, defaults.GCP):
log.Info("Looks like you are creating a service for GCP," +
" validating GCP project and bucket now...")
if cloudProjectName == "" || cloudProjectName == defaults.PROJECT_NAME_PLACEHOLDER {
cloudProjectName = TextInput("Enter a valid GCP project name:")
}
if cloudBucketName == "" || cloudBucketName == defaults.BUCKET_NAME_PLACEHOLDER {
cloudBucketName = TextInput("Enter a valid GCP bucket name:")
}
log.Info("Got your gcp project and bucket info, let's create the service now...")
content = ReplacePlaceholderValues(content, defaults.PROJECT_NAME_PLACEHOLDER, cloudProjectName)
content = ReplacePlaceholderValues(content, defaults.BUCKET_NAME_PLACEHOLDER, cloudBucketName)
return content
case strings.EqualFold(serviceType, defaults.AWS):
log.Info("Looks like you are creating a service for AWS, validating yaml now...")
hasRegionName := strings.Contains(content, defaults.REGION_NAME_PLACEHOLDER)
hasBucketName := strings.Contains(content, defaults.BUCKET_NAME_PLACEHOLDER)
if hasRegionName && (cloudRegionName == "" || cloudRegionName == defaults.REGION_NAME_PLACEHOLDER) {
cloudRegionName = TextInput("Enter a valid AWS region name:")
}
if hasBucketName && (cloudBucketName == "" || cloudBucketName == defaults.BUCKET_NAME_PLACEHOLDER) {
cloudBucketName = TextInput("Enter a valid AWS bucket name:")
}
log.Info("Got your aws project and bucket info, let's create the service now...")
content = ReplacePlaceholderValues(content, defaults.REGION_NAME_PLACEHOLDER, cloudRegionName)
content = ReplacePlaceholderValues(content, defaults.BUCKET_NAME_PLACEHOLDER, cloudBucketName)
return content
default:
return content
}
return content
}
func deleteService(*cli.Context) error {
fmt.Println(defaults.NOT_IMPLEMENTED)
return nil
}