2022-02-23 18:39:36 +08:00
|
|
|
import { Database, Model } from '@nocobase/database';
|
|
|
|
import { HasManyCreateAssociationMixin, HasManyGetAssociationsMixin } from 'sequelize';
|
2022-01-09 22:22:26 +08:00
|
|
|
import { EXECUTION_STATUS } from '../constants';
|
2022-02-23 18:39:36 +08:00
|
|
|
import { get as getTrigger } from '../triggers';
|
2022-01-28 00:25:26 +08:00
|
|
|
import ExecutionModel from './Execution';
|
|
|
|
import FlowNodeModel from './FlowNode';
|
|
|
|
|
|
|
|
export default class WorkflowModel extends Model {
|
|
|
|
declare static database: Database;
|
|
|
|
|
|
|
|
declare id: number;
|
|
|
|
declare title: string;
|
|
|
|
declare enabled: boolean;
|
|
|
|
declare description?: string;
|
|
|
|
declare type: string;
|
|
|
|
declare config: any;
|
|
|
|
|
|
|
|
declare createdAt: Date;
|
|
|
|
declare updatedAt: Date;
|
|
|
|
|
|
|
|
declare nodes: FlowNodeModel[];
|
|
|
|
declare getNodes: HasManyGetAssociationsMixin<FlowNodeModel>;
|
|
|
|
declare createNode: HasManyCreateAssociationMixin<FlowNodeModel>;
|
|
|
|
|
|
|
|
declare executions: ExecutionModel[];
|
|
|
|
declare getExecutions: HasManyGetAssociationsMixin<ExecutionModel>;
|
|
|
|
declare createExecution: HasManyCreateAssociationMixin<ExecutionModel>;
|
2022-01-09 22:22:26 +08:00
|
|
|
|
|
|
|
static async mount() {
|
2022-01-28 00:25:26 +08:00
|
|
|
const collection = this.database.getCollection('workflows');
|
|
|
|
const workflows = await collection.repository.find({
|
2022-02-23 18:39:36 +08:00
|
|
|
filter: { enabled: true },
|
2022-01-09 22:22:26 +08:00
|
|
|
});
|
|
|
|
|
2022-01-28 21:02:32 +08:00
|
|
|
workflows.forEach((workflow: WorkflowModel) => {
|
|
|
|
workflow.toggle();
|
2022-01-09 22:22:26 +08:00
|
|
|
});
|
|
|
|
|
2022-01-28 21:02:32 +08:00
|
|
|
this.addHook('afterCreate', (model: WorkflowModel) => model.toggle());
|
|
|
|
this.addHook('afterUpdate', (model: WorkflowModel) => model.toggle());
|
|
|
|
this.addHook('afterDestroy', (model: WorkflowModel) => model.toggle(false));
|
2022-01-09 22:22:26 +08:00
|
|
|
}
|
|
|
|
|
2022-01-28 21:02:32 +08:00
|
|
|
getHookId() {
|
|
|
|
return `workflow-${this.get('id')}`;
|
2022-01-09 22:22:26 +08:00
|
|
|
}
|
|
|
|
|
2022-01-28 21:02:32 +08:00
|
|
|
async toggle(enable?: boolean) {
|
|
|
|
const type = this.get('type');
|
|
|
|
const { on, off } = getTrigger(type);
|
|
|
|
if (typeof enable !== 'undefined' ? enable : this.get('enabled')) {
|
|
|
|
on.call(this, this.start.bind(this));
|
|
|
|
} else {
|
|
|
|
off.call(this);
|
|
|
|
}
|
2022-01-09 22:22:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
async start(context: Object, options) {
|
|
|
|
// `null` means not to trigger
|
|
|
|
if (context === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const execution = await this.createExecution({
|
|
|
|
context,
|
2022-02-23 18:39:36 +08:00
|
|
|
status: EXECUTION_STATUS.STARTED,
|
2022-01-09 22:22:26 +08:00
|
|
|
});
|
2022-01-28 00:25:26 +08:00
|
|
|
|
2022-01-26 02:27:23 +08:00
|
|
|
execution.workflow = this;
|
|
|
|
|
2022-01-28 00:25:26 +08:00
|
|
|
await execution.start(options);
|
2022-01-09 22:22:26 +08:00
|
|
|
return execution;
|
|
|
|
}
|
|
|
|
}
|