mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2026-01-16 18:38:10 +00:00
32 lines
886 B
TypeScript
32 lines
886 B
TypeScript
import { CoolCommException } from '@cool-midway/core';
|
|
import { Inject, Middleware } from '@midwayjs/decorator';
|
|
import { NextFunction, Context } from '@midwayjs/koa';
|
|
import { IMiddleware } from '@midwayjs/core';
|
|
import { TaskInfoQueue } from '../queue/task';
|
|
|
|
/**
|
|
* 任务中间件
|
|
*/
|
|
@Middleware()
|
|
export class TaskMiddleware implements IMiddleware<Context, NextFunction> {
|
|
@Inject()
|
|
taskInfoQueue: TaskInfoQueue;
|
|
resolve() {
|
|
return async (ctx: Context, next: NextFunction) => {
|
|
const urls = ctx.url.split('/');
|
|
if (
|
|
['add', 'update', 'once', 'stop', 'start'].includes(
|
|
urls[urls.length - 1]
|
|
)
|
|
) {
|
|
if (!this.taskInfoQueue.metaQueue) {
|
|
throw new CoolCommException(
|
|
'task插件未启用或redis配置错误或redis版本过低(>=6.x)'
|
|
);
|
|
}
|
|
}
|
|
await next();
|
|
};
|
|
}
|
|
}
|