mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-09 09:20:25 +08:00
feat: 前端升级至vue3,后端代码结构重构,新增权限管理相关功能
This commit is contained in:
44
server/devops/routers/machine_script.go
Normal file
44
server/devops/routers/machine_script.go
Normal file
@@ -0,0 +1,44 @@
|
||||
package routers
|
||||
|
||||
import (
|
||||
"mayfly-go/base/ctx"
|
||||
"mayfly-go/server/devops/apis"
|
||||
"mayfly-go/server/devops/application"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func InitMachineScriptRouter(router *gin.RouterGroup) {
|
||||
machines := router.Group("machines")
|
||||
{
|
||||
ms := &apis.MachineScript{
|
||||
MachineScriptApp: application.MachineScript,
|
||||
MachineApp: application.Machine}
|
||||
|
||||
// 获取指定机器脚本列表
|
||||
machines.GET(":machineId/scripts", func(c *gin.Context) {
|
||||
ctx.NewReqCtxWithGin(c).WithNeedToken(false).Handle(ms.MachineScripts)
|
||||
})
|
||||
|
||||
saveMachienScriptLog := ctx.NewLogInfo("保存脚本")
|
||||
// 保存脚本
|
||||
machines.POST(":machineId/scripts", func(c *gin.Context) {
|
||||
rc := ctx.NewReqCtxWithGin(c).WithLog(saveMachienScriptLog)
|
||||
rc.Handle(ms.SaveMachineScript)
|
||||
})
|
||||
|
||||
deleteLog := ctx.NewLogInfo("删除脚本")
|
||||
// 保存脚本
|
||||
machines.DELETE(":machineId/scripts/:scriptId", func(c *gin.Context) {
|
||||
rc := ctx.NewReqCtxWithGin(c).WithLog(deleteLog)
|
||||
rc.Handle(ms.DeleteMachineScript)
|
||||
})
|
||||
|
||||
runLog := ctx.NewLogInfo("执行机器脚本")
|
||||
// 运行脚本
|
||||
machines.GET(":machineId/scripts/:scriptId/run", func(c *gin.Context) {
|
||||
rc := ctx.NewReqCtxWithGin(c).WithLog(runLog)
|
||||
rc.Handle(ms.RunMachineScript)
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user