-
Notifications
You must be signed in to change notification settings - Fork 563
/
Copy pathspec.go
174 lines (155 loc) · 5 KB
/
spec.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
package services
import (
"encoding/json"
"fmt"
"github.com/diggerhq/digger/backend/models"
"github.com/diggerhq/digger/backend/utils"
"github.com/diggerhq/digger/libs/digger_config"
"github.com/diggerhq/digger/libs/scheduler"
"github.com/diggerhq/digger/libs/spec"
"github.com/samber/lo"
"log"
"os"
"strconv"
"strings"
)
func GetVCSTokenFromJob(job models.DiggerJob, gh utils.GithubClientProvider) (*string, error) {
// TODO: make it VCS generic
batch := job.Batch
var token string
switch batch.VCS {
case models.DiggerVCSGithub:
_, ghToken, err := utils.GetGithubService(
gh,
job.Batch.GithubInstallationId,
job.Batch.RepoFullName,
job.Batch.RepoOwner,
job.Batch.RepoName,
)
token = *ghToken
if err != nil {
return nil, fmt.Errorf("TriggerWorkflow: could not retrieve token: %v", err)
}
case models.DiggerVCSGitlab:
token = os.Getenv("DIGGER_GITLAB_ACCESS_TOKEN")
default:
return nil, fmt.Errorf("unknown batch VCS: %v", batch.VCS)
}
return &token, nil
}
func GetRunNameFromJob(job models.DiggerJob) (*string, error) {
var jobSpec scheduler.JobJson
err := json.Unmarshal([]byte(job.SerializedJobSpec), &jobSpec)
if err != nil {
log.Printf("could not unmarshal job string: %v", err)
return nil, fmt.Errorf("could not marshal json string: %v", err)
}
batch := job.Batch
batchIdShort := batch.ID.String()[:8]
diggerCommand := fmt.Sprintf("digger %v", batch.BatchType)
projectName := jobSpec.ProjectName
requestedBy := jobSpec.RequestedBy
prNumber := *jobSpec.PullRequestNumber
runName := fmt.Sprintf("[%v] %v %v By: %v PR: %v", batchIdShort, diggerCommand, projectName, requestedBy, prNumber)
return &runName, nil
}
func getVariablesSpecFromEnvMap(envVars map[string]string, stage string) []spec.VariableSpec {
variablesSpec := make([]spec.VariableSpec, 0)
for k, v := range envVars {
if strings.HasPrefix(v, "$DIGGER_") {
val := strings.ReplaceAll(v, "$DIGGER_", "")
variablesSpec = append(variablesSpec, spec.VariableSpec{
Name: k,
Value: val,
IsSecret: false,
IsInterpolated: true,
Stage: stage,
})
} else {
variablesSpec = append(variablesSpec, spec.VariableSpec{
Name: k,
Value: v,
IsSecret: false,
IsInterpolated: false,
Stage: stage,
})
}
}
return variablesSpec
}
func findDuplicatesInStage(variablesSpec []spec.VariableSpec, stage string) (error) {
// Extract the names from VariableSpec
justNames := lo.Map(variablesSpec, func(item spec.VariableSpec, i int) string {
return item.Name
})
// Group names by their occurrence
nameCounts := lo.CountValues(justNames)
// Filter names that occur more than once
duplicates := lo.Keys(lo.PickBy(nameCounts, func(name string, count int) bool {
return count > 1
}))
if len(duplicates) > 0 {
return fmt.Errorf("duplicate variable names found in '%s' stage: %v", stage, strings.Join(duplicates, ", "))
}
return nil // No duplicates found
}
func GetSpecFromJob(job models.DiggerJob) (*spec.Spec, error) {
var jobSpec scheduler.JobJson
err := json.Unmarshal([]byte(job.SerializedJobSpec), &jobSpec)
if err != nil {
log.Printf("could not unmarshal job string: %v", err)
return nil, fmt.Errorf("could not marshal json string: %v", err)
}
stateVariables := getVariablesSpecFromEnvMap(jobSpec.StateEnvVars, "state")
commandVariables := getVariablesSpecFromEnvMap(jobSpec.CommandEnvVars, "commands")
runVariables := getVariablesSpecFromEnvMap(jobSpec.RunEnvVars, "run")
if err := findDuplicatesInStage(stateVariables, "state"); err != nil {
return nil, err
}
if err := findDuplicatesInStage(commandVariables, "commands"); err != nil {
return nil, err
}
if err := findDuplicatesInStage(runVariables, "run"); err != nil {
return nil, err
}
variablesSpec := make([]spec.VariableSpec, 0)
variablesSpec = append(variablesSpec, stateVariables...)
variablesSpec = append(variablesSpec, commandVariables...)
variablesSpec = append(variablesSpec, runVariables...)
batch := job.Batch
spec := spec.Spec{
JobId: job.DiggerJobID,
CommentId: strconv.FormatInt(*batch.CommentId, 10),
Job: jobSpec,
Reporter: spec.ReporterSpec{
ReportingStrategy: "comments_per_run",
ReporterType: "lazy",
ReportTerraformOutput: batch.ReportTerraformOutputs,
},
Lock: spec.LockSpec{
LockType: "noop",
},
Backend: spec.BackendSpec{
BackendHostname: jobSpec.BackendHostname,
BackendOrganisationName: jobSpec.BackendOrganisationName,
BackendJobToken: jobSpec.BackendJobToken,
BackendType: "backend",
},
VCS: spec.VcsSpec{
VcsType: string(batch.VCS),
Actor: jobSpec.RequestedBy,
RepoFullname: batch.RepoFullName,
RepoOwner: batch.RepoOwner,
RepoName: batch.RepoName,
WorkflowFile: job.WorkflowFile,
},
Variables: variablesSpec,
Policy: spec.PolicySpec{
PolicyType: "http",
},
CommentUpdater: spec.CommentUpdaterSpec{
CommentUpdaterType: digger_config.CommentRenderModeBasic,
},
}
return &spec, nil
}