* add devops client interface Signed-off-by: runzexia <runzexia@yunify.com> * direct return jenkins Signed-off-by: runzexia <runzexia@yunify.com> * add some interface Signed-off-by: runzexia <runzexia@yunify.com> * update Signed-off-by: runzexia <runzexia@yunify.com> * update interface Signed-off-by: runzexia <runzexia@yunify.com> * update Signed-off-by: runzexia <runzexia@yunify.com> * credential op structs Signed-off-by: runzexia <runzexia@yunify.com> * status Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * update interface Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * credential handler Signed-off-by: runzexia <runzexia@yunify.com> * update devopsoperator func Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * get build sonar Signed-off-by: runzexia <runzexia@yunify.com> * sonar handler * mv code to cilent Signed-off-by: runzexia <runzexia@yunify.com> * update Signed-off-by: runzexia <runzexia@yunify.com> * project member handler Signed-off-by: runzexia <runzexia@yunify.com> * update pipeline operator interface Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * add tenant devops handler Signed-off-by: runzexia <runzexia@yunify.com> * update merge Signed-off-by: runzexia <runzexia@yunify.com> * clean Signed-off-by: runzexia <runzexia@yunify.com> * fmt Signed-off-by: runzexia <runzexia@yunify.com> * update ListPipelineRuns Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * complate pipelineOperator interface Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * update HttpParameters Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * add pipeline steps interface Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * update pipeline GetNodesDetail Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * add s2i api Signed-off-by: runzexia <runzexia@yunify.com> * add branch pipeline interface and update handler Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * add scan branch interface and update handler Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * add common interface and update handler Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * add SCM interface and update handler Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * add handler Signed-off-by: runzexia <runzexia@yunify.com> * add fake s3 Signed-off-by: runzexia <runzexia@yunify.com> * add webhook&check interface and update handler Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * clean Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * clean Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * format Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * add some func Signed-off-by: runzexia <runzexia@yunify.com> * clean code Signed-off-by: runzexia <runzexia@yunify.com> * implement interface Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * fix interface GetBranchArtifacts Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * add s2ibinary upload test Signed-off-by: runzexia <runzexia@yunify.com> * tenant devops Signed-off-by: runzexia <runzexia@yunify.com> * update tenant Signed-off-by: runzexia <runzexia@yunify.com> * fake Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * add some unit test Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * add devops tenant handler Signed-off-by: runzexia <runzexia@yunify.com> * status Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * status Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * status Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * update fake test Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * update unit test and fake data Signed-off-by: zhuxiaoyang <sunzhu@yunify.com> * update Co-authored-by: Xiaoyang Zhu <sunzhu@yunify.com>
123 lines
3.9 KiB
Go
123 lines
3.9 KiB
Go
package devops
|
|
|
|
import (
|
|
"github.com/emicklei/go-restful"
|
|
"k8s.io/klog"
|
|
"kubesphere.io/kubesphere/pkg/server/errors"
|
|
"kubesphere.io/kubesphere/pkg/simple/client/devops"
|
|
"kubesphere.io/kubesphere/pkg/simple/client/sonarqube"
|
|
"net/http"
|
|
)
|
|
|
|
type PipelineSonarGetter interface {
|
|
GetPipelineSonar(projectId, pipelineId string) ([]*sonarqube.SonarStatus, error)
|
|
GetMultiBranchPipelineSonar(projectId, pipelineId, branchId string) ([]*sonarqube.SonarStatus, error)
|
|
}
|
|
type pipelineSonarGetter struct {
|
|
devops.BuildGetter
|
|
sonarqube.SonarInterface
|
|
}
|
|
|
|
func NewPipelineSonarGetter(devopClient devops.BuildGetter, sonarClient sonarqube.SonarInterface) PipelineSonarGetter {
|
|
return &pipelineSonarGetter{
|
|
BuildGetter: devopClient,
|
|
SonarInterface: sonarClient,
|
|
}
|
|
}
|
|
|
|
func (g *pipelineSonarGetter) GetPipelineSonar(projectId, pipelineId string) ([]*sonarqube.SonarStatus, error) {
|
|
|
|
build, err := g.GetProjectPipelineBuildByType(projectId, pipelineId, devops.LastBuild)
|
|
if err != nil && errors.GetServiceErrorCode(err) != http.StatusNotFound {
|
|
klog.Errorf("%+v", err)
|
|
return nil, err
|
|
} else if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
return nil, nil
|
|
}
|
|
var taskIds []string
|
|
for _, action := range build.Actions {
|
|
if action.ClassName == sonarqube.SonarAnalysisActionClass {
|
|
taskIds = append(taskIds, action.SonarTaskId)
|
|
}
|
|
}
|
|
var sonarStatus []*sonarqube.SonarStatus
|
|
|
|
if len(taskIds) != 0 {
|
|
sonarStatus, err = g.GetSonarResultsByTaskIds(taskIds...)
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
return nil, restful.NewError(http.StatusBadRequest, err.Error())
|
|
}
|
|
} else if len(taskIds) == 0 {
|
|
build, err := g.GetProjectPipelineBuildByType(projectId, pipelineId, devops.LastCompletedBuild)
|
|
if err != nil && errors.GetServiceErrorCode(err) != http.StatusNotFound {
|
|
klog.Errorf("%+v", err)
|
|
return nil, restful.NewError(errors.GetServiceErrorCode(err), err.Error())
|
|
} else if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
return nil, nil
|
|
}
|
|
for _, action := range build.Actions {
|
|
if action.ClassName == sonarqube.SonarAnalysisActionClass {
|
|
taskIds = append(taskIds, action.SonarTaskId)
|
|
}
|
|
}
|
|
sonarStatus, err = g.GetSonarResultsByTaskIds(taskIds...)
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
return nil, restful.NewError(http.StatusBadRequest, err.Error())
|
|
}
|
|
|
|
}
|
|
return sonarStatus, nil
|
|
}
|
|
|
|
func (g *pipelineSonarGetter) GetMultiBranchPipelineSonar(projectId, pipelineId, branchId string) ([]*sonarqube.SonarStatus, error) {
|
|
|
|
build, err := g.GetMultiBranchPipelineBuildByType(projectId, pipelineId, branchId, devops.LastBuild)
|
|
if err != nil && errors.GetServiceErrorCode(err) != http.StatusNotFound {
|
|
klog.Errorf("%+v", err)
|
|
return nil, restful.NewError(errors.GetServiceErrorCode(err), err.Error())
|
|
} else if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
return nil, nil
|
|
}
|
|
var taskIds []string
|
|
for _, action := range build.Actions {
|
|
if action.ClassName == sonarqube.SonarAnalysisActionClass {
|
|
taskIds = append(taskIds, action.SonarTaskId)
|
|
}
|
|
}
|
|
var sonarStatus []*sonarqube.SonarStatus
|
|
|
|
if len(taskIds) != 0 {
|
|
sonarStatus, err = g.GetSonarResultsByTaskIds(taskIds...)
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
return nil, restful.NewError(http.StatusBadRequest, err.Error())
|
|
}
|
|
} else if len(taskIds) == 0 {
|
|
build, err := g.GetMultiBranchPipelineBuildByType(projectId, pipelineId, branchId, devops.LastCompletedBuild)
|
|
if err != nil && errors.GetServiceErrorCode(err) != http.StatusNotFound {
|
|
klog.Errorf("%+v", err)
|
|
return nil, restful.NewError(errors.GetServiceErrorCode(err), err.Error())
|
|
} else if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
return nil, nil
|
|
}
|
|
for _, action := range build.Actions {
|
|
if action.ClassName == sonarqube.SonarAnalysisActionClass {
|
|
taskIds = append(taskIds, action.SonarTaskId)
|
|
}
|
|
}
|
|
sonarStatus, err = g.GetSonarResultsByTaskIds(taskIds...)
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
return nil, restful.NewError(http.StatusBadRequest, err.Error())
|
|
}
|
|
|
|
}
|
|
return sonarStatus, nil
|
|
}
|