-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitRunner.go
175 lines (140 loc) · 5.57 KB
/
gitRunner.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
package main
import (
"context"
"errors"
"fmt"
"io/ioutil"
"math"
"path/filepath"
"regexp"
"runtime"
"time"
foundation "github.com/estafette/estafette-foundation"
"github.com/rs/zerolog/log"
)
func gitCloneRevision(ctx context.Context, gitName, gitURL, gitBranch, gitRevision string, shallowClone bool, shallowCloneDepth int) (err error) {
log.Info().Msgf("Cloning git repository %v to branch %v and revision %v with shallow clone is %v and depth %v...", gitName, gitBranch, gitRevision, shallowClone, shallowCloneDepth)
subdir := "."
// git clone
err = gitCloneWithRetry(ctx, gitName, gitURL, gitBranch, shallowClone, shallowCloneDepth, subdir, 3)
if err != nil {
return
}
// checkout specific revision
if gitRevision != "" {
err = gitCheckout(ctx, gitRevision, subdir)
if err != nil {
return
}
}
log.Info().Msgf("Finished cloning git repository %v to branch %v and revision %v with shallow clone is %v and depth %v", gitName, gitBranch, gitRevision, shallowClone, shallowCloneDepth)
return
}
func gitCloneOverride(ctx context.Context, gitName, gitURL, gitBranch, gitRevision, subdir string, shallowClone bool, shallowCloneDepth int) (err error) {
log.Info().Msgf("Cloning git repository %v to branch %v into subdir %v with shallow clone is %v and depth %v...", gitName, gitBranch, subdir, shallowClone, shallowCloneDepth)
// git clone
err = gitCloneWithRetry(ctx, gitName, gitURL, gitBranch, shallowClone, shallowCloneDepth, subdir, 3)
if err != nil {
return
}
// checkout specific revision
if gitRevision != "" {
err = gitCheckout(ctx, gitRevision, subdir)
if err != nil {
log.Info().Msgf("Finished cloning git repository %v to revision %v into subdir %v with shallow clone is %v and depth %v", gitName, gitRevision, subdir, shallowClone, shallowCloneDepth)
return
}
}
log.Info().Msgf("Finished cloning git repository %v to branch %v into subdir %v with shallow clone is %v and depth %v", gitName, gitBranch, subdir, shallowClone, shallowCloneDepth)
return
}
func gitCloneWithRetry(ctx context.Context, gitName, gitURL, gitBranch string, shallowClone bool, shallowCloneDepth int, subdir string, retries int) (err error) {
attempt := 0
for attempt == 0 || (err != nil && attempt < retries) {
err = gitClone(ctx, gitName, gitURL, gitBranch, shallowClone, shallowCloneDepth, subdir)
if err != nil {
log.Info().Msgf("Attempt %v cloning git repository %v to branch %v and revision %v failed: %v", attempt, gitName, gitBranch, gitRevision, err)
}
// wait with exponential backoff
<-time.After(time.Duration(math.Pow(2, float64(attempt))) * time.Second)
attempt++
}
return
}
func gitClone(ctx context.Context, gitName, gitURL, gitBranch string, shallowClone bool, shallowCloneDepth int, subdir string) (err error) {
targetDirectory := getTargetDir(subdir)
args := []string{"clone", fmt.Sprintf("--branch=%v", gitBranch), gitURL, targetDirectory}
if shallowClone {
args = []string{"clone", fmt.Sprintf("--depth=%v", shallowCloneDepth), fmt.Sprintf("--branch=%v", gitBranch), "--no-tags", gitURL, targetDirectory}
}
if runtime.GOOS == "windows" {
args = []string{"clone", fmt.Sprintf("--branch=%v", gitBranch), "--verbose", "--progress", gitURL, targetDirectory}
if shallowClone {
args = []string{"clone", fmt.Sprintf("--depth=%v", shallowCloneDepth), fmt.Sprintf("--branch=%v", gitBranch), "--verbose", "--progress", "--no-tags", gitURL, targetDirectory}
}
}
err = foundation.RunCommandWithArgsExtended(ctx, "git", args)
if err != nil {
return
}
gitModules := filepath.Join(targetDirectory, ".gitmodules")
if foundation.FileExists(gitModules) {
log.Info().Msg("Found .gitmodules")
// update .gitmodules with git credentials
var data []byte
data, err = ioutil.ReadFile(gitModules)
if err != nil {
return
}
gitCreds := ""
switch ctx.Value("source") {
case "bitbucket":
gitCreds = "https://x-token-auth:" + ctx.Value("token").(string) + "@"
case "github":
gitCreds = "https://x-access-token:" + ctx.Value("token").(string) + "@"
case "cloudsource":
gitCreds = "https://estafette:" + ctx.Value("token").(string) + "@"
default:
return errors.New("invalid git source expected bitbucket, github or cloudsource")
}
data = regexp.MustCompile(`:`).ReplaceAll(data, []byte("/"))
data = regexp.MustCompile(`https://`).ReplaceAll(data, []byte(gitCreds))
data = regexp.MustCompile(`git@`).ReplaceAll(data, []byte(gitCreds))
err = ioutil.WriteFile(gitModules, data, 0644)
if err != nil {
return
}
log.Info().Msg("Initializing submodules")
err = foundation.RunCommandInDirectoryWithArgsExtended(ctx, targetDirectory, "git", []string{"submodule", "init"})
if err != nil {
return
}
log.Info().Msg("Updating submodules")
err = foundation.RunCommandInDirectoryWithArgsExtended(ctx, targetDirectory, "git", []string{"submodule", "update"})
if err != nil {
return
}
// restore .gitmodules file
err = foundation.RunCommandInDirectoryWithArgsExtended(ctx, targetDirectory, "git", []string{"checkout", ".gitmodules"})
if err != nil {
return
}
}
return
}
func gitCheckout(ctx context.Context, gitRevision, subdir string) (err error) {
args := []string{"-C", getTargetDir(subdir), "fetch", "origin", "--depth", "1", gitRevision}
err = foundation.RunCommandWithArgsExtended(ctx, "git", args)
if err != nil {
return
}
args = []string{"-C", getTargetDir(subdir), "checkout", "--quiet", "--force", gitRevision}
err = foundation.RunCommandWithArgsExtended(ctx, "git", args)
if err != nil {
return
}
return
}
func getTargetDir(subdir string) string {
return filepath.Join("/estafette-work", subdir)
}