-
Notifications
You must be signed in to change notification settings - Fork 485
/
helper.go
345 lines (309 loc) · 8.7 KB
/
helper.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
/*
* Copyright (c) 2020 Devtron Labs
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package util
import (
"archive/tar"
"compress/gzip"
"encoding/json"
"fmt"
"github.com/aws/aws-sdk-go-v2/service/ecr/types"
"github.com/devtron-labs/devtron/internal/middleware"
"github.com/juju/errors"
"io"
"io/ioutil"
"math/rand"
"net/http"
"os"
"path/filepath"
"regexp"
"sort"
"strconv"
"strings"
"time"
"go.uber.org/zap"
)
type CDMetrics struct {
AppName string
DeploymentType string
Status string
EnvironmentName string
Time float64
}
type CIMetrics struct {
CacheDownDuration float64 `json:"cacheDownDuration"`
PreCiDuration float64 `json:"preCiDuration"`
BuildDuration float64 `json:"buildDuration"`
PostCiDuration float64 `json:"postCiDuration"`
CacheUpDuration float64 `json:"cacheUpDuration"`
TotalDuration float64 `json:"totalDuration"`
CacheDownStartTime time.Time `json:"cacheDownStartTime"`
PreCiStartTime time.Time `json:"preCiStart"`
BuildStartTime time.Time `json:"buildStartTime"`
PostCiStartTime time.Time `json:"postCiStartTime"`
CacheUpStartTime time.Time `json:"cacheUpStartTime"`
TotalStartTime time.Time `json:"totalStartTime"`
}
func ContainsString(list []string, element string) bool {
if len(list) == 0 {
return false
}
for _, l := range list {
if l == element {
return true
}
}
return false
}
func AppendErrorString(errs []string, err error) []string {
if err != nil {
errs = append(errs, err.Error())
}
return errs
}
func GetErrorOrNil(errs []string) error {
if len(errs) > 0 {
return fmt.Errorf(strings.Join(errs, "\n"))
}
return nil
}
func ExtractChartVersion(chartVersion string) (int, int, error) {
if chartVersion == "" {
return 0, 0, nil
}
chartVersions := strings.Split(chartVersion, ".")
chartMajorVersion, err := strconv.Atoi(chartVersions[0])
if err != nil {
return 0, 0, err
}
chartMinorVersion, err := strconv.Atoi(chartVersions[1])
if err != nil {
return 0, 0, err
}
return chartMajorVersion, chartMinorVersion, nil
}
func ExtractEcrImage(registryId, region, repoName, tag string) string {
return fmt.Sprintf("%s.dkr.ecr.%s.amazonaws.com/%s:%s", registryId, region, repoName, tag)
}
type Closer interface {
Close() error
}
func Close(c Closer, logger *zap.SugaredLogger) {
if c == nil {
return
}
if err := c.Close(); err != nil {
logger.Warnf("failed to close %v: %v", c, err)
}
}
var chars = []rune("abcdefghijklmnopqrstuvwxyz0123456789")
// Generates random string
func Generate(size int) string {
rand.Seed(time.Now().UnixNano())
var b strings.Builder
for i := 0; i < size; i++ {
b.WriteRune(chars[rand.Intn(len(chars))])
}
str := b.String()
return str
}
func HttpRequest(url string) (map[string]interface{}, error) {
req, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
return nil, err
}
//var client *http.Client
client := &http.Client{}
res, err := client.Do(req)
if err != nil {
return nil, err
}
if res.StatusCode >= 200 && res.StatusCode <= 299 {
resBody, err := ioutil.ReadAll(res.Body)
if err != nil {
return nil, err
}
var apiRes map[string]interface{}
err = json.Unmarshal(resBody, &apiRes)
if err != nil {
return nil, err
}
return apiRes, err
}
return nil, err
}
func CheckForMissingFiles(chartLocation string) error {
imageDescriptorPath := filepath.Clean(filepath.Join(chartLocation, ".image_descriptor_template.json"))
if _, err := os.Stat(imageDescriptorPath); os.IsNotExist(err) {
return errors.New(".image_descriptor_template.json file not present in the directory")
}
return nil
}
func ExtractTarGz(gzipStream io.Reader, chartDir string) error {
uncompressedStream, err := gzip.NewReader(gzipStream)
if err != nil {
return err
}
tarReader := tar.NewReader(uncompressedStream)
for true {
header, err := tarReader.Next()
if err == io.EOF {
break
}
if err != nil {
return err
}
switch header.Typeflag {
case tar.TypeDir:
if _, err := os.Stat(filepath.Join(chartDir, header.Name)); os.IsNotExist(err) {
if err := os.MkdirAll(filepath.Join(chartDir, header.Name), 0755); err != nil {
return err
}
} else {
break
}
case tar.TypeReg:
outFile, err := os.Create(filepath.Join(chartDir, header.Name))
if err != nil {
dirName := filepath.Dir(header.Name)
if _, err1 := os.Stat(filepath.Join(chartDir, dirName)); os.IsNotExist(err1) {
if err1 = os.MkdirAll(filepath.Join(chartDir, dirName), 0755); err1 != nil {
return err1
}
outFile, err = os.Create(filepath.Join(chartDir, header.Name))
if err != nil {
return err
}
}
}
if _, err := io.Copy(outFile, tarReader); err != nil {
return err
}
outFile.Close()
default:
return err
}
}
return nil
}
func BuildDevtronBomUrl(bomUrl string, version string) string {
return fmt.Sprintf(bomUrl, version)
}
// InterfaceToMapAdapter it will convert any golang struct into map
func InterfaceToMapAdapter(resp interface{}) map[string]interface{} {
var dat map[string]interface{}
b, err := json.Marshal(resp)
if err != nil {
fmt.Printf("Error: %s", err)
return dat
}
if err := json.Unmarshal(b, &dat); err != nil {
fmt.Printf("Error: %s", err)
return dat
}
return dat
}
func TriggerCDMetrics(wfr CDMetrics, exposeCDMetrics bool) {
if exposeCDMetrics && (wfr.Status == WorkflowFailed || wfr.Status == WorkflowSucceeded) {
middleware.CdDuration.WithLabelValues(wfr.AppName, wfr.Status, wfr.EnvironmentName, wfr.DeploymentType).Observe(wfr.Time)
}
}
func TriggerCIMetrics(Metrics CIMetrics, exposeCIMetrics bool, PipelineName string, AppName string) {
if exposeCIMetrics {
middleware.CacheDownloadDuration.WithLabelValues(PipelineName, AppName).Observe(Metrics.CacheDownDuration)
middleware.CiDuration.WithLabelValues(PipelineName, AppName).Observe(Metrics.TotalDuration)
if Metrics.CacheUpDuration != 0 {
middleware.CacheUploadDuration.WithLabelValues(PipelineName, AppName).Observe(Metrics.CacheUpDuration)
}
if Metrics.PostCiDuration != 0 {
middleware.PostCiDuration.WithLabelValues(PipelineName, AppName).Observe(Metrics.PostCiDuration)
}
if Metrics.PreCiDuration != 0 {
middleware.PreCiDuration.WithLabelValues(PipelineName, AppName).Observe(Metrics.PreCiDuration)
}
middleware.BuildDuration.WithLabelValues(PipelineName, AppName).Observe(Metrics.BuildDuration)
}
}
func TriggerGitOpsMetrics(operation string, method string, startTime time.Time, err error) {
status := "Success"
if err != nil {
status = "Failed"
}
middleware.GitOpsDuration.WithLabelValues(operation, method, status).Observe(time.Since(startTime).Seconds())
}
func InterfaceToString(resp interface{}) string {
var dat string
b, err := json.Marshal(resp)
if err != nil {
fmt.Printf("Error: %s", err)
return dat
}
if err := json.Unmarshal(b, &dat); err != nil {
fmt.Printf("Error: %s", err)
return dat
}
return dat
}
func InterfaceToFloat(resp interface{}) float64 {
var dat float64
b, err := json.Marshal(resp)
if err != nil {
fmt.Printf("Error: %s", err)
return dat
}
if err := json.Unmarshal(b, &dat); err != nil {
fmt.Printf("Error: %s", err)
return dat
}
return dat
}
type HpaResourceRequest struct {
ResourceName string
ReqReplicaCount float64
ReqMaxReplicas float64
ReqMinReplicas float64
IsEnable bool
Group string
Version string
Kind string
}
func ConvertStringSliceToMap(inputs []string) map[string]bool {
m := make(map[string]bool, len(inputs))
for _, input := range inputs {
m[input] = true
}
return m
}
func MatchRegexExpression(exp string, text string) (bool, error) {
rExp, err := regexp.Compile(exp)
if err != nil {
return false, err
}
matched := rExp.Match([]byte(text))
return matched, nil
}
func GetLatestImageAccToImagePushedAt(imageDetails []types.ImageDetail) types.ImageDetail {
sort.Slice(imageDetails, func(i, j int) bool {
return imageDetails[i].ImagePushedAt.After(*imageDetails[j].ImagePushedAt)
})
return imageDetails[0]
}
func GetReverseSortedImageDetails(imageDetails []types.ImageDetail) []types.ImageDetail {
sort.Slice(imageDetails, func(i, j int) bool {
return imageDetails[i].ImagePushedAt.Before(*imageDetails[j].ImagePushedAt)
})
return imageDetails
}