Files
PandaX/apps/job/router/job.go
PandaX-Go 77ac18c21b [优化]
2024-08-25 19:58:05 +08:00

89 lines
3.4 KiB
Go

package router
import (
"github.com/PandaXGO/PandaKit/model"
"github.com/PandaXGO/PandaKit/restfulx"
"pandax/apps/job/api"
"pandax/apps/job/entity"
"pandax/apps/job/services"
restfulspec "github.com/emicklei/go-restful-openapi/v2"
"github.com/emicklei/go-restful/v3"
)
func InitJobRouter(container *restful.Container) {
// 登录日志
s := &api.JobApi{
JobApp: services.JobModelDao,
}
ws := new(restful.WebService)
ws.Path("/job").Produces(restful.MIME_JSON)
tags := []string{"任务调度"}
ws.Route(ws.GET("/list").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("获取Job列表").Handle(s.GetJobList)
}).
Doc("获取Job列表").
Param(ws.QueryParameter("pageNum", "页数").Required(true).DataType("int")).
Param(ws.QueryParameter("pageSize", "每页条数").Required(true).DataType("int")).
Param(ws.QueryParameter("jobName", "jobName").DataType("string")).
Param(ws.QueryParameter("status", "status").DataType("string")).
Metadata(restfulspec.KeyOpenAPITags, tags).
Writes(model.ResultPage{}).
Returns(200, "OK", model.ResultPage{}))
ws.Route(ws.GET("/{jobId}").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("获取Job列表").Handle(s.GetJob)
}).
Doc("获取Job列表").
Param(ws.PathParameter("jobId", "Id").DataType("int").DefaultValue("1")).
Metadata(restfulspec.KeyOpenAPITags, tags).
Writes(entity.SysJob{}). // on the response
Returns(200, "OK", entity.SysJob{}).
Returns(404, "Not Found", nil))
ws.Route(ws.POST("").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("添加Job信息").Handle(s.CreateJob)
}).
Doc("添加Job信息").
Metadata(restfulspec.KeyOpenAPITags, tags).
Reads(entity.SysJob{})) // from the request
ws.Route(ws.PUT("").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("修改Job信息").Handle(s.UpdateJob)
}).
Doc("修改Job信息").
Metadata(restfulspec.KeyOpenAPITags, tags).
Reads(entity.SysJob{})) // from the request
ws.Route(ws.DELETE("/{jobId}").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("删除Job信息").Handle(s.DeleteJob)
}).
Doc("删除Job信息").
Metadata(restfulspec.KeyOpenAPITags, tags).
Param(ws.PathParameter("jobId", "多id 1,2,3").DataType("string")))
ws.Route(ws.GET("/stop/{jobId}").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("停止一个job").Handle(s.StopJobForService)
}).
Doc("停止一个job").
Param(ws.PathParameter("jobId", "Id").DataType("string")).
Metadata(restfulspec.KeyOpenAPITags, tags))
ws.Route(ws.GET("/start/{jobId}").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("开启一个job").Handle(s.StartJobForService)
}).
Doc("开启一个job").
Param(ws.PathParameter("jobId", "Id").DataType("string")).
Metadata(restfulspec.KeyOpenAPITags, tags))
ws.Route(ws.PUT("/changeStatus").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("修改状态").Handle(s.UpdateStatusJob)
}).
Doc("修改状态").
Metadata(restfulspec.KeyOpenAPITags, tags))
container.Add(ws)
}