-
Notifications
You must be signed in to change notification settings - Fork 564
/
Copy pathexec.go
364 lines (308 loc) · 10.5 KB
/
exec.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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package cmd
import (
"bytes"
"context"
"encoding/json"
"fmt"
"github.com/diggerhq/digger/dgctl/utils"
"github.com/diggerhq/digger/libs/backendapi"
orchestrator_scheduler "github.com/diggerhq/digger/libs/scheduler"
"github.com/diggerhq/digger/libs/spec"
"github.com/google/go-github/v61/github"
"github.com/spf13/pflag"
"github.com/spf13/viper"
"io"
"log"
"net/http"
"net/url"
"os"
"os/exec"
"path/filepath"
"strings"
"time"
"github.com/diggerhq/digger/libs/digger_config"
"github.com/spf13/cobra"
)
var viperExec *viper.Viper
type execConfig struct {
Project string `mapstructure:"project"`
Command string `mapstructure:"command"`
}
func getRepoUsername() (string, error) {
// Execute 'git config --get remote.origin.url' to get the URL of the origin remote
cmd := exec.Command("git", "config", "--get", "user.name")
out, err := cmd.Output()
return strings.TrimSpace(string(out)), err
}
func getRepoFullname() (string, error) {
// Execute 'git config --get remote.origin.url' to get the URL of the origin remote
cmd := exec.Command("git", "config", "--get", "remote.origin.url")
out, err := cmd.Output()
if err != nil {
return "", err
}
// Convert the output to a string and trim any whitespace
originURL := strings.TrimSpace(string(out))
// Extract the organization/user name and repository name from the URL
var repoFullname string
if strings.HasPrefix(originURL, "git@") {
// Format: git@github.com:orgName/repoName.git
parts := strings.Split(originURL, ":")
repoFullname = parts[1]
repoFullname = strings.ReplaceAll(repoFullname, ".git", "")
}
return repoFullname, nil
}
func GetUrlContents(url string) (string, error) {
resp, err := http.Get(url)
if err != nil {
return "", fmt.Errorf("%v", err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return "", fmt.Errorf("%v", err)
}
content := string(body)
return content, nil
}
func GetSpec(diggerUrl string, authToken string, command string, actor string, projectMarshalled string, diggerConfigMarshalled string, repoFullName string) ([]byte, error) {
payload := spec.GetSpecPayload{
Command: command,
RepoFullName: repoFullName,
Actor: actor,
DiggerConfig: diggerConfigMarshalled,
Project: projectMarshalled,
}
u, err := url.Parse(diggerUrl)
if err != nil {
log.Fatalf("Not able to parse digger cloud url: %v", err)
}
u.Path = filepath.Join("get-spec")
request := payload.ToMapStruct()
jsonData, err := json.Marshal(request)
if err != nil {
log.Fatalf("Not able to marshal request: %v", err)
}
req, err := http.NewRequest("POST", u.String(), bytes.NewBuffer(jsonData))
if err != nil {
return nil, fmt.Errorf("error while creating request: %v", err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", authToken))
client := http.DefaultClient
resp, err := client.Do(req)
if err != nil {
return nil, fmt.Errorf("error while sending request: %v", err)
}
if resp.StatusCode != http.StatusOK {
return nil, fmt.Errorf("unexpected status when getting spec: %v", resp.StatusCode)
}
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, fmt.Errorf("Could not read response body: %v", err)
}
return body, nil
}
func GetWorkflowIdAndUrlFromDiggerJobId(client *github.Client, repoOwner string, repoName string, diggerJobID string) (*int64, *int64, *string, error) {
timeFilter := time.Now().Add(-5 * time.Minute)
runs, _, err := client.Actions.ListRepositoryWorkflowRuns(context.Background(), repoOwner, repoName, &github.ListWorkflowRunsOptions{
Created: ">=" + timeFilter.Format(time.RFC3339),
})
if err != nil {
return nil, nil, nil, fmt.Errorf("error listing workflow runs %v", err)
}
for _, workflowRun := range runs.WorkflowRuns {
workflowjobs, _, err := client.Actions.ListWorkflowJobs(context.Background(), repoOwner, repoName, *workflowRun.ID, nil)
if err != nil {
return nil, nil, nil, fmt.Errorf("error listing workflow jobs for run %v %v", workflowRun.ID, err)
}
for _, workflowjob := range workflowjobs.Jobs {
for _, step := range workflowjob.Steps {
if strings.Contains(*step.Name, diggerJobID) {
url := fmt.Sprintf("https://github.com/%v/%v/actions/runs/%v", repoOwner, repoName, *workflowRun.ID)
return workflowRun.ID, workflowjob.ID, &url, nil
}
}
}
}
return nil, nil, nil, fmt.Errorf("workflow not found")
}
func cleanupDiggerOutput(output string) string {
startingDelimiter := "<========= DIGGER RUNNING IN MANUAL MODE =========>"
endingDelimiter := "<========= DIGGER COMPLETED =========>"
startPos := 0
endPos := len(output)
// removes output of terraform -version command that terraform-exec executes on every run
i := strings.Index(output, startingDelimiter)
if i != -1 {
startPos = i + len(startingDelimiter)
}
e := strings.Index(output, endingDelimiter)
if e != -1 {
endPos = e
}
// This should not happen but in case we get here we avoid slice bounds out of range exception by resetting endPos
if endPos <= startPos {
endPos = len(output)
}
return output[startPos:endPos]
}
// validateCmd represents the validate command
var execCmd = &cobra.Command{
Use: "exec [flags]",
Short: "Execute a command on a project",
Long: `Execute a command on a project`,
Run: func(cmd *cobra.Command, args []string) {
var execConfig execConfig
viperExec.Unmarshal(&execConfig)
log.Printf("%v - %v ", execConfig.Project, execConfig.Command)
if execConfig.Command != "digger plan" {
log.Printf("ERROR: currently only 'digger plan' supported with exec command")
os.Exit(1)
}
config, _, _, err := digger_config.LoadDiggerConfig("./", true, nil)
if err != nil {
log.Printf("Invalid digger config file: %v. Exiting.", err)
os.Exit(1)
}
diggerHostname := os.Getenv("DIGGER_BACKEND_URL")
actor, err := getRepoUsername()
if err != nil {
log.Printf("could not get repo actor: %v", err)
os.Exit(1)
}
repoFullname, err := getRepoFullname()
if err != nil {
log.Printf("could not get repo full name: %v", err)
os.Exit(1)
}
projectName := execConfig.Project
command := execConfig.Command
projectConfig := config.GetProject(projectName)
if projectConfig == nil {
log.Printf("project %v not found in config, does it exist?", projectName)
os.Exit(1)
}
projectMarshalled, err := json.Marshal(projectConfig)
if err != nil {
log.Printf("could not marshall project: %v", err)
os.Exit(1)
}
configMarshalled, err := json.Marshal(config)
if err != nil {
log.Printf("could not marshall config: %v", err)
os.Exit(1)
}
specBytes, err := GetSpec(diggerHostname, "abc123", command, actor, string(projectMarshalled), string(configMarshalled), repoFullname)
if err != nil {
log.Printf("failed to get spec from backend: %v", err)
os.Exit(1)
}
var spec spec.Spec
err = json.Unmarshal(specBytes, &spec)
// attach zip archive to backend
backendToken := spec.Job.BackendJobToken
zipLocation, err := utils.ArchiveGitRepo("./")
if err != nil {
log.Printf("error archiving zip repo: %v", err)
os.Exit(1)
}
backendApi := backendapi.DiggerApi{DiggerHost: diggerHostname, AuthToken: backendToken}
statusCode, respBody, err := backendApi.UploadJobArtefact(zipLocation)
if err != nil {
log.Printf("could not attach zip artefact: %v", err)
os.Exit(1)
}
if *statusCode != 200 {
log.Printf("unexpected status code from backend: %v", *statusCode)
log.Printf("server response: %v", *respBody)
os.Exit(1)
}
token := os.Getenv("GITHUB_PAT_TOKEN")
if token == "" {
log.Printf("missing variable: GITHUB_PAT_TOKEN")
os.Exit(1)
}
client := github.NewClient(nil).WithAuthToken(token)
githubUrl := spec.VCS.GithubEnterpriseHostname
if githubUrl != "" {
githubEnterpriseBaseUrl := fmt.Sprintf("https://%v/api/v3/", githubUrl)
githubEnterpriseUploadUrl := fmt.Sprintf("https://%v/api/uploads/", githubUrl)
client, err = client.WithEnterpriseURLs(githubEnterpriseBaseUrl, githubEnterpriseUploadUrl)
if err != nil {
log.Printf("could not instantiate github enterprise url: %v", err)
os.Exit(1)
}
}
repoOwner, repoName, _ := strings.Cut(repoFullname, "/")
repository, _, err := client.Repositories.Get(context.Background(), repoOwner, repoName)
if err != nil {
log.Fatalf("Failed to get repository: %v", err)
}
inputs := orchestrator_scheduler.WorkflowInput{
Spec: string(specBytes),
RunName: fmt.Sprintf("digger %v manual run by %v", command, spec.VCS.Actor),
}
_, err = client.Actions.CreateWorkflowDispatchEventByFileName(context.Background(), spec.VCS.RepoOwner, spec.VCS.RepoName, spec.VCS.WorkflowFile, github.CreateWorkflowDispatchEventRequest{
Ref: *repository.DefaultBranch,
Inputs: inputs.ToMap(),
})
if err != nil {
log.Printf("error while triggering workflow: %v", err)
} else {
log.Printf("workflow has triggered successfully! waiting for results ...")
}
var logsUrl *string
var runId *int64
var jobId *int64
for {
runId, jobId, logsUrl, err = GetWorkflowIdAndUrlFromDiggerJobId(client, repoOwner, repoName, spec.JobId)
if err == nil {
break
}
time.Sleep(time.Second * 1)
}
log.Printf("waiting for logs to be available, you can view job in this url: %v runId %v", *logsUrl, *runId)
log.Printf("......")
for {
j, _, err := client.Actions.GetWorkflowJobByID(context.Background(), repoOwner, repoName, *jobId)
if err != nil {
log.Printf("GetWorkflowJobByID error: %v please view the logs in the job directly", err)
os.Exit(1)
}
if *j.Status == "completed" {
break
}
time.Sleep(time.Second * 1)
}
logs, _, err := client.Actions.GetWorkflowJobLogs(context.Background(), repoOwner, repoName, *jobId, 1)
log.Printf("streaming logs from remote job:")
logsContent, err := GetUrlContents(logs.String())
if err != nil {
log.Printf("error while fetching logs: %v", err)
os.Exit(1)
}
cleanedLogs := cleanupDiggerOutput(logsContent)
log.Printf("logsContent is: %v", cleanedLogs)
},
}
func init() {
flags := []pflag.Flag{
{Name: "project", Usage: "the project to run command on"},
{Name: "command", Usage: "the command to run"},
}
viperExec = viper.New()
viperExec.SetEnvPrefix("DIGGER")
viperExec.SetEnvKeyReplacer(strings.NewReplacer("-", "_"))
viperExec.AutomaticEnv()
for _, flag := range flags {
execCmd.Flags().String(flag.Name, "", flag.Usage)
execCmd.MarkFlagRequired(flag.Name)
viperExec.BindPFlag(flag.Name, execCmd.Flags().Lookup(flag.Name))
}
rootCmd.AddCommand(execCmd)
}