forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repository.go
483 lines (420 loc) · 14.5 KB
/
repository.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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
package git
import (
"bufio"
"bytes"
"fmt"
"io"
"os"
"os/exec"
"path/filepath"
"regexp"
"runtime"
"strings"
"syscall"
"time"
"github.com/golang/glog"
s2iapi "github.com/openshift/source-to-image/pkg/api"
)
// Repository represents a git source repository
type Repository interface {
GetRootDir(dir string) (string, error)
GetOriginURL(dir string) (string, bool, error)
GetRef(dir string) string
Clone(dir string, url string) error
CloneWithOptions(dir string, url string, opts CloneOptions) error
CloneBare(dir string, url string) error
CloneMirror(dir string, url string) error
Fetch(dir string) error
Checkout(dir string, ref string) error
SubmoduleUpdate(dir string, init, recursive bool) error
Archive(dir, ref, format string, w io.Writer) error
Init(dir string, bare bool) error
AddRemote(dir string, name, url string) error
AddLocalConfig(dir, name, value string) error
ShowFormat(dir, commit, format string) (string, error)
ListRemote(url string, args ...string) (string, string, error)
TimedListRemote(timeout time.Duration, url string, args ...string) (string, string, error)
GetInfo(location string) (*SourceInfo, []error)
}
const (
// defaultCommandTimeout is the default timeout for git commands that we want to enforce timeouts on
defaultCommandTimeout = 30 * time.Second
// noCommandTimeout signals that there should be no timeout for the command when passed as the timeout
// for the default timedExecGitFunc
noCommandTimeout = 0 * time.Second
)
// ErrGitNotAvailable will be returned if the git call fails because a git binary
// could not be found
var ErrGitNotAvailable = fmt.Errorf("git binary not available")
// SourceInfo stores information about the source code
type SourceInfo struct {
s2iapi.SourceInfo
}
// CloneOptions are options used in cloning a git repository
type CloneOptions struct {
Recursive bool
Quiet bool
// Shallow perform a shallow git clone that only fetches the latest master.
Shallow bool
}
// execGitFunc is a function that executes a Git command
type execGitFunc func(dir string, args ...string) (string, string, error)
// timedExecGitFunc is a function that executes a Git command with a timeout
type timedExecGitFunc func(timeout time.Duration, dir string, args ...string) (string, string, error)
type repository struct {
git execGitFunc
timedGit timedExecGitFunc
shallow bool
}
// NewRepository creates a new Repository
func NewRepository() Repository {
return NewRepositoryWithEnv(nil)
}
// NewRepositoryForEnv creates a new Repository using the specified environment
func NewRepositoryWithEnv(env []string) Repository {
return &repository{
git: func(dir string, args ...string) (string, string, error) {
return command("git", dir, env, args...)
},
timedGit: func(timeout time.Duration, dir string, args ...string) (string, string, error) {
return timedCommand(timeout, "git", dir, env, args...)
},
}
}
// NewRepositoryForBinary returns a Repository using the specified
// git executable.
func NewRepositoryForBinary(gitBinaryPath string) Repository {
return NewRepositoryForBinaryWithEnvironment(gitBinaryPath, nil)
}
// NewRepositoryForBinary returns a Repository using the specified
// git executable and environment
func NewRepositoryForBinaryWithEnvironment(gitBinaryPath string, env []string) Repository {
return &repository{
git: func(dir string, args ...string) (string, string, error) {
return command(gitBinaryPath, dir, env, args...)
},
timedGit: func(timeout time.Duration, dir string, args ...string) (string, string, error) {
return timedCommand(timeout, gitBinaryPath, dir, env, args...)
},
}
}
// IsRoot returns true if location is the root of a bare git repository
func IsBareRoot(path string) (bool, error) {
_, err := os.Stat(filepath.Join(path, "HEAD"))
if err != nil {
if os.IsNotExist(err) {
return false, nil
}
return false, err
}
return true, nil
}
// GetRootDir obtains the directory root for a Git repository
func (r *repository) GetRootDir(location string) (string, error) {
dir, _, err := r.git(location, "rev-parse", "--git-dir")
if err != nil {
return "", err
}
if dir == "" {
return "", fmt.Errorf("%s is not a git repository", dir)
}
if strings.HasSuffix(dir, ".git") {
dir = dir[:len(dir)-4]
if strings.HasSuffix(dir, "/") {
dir = dir[:len(dir)-1]
}
}
if len(dir) == 0 {
dir = location
}
return dir, nil
}
var (
remoteURLExtract = regexp.MustCompile("^remote\\.(.*)\\.url (.*?)$")
remoteOriginNames = []string{"origin", "upstream", "github", "openshift", "heroku"}
)
// GetOriginURL returns the origin branch URL for the git repository
func (r *repository) GetOriginURL(location string) (string, bool, error) {
text, _, err := r.git(location, "config", "--get-regexp", "^remote\\..*\\.url$")
if err != nil {
if IsExitCode(err, 1) {
return "", false, nil
}
return "", false, err
}
remotes := make(map[string]string)
s := bufio.NewScanner(bytes.NewBufferString(text))
for s.Scan() {
if matches := remoteURLExtract.FindStringSubmatch(s.Text()); matches != nil {
remotes[matches[1]] = matches[2]
}
}
if err := s.Err(); err != nil {
return "", false, err
}
for _, remote := range remoteOriginNames {
if url, ok := remotes[remote]; ok {
return url, true, nil
}
}
return "", false, nil
}
// GetRef retrieves the current branch reference for the git repository
func (r *repository) GetRef(location string) string {
branch, _, err := r.git(location, "symbolic-ref", "-q", "--short", "HEAD")
if err != nil {
branch = ""
}
return branch
}
// AddRemote adds a new remote to the repository.
func (r *repository) AddRemote(location, name, url string) error {
_, _, err := r.git(location, "remote", "add", name, url)
return err
}
// AddLocalConfig adds a value to the current repository
func (r *repository) AddLocalConfig(location, name, value string) error {
_, _, err := r.git(location, "config", "--local", "--add", name, value)
return err
}
// CloneWithOptions clones a remote git repository to a local directory
func (r *repository) CloneWithOptions(location string, url string, opts CloneOptions) error {
args := []string{"clone"}
if opts.Quiet {
args = append(args, "--quiet")
}
if opts.Recursive {
args = append(args, "--recursive")
}
if opts.Shallow {
args = append(args, "--depth=1")
r.shallow = true
}
args = append(args, url)
args = append(args, location)
_, _, err := r.git("", args...)
return err
}
// Clone clones a remote git repository to a local directory
func (r *repository) Clone(location string, url string) error {
return r.CloneWithOptions(location, url, CloneOptions{Recursive: true})
}
// ListRemote lists references in a remote repository
// ListRemote will time out with a default timeout of 10s. If a different timeout is
// required, TimedListRemote should be used instead
func (r *repository) ListRemote(url string, args ...string) (string, string, error) {
return r.TimedListRemote(defaultCommandTimeout, url, args...)
}
// TimedListRemote lists references in a remote repository, or fails if the list does
// not complete before the given timeout
func (r *repository) TimedListRemote(timeout time.Duration, url string, args ...string) (string, string, error) {
gitArgs := []string{"ls-remote"}
gitArgs = append(gitArgs, args...)
gitArgs = append(gitArgs, url)
// `git ls-remote` does not allow for any timeout to be set, and defaults to a timeout
// of five minutes, so we enforce a timeout here to allow it to fail eariler than that
return r.timedGit(timeout, "", gitArgs...)
}
// CloneMirror clones a remote git repository to a local directory as a mirror
func (r *repository) CloneMirror(location string, url string) error {
_, _, err := r.git("", "clone", "--mirror", url, location)
return err
}
// CloneBare clones a remote git repository to a local directory
func (r *repository) CloneBare(location string, url string) error {
_, _, err := r.git("", "clone", "--bare", url, location)
return err
}
// Fetch updates the provided git repository
func (r *repository) Fetch(location string) error {
_, _, err := r.git(location, "fetch", "--all")
return err
}
// Archive creates a archive of the Git repo at directory location at commit ref and with the given Git format,
// and then writes that to the provided io.Writer
func (r *repository) Archive(location, ref, format string, w io.Writer) error {
stdout, _, err := r.git(location, "archive", fmt.Sprintf("--format=%s", format), ref)
w.Write([]byte(stdout))
return err
}
// Checkout switches to the given ref for the git repository
func (r *repository) Checkout(location string, ref string) error {
if r.shallow {
return fmt.Errorf("cannot checkout ref on shallow clone")
}
_, _, err := r.git(location, "checkout", ref)
return err
}
// SubmoduleUpdate updates submodules, optionally recursively
func (r *repository) SubmoduleUpdate(location string, init, recursive bool) error {
updateArgs := []string{"submodule", "update"}
if init {
updateArgs = append(updateArgs, "--init")
}
if recursive {
updateArgs = append(updateArgs, "--recursive")
}
_, _, err := r.git(location, updateArgs...)
return err
}
// ShowFormat formats the ref with the given git show format string
func (r *repository) ShowFormat(location, ref, format string) (string, error) {
out, _, err := r.git(location, "show", "--quiet", ref, fmt.Sprintf("--format=%s", format))
return out, err
}
// Init initializes a new git repository in the provided location
func (r *repository) Init(location string, bare bool) error {
_, _, err := r.git("", "init", "--bare", location)
return err
}
// GetInfo retrieves the informations about the source code and commit
func (r *repository) GetInfo(location string) (*SourceInfo, []error) {
errors := []error{}
git := func(arg ...string) string {
stdout, stderr, err := r.git(location, arg...)
if err != nil {
errors = append(errors, fmt.Errorf("error invoking 'git %s': %v. Out: %s, Err: %s",
strings.Join(arg, " "), err, stdout, stderr))
}
return strings.TrimSpace(stdout)
}
info := &SourceInfo{}
info.Ref = git("rev-parse", "--abbrev-ref", "HEAD")
info.CommitID = git("rev-parse", "--verify", "HEAD")
info.AuthorName = git("--no-pager", "show", "-s", "--format=%an", "HEAD")
info.AuthorEmail = git("--no-pager", "show", "-s", "--format=%ae", "HEAD")
info.CommitterName = git("--no-pager", "show", "-s", "--format=%cn", "HEAD")
info.CommitterEmail = git("--no-pager", "show", "-s", "--format=%ce", "HEAD")
info.Date = git("--no-pager", "show", "-s", "--format=%ad", "HEAD")
info.Message = git("--no-pager", "show", "-s", "--format=%<(80,trunc)%s", "HEAD")
// it is not required for a Git repository to have a remote "origin" defined
if out, _, err := r.git(location, "config", "--get", "remote.origin.url"); err == nil {
info.Location = out
}
return info, errors
}
// command executes an external command in the given directory.
// The command's standard out and error are trimmed and returned as strings
// It may return the type *GitError if the command itself fails.
func command(name, dir string, env []string, args ...string) (stdout, stderr string, err error) {
return timedCommand(noCommandTimeout, name, dir, env, args...)
}
// timedCommand executes an external command in the given directory with a timeout.
// The command's standard out and error are returned as strings.
// It may return the type *GitError if the command itself fails or the type *TimeoutError
// if the command times out before finishing.
// If the git binary cannot be found, ErrGitNotAvailable will be returned as the error.
func timedCommand(timeout time.Duration, name, dir string, env []string, args ...string) (stdout, stderr string, err error) {
var stdoutBuffer, stderrBuffer bytes.Buffer
glog.V(4).Infof("Executing %s %s %s", strings.Join(env, " "), name, strings.Join(args, " "))
cmd := exec.Command(name, args...)
cmd.Dir = dir
cmd.Env = env
cmd.Stdout = &stdoutBuffer
cmd.Stderr = &stderrBuffer
if env != nil {
glog.V(8).Infof("Environment:\n")
for _, e := range env {
glog.V(8).Infof("- %s", e)
}
}
err, timedOut := runCommand(cmd, timeout)
if timedOut {
return "", "", &TimeoutError{
Err: fmt.Errorf("execution of %s %s timed out after %s", name, strings.Join(args, " "), timeout),
}
}
// we don't want captured output to have a trailing newline for formatting reasons
stdout, stderr = strings.TrimRight(stdoutBuffer.String(), "\n"), strings.TrimRight(stderrBuffer.String(), "\n")
// check whether git was available in the first place
if err != nil {
if !isBinaryInstalled(name) {
return "", "", ErrGitNotAvailable
}
}
// if we encounter an error we recognize, return a typed error
if exitErr, ok := err.(*exec.ExitError); ok {
return stdout, stderr, &GitError{
Err: exitErr,
Stdout: stdout,
Stderr: stderr,
}
}
// if we didn't encounter an ExitError or a timeout, simply return the error
return stdout, stderr, err
}
// runCommand runs the command with the given timeout, and returns any errors encountered and whether
// the command timed out or not
func runCommand(cmd *exec.Cmd, timeout time.Duration) (error, bool) {
out := make(chan error)
go func() {
if err := cmd.Start(); err != nil {
glog.V(4).Infof("Error starting execution: %v", err)
}
out <- cmd.Wait()
}()
if timeout == noCommandTimeout {
select {
case err := <-out:
if err != nil {
glog.V(4).Infof("Error executing command: %v", err)
}
return err, false
}
} else {
select {
case err := <-out:
if err != nil {
glog.V(4).Infof("Error executing command: %v", err)
}
return err, false
case <-time.After(timeout):
glog.V(4).Infof("Command execution timed out after %s", timeout)
return nil, true
}
}
}
// TimeoutError is returned when the underlying Git coommand times out before finishing
type TimeoutError struct {
Err error
}
func (e *TimeoutError) Error() string {
return e.Err.Error()
}
// GitError is returned when the underlying Git command returns a non-zero exit code.
type GitError struct {
Err error
Stdout string
Stderr string
}
func (e *GitError) Error() string {
if len(e.Stderr) > 0 {
return e.Stderr
}
return e.Err.Error()
}
func IsExitCode(err error, exitCode int) bool {
switch t := err.(type) {
case *GitError:
return IsExitCode(t.Err, exitCode)
case *exec.ExitError:
if ws, ok := t.Sys().(syscall.WaitStatus); ok {
return ws.ExitStatus() == exitCode
}
return false
}
return false
}
func gitBinary() string {
if runtime.GOOS == "windows" {
return "git.exe"
}
return "git"
}
func IsGitInstalled() bool {
return isBinaryInstalled(gitBinary())
}
func isBinaryInstalled(name string) bool {
_, err := exec.LookPath(name)
return err == nil
}