2024-02-28 17:02:46 +08:00
|
|
|
|
import { BadRequestException } from '@nestjs/common';
|
|
|
|
|
import { ApiProperty, ApiPropertyOptional, IntersectionType, PartialType } from '@nestjs/swagger';
|
2024-02-28 08:32:35 +08:00
|
|
|
|
import {
|
|
|
|
|
IsDateString,
|
|
|
|
|
IsIn,
|
|
|
|
|
IsInt,
|
|
|
|
|
IsOptional,
|
|
|
|
|
IsString,
|
|
|
|
|
MaxLength,
|
|
|
|
|
Min,
|
|
|
|
|
MinLength,
|
|
|
|
|
Validate,
|
|
|
|
|
ValidateIf,
|
|
|
|
|
ValidationArguments,
|
|
|
|
|
ValidatorConstraint,
|
2024-02-29 09:29:03 +08:00
|
|
|
|
ValidatorConstraintInterface
|
2024-02-28 17:02:46 +08:00
|
|
|
|
} from 'class-validator';
|
|
|
|
|
import * as parser from 'cron-parser';
|
|
|
|
|
import { isEmpty } from 'lodash';
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
2024-02-28 17:02:46 +08:00
|
|
|
|
import { PagerDto } from '~/common/dto/pager.dto';
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
|
|
// cron 表达式验证,bull lib下引用了cron-parser
|
|
|
|
|
@ValidatorConstraint({ name: 'isCronExpression', async: false })
|
|
|
|
|
export class IsCronExpression implements ValidatorConstraintInterface {
|
|
|
|
|
validate(value: string, _args: ValidationArguments) {
|
|
|
|
|
try {
|
2024-02-28 17:02:46 +08:00
|
|
|
|
if (isEmpty(value)) throw new BadRequestException('cron expression is empty');
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
2024-02-28 17:02:46 +08:00
|
|
|
|
parser.parseExpression(value);
|
|
|
|
|
return true;
|
|
|
|
|
} catch (e) {
|
|
|
|
|
return false;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defaultMessage(_args: ValidationArguments) {
|
2024-02-28 17:02:46 +08:00
|
|
|
|
return 'this cron expression ($value) invalid';
|
2024-02-28 08:32:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export class TaskDto {
|
|
|
|
|
@ApiProperty({ description: '任务名称' })
|
|
|
|
|
@IsString()
|
|
|
|
|
@MinLength(2)
|
|
|
|
|
@MaxLength(50)
|
2024-02-28 17:02:46 +08:00
|
|
|
|
name: string;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
|
|
@ApiProperty({ description: '调用的服务' })
|
|
|
|
|
@IsString()
|
|
|
|
|
@MinLength(1)
|
2024-02-28 17:02:46 +08:00
|
|
|
|
service: string;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
|
|
@ApiProperty({ description: '任务类别:cron | interval' })
|
|
|
|
|
@IsIn([0, 1])
|
2024-02-28 17:02:46 +08:00
|
|
|
|
type: number;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
|
|
@ApiProperty({ description: '任务状态' })
|
|
|
|
|
@IsIn([0, 1])
|
2024-02-28 17:02:46 +08:00
|
|
|
|
status: number;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
|
|
@ApiPropertyOptional({ description: '开始时间', type: Date })
|
|
|
|
|
@IsDateString()
|
|
|
|
|
@ValidateIf(o => !isEmpty(o.startTime))
|
2024-02-28 17:02:46 +08:00
|
|
|
|
startTime: string;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
|
|
@ApiPropertyOptional({ description: '结束时间', type: Date })
|
|
|
|
|
@IsDateString()
|
|
|
|
|
@ValidateIf(o => !isEmpty(o.endTime))
|
2024-02-28 17:02:46 +08:00
|
|
|
|
endTime: string;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
|
|
@ApiPropertyOptional({
|
2024-02-29 09:29:03 +08:00
|
|
|
|
description: '限制执行次数,负数则无限制'
|
2024-02-28 08:32:35 +08:00
|
|
|
|
})
|
|
|
|
|
@IsOptional()
|
|
|
|
|
@IsInt()
|
2024-02-28 17:02:46 +08:00
|
|
|
|
limit?: number = -1;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
|
|
@ApiProperty({ description: 'cron表达式' })
|
|
|
|
|
@Validate(IsCronExpression)
|
|
|
|
|
@ValidateIf(o => o.type === 0)
|
2024-02-28 17:02:46 +08:00
|
|
|
|
cron: string;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
|
|
@ApiProperty({ description: '执行间隔,毫秒单位' })
|
|
|
|
|
@IsInt()
|
|
|
|
|
@Min(100)
|
|
|
|
|
@ValidateIf(o => o.type === 1)
|
2024-02-28 17:02:46 +08:00
|
|
|
|
every?: number;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
|
|
@ApiPropertyOptional({ description: '执行参数' })
|
|
|
|
|
@IsOptional()
|
|
|
|
|
@IsString()
|
2024-02-28 17:02:46 +08:00
|
|
|
|
data?: string;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
|
|
@ApiPropertyOptional({ description: '任务备注' })
|
|
|
|
|
@IsOptional()
|
|
|
|
|
@IsString()
|
2024-02-28 17:02:46 +08:00
|
|
|
|
remark?: string;
|
2024-02-28 08:32:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export class TaskUpdateDto extends PartialType(TaskDto) {}
|
|
|
|
|
|
|
|
|
|
export class TaskQueryDto extends IntersectionType(PagerDto, PartialType(TaskDto)) {}
|