mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
73 lines
2.0 KiB
TypeScript
73 lines
2.0 KiB
TypeScript
import { Container } from 'typedi';
|
|
import { Flags } from '@oclif/core';
|
|
import { WorkflowRepository } from '@db/repositories/workflow.repository';
|
|
import { BaseCommand } from '../BaseCommand';
|
|
|
|
export class UpdateWorkflowCommand extends BaseCommand {
|
|
static description = 'Update workflows';
|
|
|
|
static examples = [
|
|
'$ n8n update:workflow --all --active=false',
|
|
'$ n8n update:workflow --id=5 --active=true',
|
|
];
|
|
|
|
static flags = {
|
|
help: Flags.help({ char: 'h' }),
|
|
active: Flags.string({
|
|
description: 'Active state the workflow/s should be set to',
|
|
}),
|
|
all: Flags.boolean({
|
|
description: 'Operate on all workflows',
|
|
}),
|
|
id: Flags.string({
|
|
description: 'The ID of the workflow to operate on',
|
|
}),
|
|
};
|
|
|
|
async run() {
|
|
const { flags } = await this.parse(UpdateWorkflowCommand);
|
|
|
|
if (!flags.all && !flags.id) {
|
|
console.info('Either option "--all" or "--id" have to be set!');
|
|
return;
|
|
}
|
|
|
|
if (flags.all && flags.id) {
|
|
console.info(
|
|
'Either something else on top should be "--all" or "--id" can be set never both!',
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (flags.active === undefined) {
|
|
console.info('No update flag like "--active=true" has been set!');
|
|
return;
|
|
}
|
|
|
|
if (!['false', 'true'].includes(flags.active)) {
|
|
console.info('Valid values for flag "--active" are only "false" or "true"!');
|
|
return;
|
|
}
|
|
|
|
const newState = flags.active === 'true';
|
|
|
|
if (flags.id) {
|
|
this.logger.info(`Deactivating workflow with ID: ${flags.id}`);
|
|
await Container.get(WorkflowRepository).updateActiveState(flags.id, newState);
|
|
} else {
|
|
this.logger.info('Deactivating all workflows');
|
|
await Container.get(WorkflowRepository).deactivateAll();
|
|
}
|
|
|
|
this.logger.info('Done');
|
|
}
|
|
|
|
async catch(error: Error) {
|
|
this.logger.error('Error updating database. See log messages for details.');
|
|
this.logger.error('\nGOT ERROR');
|
|
this.logger.error('====================================');
|
|
this.logger.error(error.message);
|
|
this.logger.error(error.stack!);
|
|
}
|
|
}
|