* 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>
136 lines
4.3 KiB
Go
136 lines
4.3 KiB
Go
/*
|
|
Copyright 2019 The KubeSphere Authors.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package v1alpha2
|
|
|
|
import (
|
|
"github.com/emicklei/go-restful"
|
|
"k8s.io/klog"
|
|
"kubesphere.io/kubesphere/pkg/constants"
|
|
"kubesphere.io/kubesphere/pkg/server/errors"
|
|
"kubesphere.io/kubesphere/pkg/simple/client/devops"
|
|
"net/http"
|
|
)
|
|
|
|
func (h ProjectPipelineHandler) CreateDevOpsProjectPipelineHandler(request *restful.Request, resp *restful.Response) {
|
|
|
|
projectId := request.PathParameter("devops")
|
|
username := request.HeaderParameter(constants.UserNameHeader)
|
|
var pipeline *devops.ProjectPipeline
|
|
err := request.ReadEntity(&pipeline)
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
errors.ParseSvcErr(restful.NewError(http.StatusBadRequest, err.Error()), resp)
|
|
return
|
|
}
|
|
err = h.projectOperator.CheckProjectUserInRole(username, projectId, []string{devops.ProjectOwner, devops.ProjectMaintainer})
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
errors.ParseSvcErr(restful.NewError(http.StatusForbidden, err.Error()), resp)
|
|
return
|
|
}
|
|
pipelineName, err := h.projectPipelineOperator.CreateProjectPipeline(projectId, pipeline)
|
|
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
errors.ParseSvcErr(err, resp)
|
|
return
|
|
}
|
|
|
|
resp.WriteAsJson(struct {
|
|
Name string `json:"name"`
|
|
}{Name: pipelineName})
|
|
return
|
|
}
|
|
|
|
func (h ProjectPipelineHandler) DeleteDevOpsProjectPipelineHandler(request *restful.Request, resp *restful.Response) {
|
|
projectId := request.PathParameter("devops")
|
|
username := request.HeaderParameter(constants.UserNameHeader)
|
|
pipelineId := request.PathParameter("pipeline")
|
|
|
|
err := h.projectOperator.CheckProjectUserInRole(username, projectId, []string{devops.ProjectOwner, devops.ProjectMaintainer})
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
errors.ParseSvcErr(restful.NewError(http.StatusForbidden, err.Error()), resp)
|
|
return
|
|
}
|
|
pipelineName, err := h.projectPipelineOperator.DeleteProjectPipeline(projectId, pipelineId)
|
|
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
errors.ParseSvcErr(err, resp)
|
|
return
|
|
}
|
|
|
|
resp.WriteAsJson(struct {
|
|
Name string `json:"name"`
|
|
}{Name: pipelineName})
|
|
return
|
|
}
|
|
|
|
func (h ProjectPipelineHandler) UpdateDevOpsProjectPipelineHandler(request *restful.Request, resp *restful.Response) {
|
|
|
|
projectId := request.PathParameter("devops")
|
|
username := request.HeaderParameter(constants.UserNameHeader)
|
|
pipelineId := request.PathParameter("pipeline")
|
|
var pipeline *devops.ProjectPipeline
|
|
err := request.ReadEntity(&pipeline)
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
errors.ParseSvcErr(restful.NewError(http.StatusBadRequest, err.Error()), resp)
|
|
return
|
|
}
|
|
err = h.projectOperator.CheckProjectUserInRole(username, projectId, []string{devops.ProjectOwner, devops.ProjectMaintainer})
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
errors.ParseSvcErr(restful.NewError(http.StatusForbidden, err.Error()), resp)
|
|
return
|
|
}
|
|
pipelineName, err := h.projectPipelineOperator.UpdateProjectPipeline(projectId, pipelineId, pipeline)
|
|
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
errors.ParseSvcErr(err, resp)
|
|
return
|
|
}
|
|
|
|
resp.WriteAsJson(struct {
|
|
Name string `json:"name"`
|
|
}{Name: pipelineName})
|
|
return
|
|
}
|
|
|
|
func (h ProjectPipelineHandler) GetDevOpsProjectPipelineConfigHandler(request *restful.Request, resp *restful.Response) {
|
|
|
|
projectId := request.PathParameter("devops")
|
|
username := request.HeaderParameter(constants.UserNameHeader)
|
|
pipelineId := request.PathParameter("pipeline")
|
|
|
|
err := h.projectOperator.CheckProjectUserInRole(username, projectId, []string{devops.ProjectOwner, devops.ProjectMaintainer})
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
errors.ParseSvcErr(restful.NewError(http.StatusForbidden, err.Error()), resp)
|
|
return
|
|
}
|
|
pipeline, err := h.projectPipelineOperator.GetProjectPipelineConfig(projectId, pipelineId)
|
|
|
|
if err != nil {
|
|
klog.Errorf("%+v", err)
|
|
errors.ParseSvcErr(err, resp)
|
|
return
|
|
}
|
|
|
|
resp.WriteAsJson(pipeline)
|
|
return
|
|
}
|