mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-05 00:40:24 +08:00
75 lines
2.2 KiB
Go
75 lines
2.2 KiB
Go
|
|
package apis
|
|||
|
|
|
|||
|
|
import (
|
|||
|
|
"fmt"
|
|||
|
|
"mayfly-go/base/biz"
|
|||
|
|
"mayfly-go/base/ctx"
|
|||
|
|
"mayfly-go/base/ginx"
|
|||
|
|
"mayfly-go/base/utils"
|
|||
|
|
"mayfly-go/devops/apis/form"
|
|||
|
|
"mayfly-go/devops/apis/vo"
|
|||
|
|
"mayfly-go/devops/application"
|
|||
|
|
"mayfly-go/devops/domain/entity"
|
|||
|
|
"strconv"
|
|||
|
|
|
|||
|
|
"github.com/gin-gonic/gin"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
type MachineScript struct {
|
|||
|
|
MachineScriptApp application.IMachineScript
|
|||
|
|
MachineApp application.IMachine
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *MachineScript) MachineScripts(rc *ctx.ReqCtx) {
|
|||
|
|
g := rc.GinCtx
|
|||
|
|
condition := &entity.MachineScript{MachineId: GetMachineId(g)}
|
|||
|
|
rc.ResData = m.MachineScriptApp.GetPageList(condition, ginx.GetPageParam(g), new([]vo.MachineScriptVO))
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *MachineScript) SaveMachineScript(rc *ctx.ReqCtx) {
|
|||
|
|
form := new(form.MachineScriptForm)
|
|||
|
|
ginx.BindJsonAndValid(rc.GinCtx, form)
|
|||
|
|
rc.ReqParam = form
|
|||
|
|
|
|||
|
|
// 转换为entity,并设置基本信息
|
|||
|
|
machineScript := new(entity.MachineScript)
|
|||
|
|
utils.Copy(machineScript, form)
|
|||
|
|
machineScript.SetBaseInfo(rc.LoginAccount)
|
|||
|
|
|
|||
|
|
m.MachineScriptApp.Save(machineScript)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *MachineScript) DeleteMachineScript(rc *ctx.ReqCtx) {
|
|||
|
|
msa := m.MachineScriptApp
|
|||
|
|
sid := GetMachineScriptId(rc.GinCtx)
|
|||
|
|
ms := msa.GetById(sid)
|
|||
|
|
biz.NotNil(ms, "该脚本不存在")
|
|||
|
|
rc.ReqParam = fmt.Sprintf("[scriptId: %d, name: %s, desc: %s, script: %s]", sid, ms.Name, ms.Description, ms.Script)
|
|||
|
|
msa.Delete(sid)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *MachineScript) RunMachineScript(rc *ctx.ReqCtx) {
|
|||
|
|
g := rc.GinCtx
|
|||
|
|
|
|||
|
|
scriptId := GetMachineScriptId(g)
|
|||
|
|
machineId := GetMachineId(g)
|
|||
|
|
ms := m.MachineScriptApp.GetById(scriptId, "MachineId", "Name", "Script")
|
|||
|
|
biz.NotNil(ms, "该脚本不存在")
|
|||
|
|
biz.IsTrue(ms.MachineId == application.Common_Script_Machine_Id || ms.MachineId == machineId, "该脚本不属于该机器")
|
|||
|
|
|
|||
|
|
vars := g.QueryMap("params")
|
|||
|
|
res, err := m.MachineApp.GetCli(machineId).Run(utils.TemplateParse(ms.Script, vars))
|
|||
|
|
// 记录请求参数
|
|||
|
|
rc.ReqParam = fmt.Sprintf("[machineId: %d, scriptId: %d, name: %s]", machineId, scriptId, ms.Name)
|
|||
|
|
if err != nil {
|
|||
|
|
panic(biz.NewBizErr(fmt.Sprintf("执行命令失败:%s", err.Error())))
|
|||
|
|
}
|
|||
|
|
rc.ResData = res
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func GetMachineScriptId(g *gin.Context) uint64 {
|
|||
|
|
scriptId, _ := strconv.Atoi(g.Param("scriptId"))
|
|||
|
|
biz.IsTrue(scriptId > 0, "scriptId错误")
|
|||
|
|
return uint64(scriptId)
|
|||
|
|
}
|