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
|
package git
import (
"errors"
"fmt"
"gopkg.in/src-d/go-git.v3/clients/common"
"gopkg.in/src-d/go-git.v4/config"
"gopkg.in/src-d/go-git.v4/core"
)
const (
// DefaultRemoteName name of the default Remote, just like git command
DefaultRemoteName = "origin"
DefaultSingleBranchRefSpec = "+refs/heads/%s:refs/remotes/%s/%[1]s"
DefaultRefSpec = "+refs/heads/*:refs/remotes/%s/*"
)
var (
ErrMissingURL = errors.New("URL field is required")
ErrInvalidRefSpec = errors.New("invalid refspec")
)
// RepositoryCloneOptions describe how a clone should be perform
type RepositoryCloneOptions struct {
// The (possibly remote) repository URL to clone from
URL string
// Auth credentials, if required, to uses with the remote repository
Auth common.AuthMethod
// Name of the remote to be added, by default `origin`
RemoteName string
// Remote branch to clone
ReferenceName core.ReferenceName
// Fetch only ReferenceName if true
SingleBranch bool
// Limit fetching to the specified number of commits
Depth int
}
// Validate validate the fields and set the default values
func (o *RepositoryCloneOptions) Validate() error {
if o.URL == "" {
return ErrMissingURL
}
if o.RemoteName == "" {
o.RemoteName = DefaultRemoteName
}
if o.ReferenceName == "" {
o.ReferenceName = core.HEAD
}
return nil
}
func (o *RepositoryCloneOptions) refSpec(s core.ReferenceStorage) (config.RefSpec, error) {
var spec string
if o.SingleBranch {
head, err := core.ResolveReference(s, o.ReferenceName)
if err != nil {
return "", err
}
spec = fmt.Sprintf(DefaultSingleBranchRefSpec, head.Name().Short(), o.RemoteName)
} else {
spec = fmt.Sprintf(DefaultRefSpec, o.RemoteName)
}
return config.RefSpec(spec), nil
}
// RepositoryPullOptions describe how a pull should be perform
type RepositoryPullOptions struct {
// Name of the remote to be pulled
RemoteName string
// Remote branch to clone
ReferenceName core.ReferenceName
// Fetch only ReferenceName if true
SingleBranch bool
// Limit fetching to the specified number of commits
Depth int
}
// Validate validate the fields and set the default values
func (o *RepositoryPullOptions) Validate() error {
if o.RemoteName == "" {
o.RemoteName = DefaultRemoteName
}
if o.ReferenceName == "" {
o.ReferenceName = core.HEAD
}
return nil
}
// RemoteFetchOptions describe how a fetch should be perform
type RemoteFetchOptions struct {
RefSpec config.RefSpec
Depth int
}
// Validate validate the fields and set the default values
func (o *RemoteFetchOptions) Validate() error {
if !o.RefSpec.IsValid() {
return ErrInvalidRefSpec
}
return nil
}
|