2022-09-20 19:12:48 +08:00
package v1
import (
2022-09-23 17:21:27 +08:00
"time"
2022-10-17 16:32:31 +08:00
"github.com/1Panel-dev/1Panel/backend/app/api/v1/helper"
"github.com/1Panel-dev/1Panel/backend/app/dto"
"github.com/1Panel-dev/1Panel/backend/constant"
"github.com/1Panel-dev/1Panel/backend/global"
2022-09-20 19:12:48 +08:00
"github.com/gin-gonic/gin"
)
2023-01-04 22:31:51 +08:00
// @Tags Cronjob
// @Summary Create cronjob
// @Description 创建计划任务
// @Accept json
// @Param request body dto.CronjobCreate true "request"
// @Success 200
// @Security ApiKeyAuth
// @Router /cronjobs [post]
// @x-panel-log {"bodyKeys":["type","name"],"paramKeys":[],"BeforeFuntions":[],"formatZH":"创建计划任务 [type][name]","formatEN":"create cronjob [type][name]"}
2022-09-20 19:12:48 +08:00
func ( b * BaseApi ) CreateCronjob ( c * gin . Context ) {
var req dto . CronjobCreate
if err := c . ShouldBindJSON ( & req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
if err := global . VALID . Struct ( req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
if err := cronjobService . Create ( req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrInternalServer , constant . ErrTypeInternalServer , err )
return
}
helper . SuccessWithData ( c , nil )
}
2023-01-04 22:31:51 +08:00
// @Tags Cronjob
2023-01-05 11:57:03 +08:00
// @Summary Page cronjobs
2023-01-04 22:31:51 +08:00
// @Description 获取计划任务分页
// @Accept json
// @Param request body dto.SearchWithPage true "request"
// @Success 200 {object} dto.PageResult
// @Security ApiKeyAuth
// @Router /cronjobs/search [post]
2022-09-20 19:12:48 +08:00
func ( b * BaseApi ) SearchCronjob ( c * gin . Context ) {
var req dto . SearchWithPage
if err := c . ShouldBindJSON ( & req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
total , list , err := cronjobService . SearchWithPage ( req )
if err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrInternalServer , constant . ErrTypeInternalServer , err )
return
}
helper . SuccessWithData ( c , dto . PageResult {
Items : list ,
Total : total ,
} )
}
2023-01-04 22:31:51 +08:00
// @Tags Cronjob
2023-01-05 11:57:03 +08:00
// @Summary Page job records
2023-01-04 22:31:51 +08:00
// @Description 获取计划任务记录
// @Accept json
// @Param request body dto.SearchRecord true "request"
// @Success 200 {object} dto.PageResult
// @Security ApiKeyAuth
// @Router /cronjobs/search/records [post]
2022-09-23 17:21:27 +08:00
func ( b * BaseApi ) SearchJobRecords ( c * gin . Context ) {
var req dto . SearchRecord
if err := c . ShouldBindJSON ( & req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
2023-01-29 16:38:34 +08:00
req . StartTime = req . StartTime . Add ( 8 * time . Hour )
req . EndTime = req . EndTime . Add ( 8 * time . Hour )
2022-09-23 17:21:27 +08:00
total , list , err := cronjobService . SearchRecords ( req )
if err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrInternalServer , constant . ErrTypeInternalServer , err )
return
}
helper . SuccessWithData ( c , dto . PageResult {
Items : list ,
Total : total ,
} )
}
2023-01-04 22:31:51 +08:00
// @Tags Cronjob
// @Summary Delete cronjob
// @Description 删除计划任务
// @Accept json
// @Param request body dto.BatchDeleteReq true "request"
// @Success 200
// @Security ApiKeyAuth
2023-01-05 11:57:03 +08:00
// @Router /cronjobs/del [post]
2023-01-04 22:31:51 +08:00
// @x-panel-log {"bodyKeys":["ids"],"paramKeys":[],"BeforeFuntions":[{"input_colume":"id","input_value":"ids","isList":true,"db":"cronjobs","output_colume":"name","output_value":"names"}],"formatZH":"删除计划任务 [names]","formatEN":"delete cronjob [names]"}
2022-09-20 19:12:48 +08:00
func ( b * BaseApi ) DeleteCronjob ( c * gin . Context ) {
var req dto . BatchDeleteReq
if err := c . ShouldBindJSON ( & req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
if err := global . VALID . Struct ( req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
if err := cronjobService . Delete ( req . Ids ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrInternalServer , constant . ErrTypeInternalServer , err )
return
}
helper . SuccessWithData ( c , nil )
}
2023-01-04 22:31:51 +08:00
// @Tags Cronjob
// @Summary Update cronjob
// @Description 更新计划任务
// @Accept json
// @Param request body dto.CronjobUpdate true "request"
// @Success 200
// @Security ApiKeyAuth
2023-01-05 11:57:03 +08:00
// @Router /cronjobs/update [post]
2023-01-04 22:31:51 +08:00
// @x-panel-log {"bodyKeys":["id"],"paramKeys":[],"BeforeFuntions":[{"input_colume":"id","input_value":"id","isList":false,"db":"cronjobs","output_colume":"name","output_value":"name"}],"formatZH":"更新计划任务 [name]","formatEN":"update cronjob [name]"}
2022-09-20 19:12:48 +08:00
func ( b * BaseApi ) UpdateCronjob ( c * gin . Context ) {
var req dto . CronjobUpdate
if err := c . ShouldBindJSON ( & req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
if err := global . VALID . Struct ( req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
2022-12-13 18:54:28 +08:00
if err := cronjobService . Update ( req . ID , req ) ; err != nil {
2022-09-20 19:12:48 +08:00
helper . ErrorWithDetail ( c , constant . CodeErrInternalServer , constant . ErrTypeInternalServer , err )
return
}
helper . SuccessWithData ( c , nil )
}
2022-09-23 17:21:27 +08:00
2023-01-04 22:31:51 +08:00
// @Tags Cronjob
// @Summary Update cronjob status
// @Description 更新计划任务状态
// @Accept json
// @Param request body dto.CronjobUpdateStatus true "request"
// @Success 200
// @Security ApiKeyAuth
2023-01-05 11:57:03 +08:00
// @Router /cronjobs/status [post]
2023-01-04 22:31:51 +08:00
// @x-panel-log {"bodyKeys":["id","status"],"paramKeys":[],"BeforeFuntions":[{"input_colume":"id","input_value":"id","isList":false,"db":"cronjobs","output_colume":"name","output_value":"name"}],"formatZH":"修改计划任务 [name] 状态为 [status]","formatEN":"change the status of cronjob [name] to [status]."}
2022-09-27 17:26:01 +08:00
func ( b * BaseApi ) UpdateCronjobStatus ( c * gin . Context ) {
var req dto . CronjobUpdateStatus
if err := c . ShouldBindJSON ( & req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
if err := global . VALID . Struct ( req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
if err := cronjobService . UpdateStatus ( req . ID , req . Status ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrInternalServer , constant . ErrTypeInternalServer , err )
return
}
helper . SuccessWithData ( c , nil )
}
2023-01-04 22:31:51 +08:00
// @Tags Cronjob
2023-01-05 11:57:03 +08:00
// @Summary Download cronjob records
2023-01-04 22:31:51 +08:00
// @Description 下载计划任务记录
// @Accept json
// @Param request body dto.CronjobDownload true "request"
// @Success 200
// @Security ApiKeyAuth
2023-01-05 11:57:03 +08:00
// @Router /cronjobs/download [post]
2023-01-04 22:31:51 +08:00
// @x-panel-log {"bodyKeys":["recordID"],"paramKeys":[],"BeforeFuntions":[{"input_colume":"id","input_value":"recordID","isList":false,"db":"job_records","output_colume":"file","output_value":"file"}],"formatZH":"下载计划任务记录 [file]","formatEN":"download the cronjob record [file]"}
2022-09-28 00:08:21 +08:00
func ( b * BaseApi ) TargetDownload ( c * gin . Context ) {
var req dto . CronjobDownload
if err := c . ShouldBindJSON ( & req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
if err := global . VALID . Struct ( req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
2022-09-28 18:11:36 +08:00
filePath , err := cronjobService . Download ( req )
2022-09-28 00:08:21 +08:00
if err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrInternalServer , constant . ErrTypeInternalServer , err )
return
}
2022-09-28 18:11:36 +08:00
c . File ( filePath )
2022-09-28 00:08:21 +08:00
}
2022-09-29 11:13:05 +08:00
2023-01-04 22:31:51 +08:00
// @Tags Cronjob
// @Summary Handle cronjob once
// @Description 手动执行计划任务
// @Accept json
// @Param request body dto.OperateByID true "request"
// @Success 200
// @Security ApiKeyAuth
2023-01-05 11:57:03 +08:00
// @Router /cronjobs/handle [post]
2023-01-04 22:31:51 +08:00
// @x-panel-log {"bodyKeys":["id"],"paramKeys":[],"BeforeFuntions":[{"input_colume":"id","input_value":"id","isList":false,"db":"cronjobs","output_colume":"name","output_value":"name"}],"formatZH":"手动执行计划任务 [name]","formatEN":"manually execute the cronjob [name]"}
2022-09-29 11:13:05 +08:00
func ( b * BaseApi ) HandleOnce ( c * gin . Context ) {
2022-12-13 18:54:28 +08:00
var req dto . OperateByID
if err := c . ShouldBindJSON ( & req ) ; err != nil {
2022-09-29 11:13:05 +08:00
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
2022-12-13 18:54:28 +08:00
if err := global . VALID . Struct ( req ) ; err != nil {
helper . ErrorWithDetail ( c , constant . CodeErrBadRequest , constant . ErrTypeInvalidParams , err )
return
}
if err := cronjobService . HandleOnce ( req . ID ) ; err != nil {
2022-09-29 11:13:05 +08:00
helper . ErrorWithDetail ( c , constant . CodeErrInternalServer , constant . ErrTypeInternalServer , err )
return
}
helper . SuccessWithData ( c , nil )
}