forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
source_code_credential.go
143 lines (123 loc) · 4.46 KB
/
source_code_credential.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
package pipeline
import (
"net/http"
"github.com/rancher/norman/api/access"
"github.com/rancher/norman/api/handler"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/types"
"github.com/rancher/rancher/pkg/pipeline/providers"
"github.com/rancher/rancher/pkg/ref"
"github.com/rancher/types/apis/project.cattle.io/v3"
"github.com/rancher/types/client/project/v3"
"k8s.io/apimachinery/pkg/labels"
)
const (
actionRefreshRepos = "refreshrepos"
actionLogout = "logout"
linkRepos = "repos"
)
type SourceCodeCredentialHandler struct {
SourceCodeCredentials v3.SourceCodeCredentialInterface
SourceCodeCredentialLister v3.SourceCodeCredentialLister
SourceCodeRepositories v3.SourceCodeRepositoryInterface
SourceCodeRepositoryLister v3.SourceCodeRepositoryLister
}
func SourceCodeCredentialFormatter(apiContext *types.APIContext, resource *types.RawResource) {
resource.AddAction(apiContext, actionRefreshRepos)
resource.AddAction(apiContext, actionLogout)
resource.Links[linkRepos] = apiContext.URLBuilder.Link(linkRepos, resource)
}
func (h SourceCodeCredentialHandler) ListHandler(request *types.APIContext, next types.RequestHandler) error {
request.Query.Set("logout_ne", "true")
return handler.ListHandler(request, next)
}
func (h SourceCodeCredentialHandler) LinkHandler(apiContext *types.APIContext, next types.RequestHandler) error {
if apiContext.Link == linkRepos {
repos, err := h.getReposByCredentialID(apiContext.ID)
if err != nil {
return err
}
if len(repos) < 1 {
return h.refreshrepos(apiContext)
}
data := []map[string]interface{}{}
option := &types.QueryOptions{
Conditions: []*types.QueryCondition{
types.NewConditionFromString("sourceCodeCredentialId", types.ModifierEQ, []string{apiContext.ID}...),
},
}
if err := access.List(apiContext, apiContext.Version, client.SourceCodeRepositoryType, option, &data); err != nil {
return err
}
apiContext.Type = client.SourceCodeRepositoryType
apiContext.WriteResponse(http.StatusOK, data)
return nil
}
return httperror.NewAPIError(httperror.NotFound, "Link not found")
}
func (h *SourceCodeCredentialHandler) ActionHandler(actionName string, action *types.Action, apiContext *types.APIContext) error {
switch actionName {
case actionRefreshRepos:
return h.refreshrepos(apiContext)
case actionLogout:
return h.logout(apiContext)
}
return httperror.NewAPIError(httperror.InvalidAction, "unsupported action")
}
func (h *SourceCodeCredentialHandler) refreshrepos(apiContext *types.APIContext) error {
ns, name := ref.Parse(apiContext.ID)
credential, err := h.SourceCodeCredentialLister.Get(ns, name)
if err != nil {
return err
}
_, projID := ref.Parse(credential.Spec.ProjectName)
scpConfig, err := providers.GetSourceCodeProviderConfig(credential.Spec.SourceCodeType, projID)
if err != nil {
return err
}
if _, err := providers.RefreshReposByCredential(h.SourceCodeRepositories, h.SourceCodeRepositoryLister, h.SourceCodeCredentials, credential, scpConfig); err != nil {
return err
}
data := []map[string]interface{}{}
option := &types.QueryOptions{
Conditions: []*types.QueryCondition{
types.NewConditionFromString("sourceCodeCredentialId", types.ModifierEQ, []string{apiContext.ID}...),
},
}
if err := access.List(apiContext, apiContext.Version, client.SourceCodeRepositoryType, option, &data); err != nil {
return err
}
apiContext.Type = client.SourceCodeRepositoryType
apiContext.WriteResponse(http.StatusOK, data)
return nil
}
func (h *SourceCodeCredentialHandler) logout(apiContext *types.APIContext) error {
ns, name := ref.Parse(apiContext.ID)
credential, err := h.SourceCodeCredentialLister.Get(ns, name)
if err != nil {
return err
}
credential.Status.Logout = true
if _, err := h.SourceCodeCredentials.Update(credential); err != nil {
return err
}
data := map[string]interface{}{}
if err := access.ByID(apiContext, apiContext.Version, apiContext.Type, apiContext.ID, &data); err != nil {
return err
}
apiContext.WriteResponse(http.StatusOK, data)
return nil
}
func (h *SourceCodeCredentialHandler) getReposByCredentialID(sourceCodeCredentialID string) ([]*v3.SourceCodeRepository, error) {
result := []*v3.SourceCodeRepository{}
repositories, err := h.SourceCodeRepositoryLister.List("", labels.Everything())
if err != nil {
return nil, err
}
for _, repo := range repositories {
if repo.Spec.SourceCodeCredentialName == sourceCodeCredentialID {
result = append(result, repo)
}
}
return result, nil
}