forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gerrit.go
171 lines (129 loc) · 3.95 KB
/
gerrit.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
package gits
import (
"context"
"time"
gerrit "github.com/andygrunwald/go-gerrit"
"github.com/jenkins-x/jx/pkg/auth"
)
type GerritProvider struct {
Client *gerrit.Client
Username string
Context context.Context
Server auth.AuthServer
User auth.UserAuth
Git Gitter
}
func NewGerritProvider(server *auth.AuthServer, user *auth.UserAuth, git Gitter) (GitProvider, error) {
return nil, nil
}
func (p *GerritProvider) ListRepositories(org string) ([]*GitRepository, error) {
return nil, nil
}
func (p *GerritProvider) CreateRepository(org string, name string, private bool) (*GitRepository, error) {
return nil, nil
}
func (p *GerritProvider) GetRepository(org string, name string) (*GitRepository, error) {
return nil, nil
}
func (p *GerritProvider) DeleteRepository(org string, name string) error {
return nil
}
func (p *GerritProvider) ForkRepository(originalOrg string, name string, destinationOrg string) (*GitRepository, error) {
return nil, nil
}
func (p *GerritProvider) RenameRepository(org string, name string, newName string) (*GitRepository, error) {
return nil, nil
}
func (p *GerritProvider) ValidateRepositoryName(org string, name string) error {
return nil
}
func (p *GerritProvider) CreatePullRequest(data *GitPullRequestArguments) (*GitPullRequest, error) {
return nil, nil
}
func (p *GerritProvider) UpdatePullRequestStatus(pr *GitPullRequest) error {
return nil
}
func (p *GerritProvider) GetPullRequest(owner string, repo *GitRepositoryInfo, number int) (*GitPullRequest, error) {
return nil, nil
}
func (p *GerritProvider) GetPullRequestCommits(owner string, repo *GitRepositoryInfo, number int) ([]*GitCommit, error) {
return nil, nil
}
func (p *GerritProvider) PullRequestLastCommitStatus(pr *GitPullRequest) (string, error) {
return "", nil
}
func (p *GerritProvider) ListCommitStatus(org string, repo string, sha string) ([]*GitRepoStatus, error) {
return nil, nil
}
func (p *GerritProvider) MergePullRequest(pr *GitPullRequest, message string) error {
return nil
}
func (p *GerritProvider) CreateWebHook(data *GitWebHookArguments) error {
return nil
}
func (p *GerritProvider) IsGitHub() bool {
return false
}
func (p *GerritProvider) IsGitea() bool {
return false
}
func (p *GerritProvider) IsBitbucketCloud() bool {
return false
}
func (p *GerritProvider) IsBitbucketServer() bool {
return false
}
func (p *GerritProvider) IsGerrit() bool {
return true
}
func (p *GerritProvider) Kind() string {
return "gerrit"
}
func (p *GerritProvider) GetIssue(org string, name string, number int) (*GitIssue, error) {
return nil, nil
}
func (p *GerritProvider) IssueURL(org string, name string, number int, isPull bool) string {
return ""
}
func (p *GerritProvider) SearchIssues(org string, name string, query string) ([]*GitIssue, error) {
return nil, nil
}
func (p *GerritProvider) SearchIssuesClosedSince(org string, name string, t time.Time) ([]*GitIssue, error) {
return nil, nil
}
func (p *GerritProvider) CreateIssue(owner string, repo string, issue *GitIssue) (*GitIssue, error) {
return nil, nil
}
func (p *GerritProvider) HasIssues() bool {
return false
}
func (p *GerritProvider) AddPRComment(pr *GitPullRequest, comment string) error {
return nil
}
func (p *GerritProvider) CreateIssueComment(owner string, repo string, number int, comment string) error {
return nil
}
func (p *GerritProvider) UpdateRelease(owner string, repo string, tag string, releaseInfo *GitRelease) error {
return nil
}
func (p *GerritProvider) ListReleases(org string, name string) ([]*GitRelease, error) {
return nil, nil
}
func (p *GerritProvider) JenkinsWebHookPath(gitURL string, secret string) string {
return ""
}
func (p *GerritProvider) Label() string {
return ""
}
func (p *GerritProvider) ServerURL() string {
return ""
}
func (p *GerritProvider) CurrentUsername() string {
return ""
}
func (p *GerritProvider) UserAuth() auth.UserAuth {
return auth.UserAuth{}
}
func (p *GerritProvider) UserInfo(username string) *GitUser {
return nil
}