/* Copyright 2021 The KodeRover 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 handler import ( "bytes" "encoding/json" "fmt" "io/ioutil" "github.com/gin-gonic/gin" "github.com/gin-gonic/gin/binding" "github.com/qiniu/x/log.v7" commonmodels "github.com/koderover/zadig/lib/microservice/aslan/core/common/dao/models" "github.com/koderover/zadig/lib/microservice/aslan/core/system/service" internalhandler "github.com/koderover/zadig/lib/microservice/aslan/internal/handler" e "github.com/koderover/zadig/lib/tool/errors" "github.com/koderover/zadig/lib/types/permission" ) func CreateInstall(c *gin.Context) { ctx := internalhandler.NewContext(c) defer func() { internalhandler.JsonResponse(c, ctx) }() args := new(commonmodels.Install) data, err := c.GetRawData() if err != nil { log.Error("CreateInstall c.GetRawData() err : %v", err) } if err = json.Unmarshal(data, args); err != nil { log.Error("CreateInstall json.Unmarshal err : %v", err) } internalhandler.InsertOperationLog(c, ctx.Username, "", "新增", "系统设置-应用设置", fmt.Sprintf("应用名称:%s,应用版本:%s", args.Name, args.Version), permission.SuperUserUUID, string(data), ctx.Logger) c.Request.Body = ioutil.NopCloser(bytes.NewBuffer(data)) if err := c.ShouldBindWith(&args, binding.JSON); err != nil { ctx.Err = e.ErrInvalidParam.AddDesc("invalid Install args") return } args.UpdateBy = ctx.Username ctx.Err = service.CreateInstall(args, ctx.Logger) } func UpdateInstall(c *gin.Context) { ctx := internalhandler.NewContext(c) defer func() { internalhandler.JsonResponse(c, ctx) }() args := new(commonmodels.Install) data, err := c.GetRawData() if err != nil { log.Error("UpdateInstall c.GetRawData() err : %v", err) } if err = json.Unmarshal(data, args); err != nil { log.Error("UpdateInstall json.Unmarshal err : %v", err) } internalhandler.InsertOperationLog(c, ctx.Username, "", "更新", "系统设置-应用设置", fmt.Sprintf("应用名称:%s,应用版本:%s", args.Name, args.Version), permission.SuperUserUUID, string(data), ctx.Logger) c.Request.Body = ioutil.NopCloser(bytes.NewBuffer(data)) if err := c.ShouldBindWith(&args, binding.JSON); err != nil { ctx.Err = e.ErrInvalidParam.AddDesc("invalid Install args") return } args.UpdateBy = ctx.Username name := args.Name version := args.Version if name == "" || version == "" { ctx.Err = e.ErrInvalidParam.AddDesc("名称或者版本号不能为空!") return } ctx.Err = service.UpdateInstall(name, version, args, ctx.Logger) } func GetInstall(c *gin.Context) { ctx := internalhandler.NewContext(c) defer func() { internalhandler.JsonResponse(c, ctx) }() ctx.Resp, ctx.Err = service.GetInstall(c.Param("name"), c.Param("version"), ctx.Logger) } func ListInstalls(c *gin.Context) { ctx := internalhandler.NewContext(c) defer func() { internalhandler.JsonResponse(c, ctx) }() if c.Query("available") == "" || c.Query("available") != "true" { ctx.Resp, ctx.Err = service.ListInstalls(ctx.Logger) } else { ctx.Resp, ctx.Err = service.ListAvaiableInstalls(ctx.Logger) } } func DeleteInstall(c *gin.Context) { ctx := internalhandler.NewContext(c) defer func() { internalhandler.JsonResponse(c, ctx) }() args := new(commonmodels.Install) data, err := c.GetRawData() if err != nil { log.Error("DeleteInstall c.GetRawData() err : %v", err) } if err = json.Unmarshal(data, args); err != nil { log.Error("DeleteInstall json.Unmarshal err : %v", err) } internalhandler.InsertOperationLog(c, ctx.Username, "", "删除", "系统设置-应用设置", fmt.Sprintf("应用名称:%s,应用版本:%s", args.Name, args.Version), permission.SuperUserUUID, string(data), ctx.Logger) c.Request.Body = ioutil.NopCloser(bytes.NewBuffer(data)) if err := c.ShouldBindWith(&args, binding.JSON); err != nil { ctx.Err = e.ErrInvalidParam.AddDesc("invalid Install args") return } name := args.Name version := args.Version if name == "" || version == "" { ctx.Err = e.ErrInvalidParam.AddDesc("名称或者版本号不能为空!") return } ctx.Err = service.DeleteInstall(name, version, ctx.Logger) }