36 Star 412 Fork 76

GVPrancher/rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.github
app
chart
k8s
package
pkg
agent
api
controllers
customization
alert
app
authn
catalog
cluster
clusterregistrationtokens
logging
namespace
node
nodetemplate
pipeline
cluster_pipeline.go
pipeline.go
pipeline_execution.go
source_code_credential.go
source_code_repository.go
utils.go
podsecuritypolicytemplate
project
roletemplate
roletemplatebinding
setting
workload
yaml
server
store
audit
auth
catalog
cert
clustermanager
clusterprovisioninglogger
clusterrouter
configfield
controllers
dialer
dynamiclistener
embedded
encryptedstore
filter
httpproxy
hyperkube
image
k8scheck
k8slookup
k8sproxy
kubeconfig
kubectl
librke
logserver
namespace
node
nodeconfig
randomtoken
rbac
ref
remotedialer
rkecerts
rkedialerfactory
rkenodeconfigclient
rkenodeconfigserver
rkeworker
settings
systemaccount
systemtemplate
telemetry
templatecontent
ticker
tls
tunnelserver
rke-templates
scripts
server
tests
vendor
.dockerignore
.drone.yml
.gitignore
Dockerfile.dapper
LICENSE
Makefile
README.md
README_1_6.md
code-of-conduct.md
keybase.md
main.go
vendor.conf
克隆/下载
source_code_credential.go 3.40 KB
一键复制 编辑 原始数据 按行查看 历史
package pipeline
import (
"github.com/rancher/norman/api/access"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/types"
"github.com/rancher/rancher/pkg/ref"
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/client/management/v3"
"k8s.io/apimachinery/pkg/labels"
"net/http"
)
type SourceCodeCredentialHandler struct {
ClusterPipelineLister v3.ClusterPipelineLister
SourceCodeCredentials v3.SourceCodeCredentialInterface
SourceCodeCredentialLister v3.SourceCodeCredentialLister
SourceCodeRepositories v3.SourceCodeRepositoryInterface
SourceCodeRepositoryLister v3.SourceCodeRepositoryLister
}
func SourceCodeCredentialFormatter(apiContext *types.APIContext, resource *types.RawResource) {
resource.AddAction(apiContext, "refreshrepos")
resource.Links["repos"] = apiContext.URLBuilder.Link("repos", resource)
}
func (h SourceCodeCredentialHandler) LinkHandler(apiContext *types.APIContext, next types.RequestHandler) error {
if apiContext.Link == "repos" {
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 "refreshrepos":
return h.refreshrepos(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
}
clusterPipeline, err := h.ClusterPipelineLister.Get(credential.Spec.ClusterName, credential.Spec.ClusterName)
if err != nil {
return err
}
if _, err := refreshReposByCredential(h.SourceCodeRepositories, h.SourceCodeRepositoryLister, credential, clusterPipeline); 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) 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
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.0.13-rc1

搜索帮助