2022-02-23 18:39:36 +08:00
|
|
|
import { Database, Model } from '@nocobase/database';
|
2022-05-21 21:52:30 +08:00
|
|
|
import { HasManyCountAssociationsMixin, HasManyCreateAssociationMixin, HasManyGetAssociationsMixin, Transactionable } from 'sequelize';
|
2022-02-27 22:58:41 +08:00
|
|
|
|
2022-01-09 22:22:26 +08:00
|
|
|
import { EXECUTION_STATUS } from '../constants';
|
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;
|
2022-04-14 00:05:13 +08:00
|
|
|
declare useTransaction: boolean;
|
2022-05-12 12:19:25 +08:00
|
|
|
declare executed: boolean;
|
2022-01-28 00:25:26 +08:00
|
|
|
|
|
|
|
declare createdAt: Date;
|
|
|
|
declare updatedAt: Date;
|
|
|
|
|
|
|
|
declare nodes: FlowNodeModel[];
|
|
|
|
declare getNodes: HasManyGetAssociationsMixin<FlowNodeModel>;
|
|
|
|
declare createNode: HasManyCreateAssociationMixin<FlowNodeModel>;
|
|
|
|
|
|
|
|
declare executions: ExecutionModel[];
|
2022-04-29 22:21:58 +08:00
|
|
|
declare countExecutions: HasManyCountAssociationsMixin;
|
2022-01-28 00:25:26 +08:00
|
|
|
declare getExecutions: HasManyGetAssociationsMixin<ExecutionModel>;
|
|
|
|
declare createExecution: HasManyCreateAssociationMixin<ExecutionModel>;
|
2022-01-09 22:22:26 +08:00
|
|
|
|
2022-04-14 00:05:13 +08:00
|
|
|
getTransaction(options) {
|
|
|
|
if (!this.useTransaction) {
|
2022-05-21 21:52:30 +08:00
|
|
|
return null;
|
2022-04-14 00:05:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return options.transaction && !options.transaction.finished
|
|
|
|
? options.transaction
|
|
|
|
: (<typeof WorkflowModel>this.constructor).database.sequelize.transaction();
|
|
|
|
}
|
|
|
|
|
2022-05-21 21:52:30 +08:00
|
|
|
trigger = async (context: Object, options = {}) => {
|
2022-01-09 22:22:26 +08:00
|
|
|
// `null` means not to trigger
|
|
|
|
if (context === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-14 00:05:13 +08:00
|
|
|
const transaction = await this.getTransaction(options);
|
|
|
|
|
2022-04-29 22:21:58 +08:00
|
|
|
if (this.useTransaction) {
|
|
|
|
const existed = await this.countExecutions({
|
|
|
|
where: {
|
|
|
|
transaction: transaction.id
|
|
|
|
},
|
|
|
|
transaction
|
|
|
|
});
|
|
|
|
|
|
|
|
if (existed) {
|
|
|
|
console.warn(`workflow ${this.id} has already been triggered in same execution (${transaction.id}), and newly triggering will be skipped.`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-09 22:22:26 +08:00
|
|
|
const execution = await this.createExecution({
|
|
|
|
context,
|
2022-02-23 18:39:36 +08:00
|
|
|
status: EXECUTION_STATUS.STARTED,
|
2022-04-29 22:21:58 +08:00
|
|
|
useTransaction: this.useTransaction,
|
|
|
|
transaction: transaction.id
|
2022-04-14 00:05:13 +08:00
|
|
|
}, { transaction });
|
2022-01-28 00:25:26 +08:00
|
|
|
|
2022-01-26 02:27:23 +08:00
|
|
|
execution.workflow = this;
|
|
|
|
|
2022-04-14 00:05:13 +08:00
|
|
|
await execution.start({ transaction });
|
|
|
|
|
2022-05-12 12:19:25 +08:00
|
|
|
if (!this.executed) {
|
2022-05-21 21:52:30 +08:00
|
|
|
// NOTE: not to trigger afterUpdate hook here
|
|
|
|
await this.update({ executed: true }, { transaction, hooks: false });
|
2022-05-12 12:19:25 +08:00
|
|
|
}
|
|
|
|
|
2022-05-21 21:52:30 +08:00
|
|
|
// @ts-ignore
|
2022-04-14 00:05:13 +08:00
|
|
|
if (transaction && (!options.transaction || options.transaction.finished)) {
|
|
|
|
await transaction.commit();
|
|
|
|
}
|
|
|
|
|
2022-01-09 22:22:26 +08:00
|
|
|
return execution;
|
|
|
|
}
|
|
|
|
}
|