mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
refactor(core): Stronger typing for workflow settings (no-changelog) (#5754)
This commit is contained in:
parent
d33a1ac1e9
commit
c9d9069c0e
|
@ -393,8 +393,7 @@ export class CredentialsHelper extends ICredentialsHelper {
|
|||
}
|
||||
|
||||
if (expressionResolveValues) {
|
||||
const timezone =
|
||||
(expressionResolveValues.workflow.settings.timezone as string) || defaultTimezone;
|
||||
const timezone = expressionResolveValues.workflow.settings.timezone ?? defaultTimezone;
|
||||
|
||||
try {
|
||||
decryptedData = expressionResolveValues.workflow.expression.getParameterValue(
|
||||
|
|
|
@ -23,6 +23,7 @@ import type {
|
|||
ExecutionStatus,
|
||||
IExecutionsSummary,
|
||||
FeatureFlags,
|
||||
WorkflowSettings,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import type { ActiveWorkflowRunner } from '@/ActiveWorkflowRunner';
|
||||
|
@ -455,16 +456,12 @@ export interface IVersionNotificationSettings {
|
|||
export interface IN8nUISettings {
|
||||
endpointWebhook: string;
|
||||
endpointWebhookTest: string;
|
||||
saveDataErrorExecution: 'all' | 'none';
|
||||
saveDataSuccessExecution: 'all' | 'none';
|
||||
saveDataErrorExecution: WorkflowSettings.SaveDataExecution;
|
||||
saveDataSuccessExecution: WorkflowSettings.SaveDataExecution;
|
||||
saveManualExecutions: boolean;
|
||||
executionTimeout: number;
|
||||
maxExecutionTimeout: number;
|
||||
workflowCallerPolicyDefaultOption:
|
||||
| 'any'
|
||||
| 'none'
|
||||
| 'workflowsFromAList'
|
||||
| 'workflowsFromSameOwner';
|
||||
workflowCallerPolicyDefaultOption: WorkflowSettings.CallerPolicy;
|
||||
oauthCallbackUrls: {
|
||||
oauth1: string;
|
||||
oauth2: string;
|
||||
|
|
|
@ -116,7 +116,7 @@ export class PermissionChecker {
|
|||
if (parentWorkflowId === undefined) {
|
||||
throw errorToThrow;
|
||||
}
|
||||
const allowedCallerIds = (subworkflow.settings.callerIds as string | undefined)
|
||||
const allowedCallerIds = subworkflow.settings.callerIds
|
||||
?.split(',')
|
||||
.map((id) => id.trim())
|
||||
.filter((id) => id !== '');
|
||||
|
|
|
@ -136,17 +136,11 @@ export function executeErrorWorkflow(
|
|||
|
||||
// Run the error workflow
|
||||
// To avoid an infinite loop do not run the error workflow again if the error-workflow itself failed and it is its own error-workflow.
|
||||
if (
|
||||
workflowData.settings?.errorWorkflow &&
|
||||
!(
|
||||
mode === 'error' &&
|
||||
workflowId &&
|
||||
workflowData.settings.errorWorkflow.toString() === workflowId
|
||||
)
|
||||
) {
|
||||
const { errorWorkflow } = workflowData.settings ?? {};
|
||||
if (errorWorkflow && !(mode === 'error' && workflowId && errorWorkflow === workflowId)) {
|
||||
Logger.verbose('Start external error workflow', {
|
||||
executionId,
|
||||
errorWorkflowId: workflowData.settings.errorWorkflow.toString(),
|
||||
errorWorkflowId: errorWorkflow,
|
||||
workflowId,
|
||||
});
|
||||
// If a specific error workflow is set run only that one
|
||||
|
@ -160,11 +154,7 @@ export function executeErrorWorkflow(
|
|||
}
|
||||
getWorkflowOwner(workflowId)
|
||||
.then((user) => {
|
||||
void WorkflowHelpers.executeErrorWorkflow(
|
||||
workflowData.settings!.errorWorkflow as string,
|
||||
workflowErrorData,
|
||||
user,
|
||||
);
|
||||
void WorkflowHelpers.executeErrorWorkflow(errorWorkflow, workflowErrorData, user);
|
||||
})
|
||||
.catch((error: Error) => {
|
||||
ErrorReporter.error(error);
|
||||
|
@ -172,7 +162,7 @@ export function executeErrorWorkflow(
|
|||
`Could not execute ErrorWorkflow for execution ID ${this.executionId} because of error querying the workflow owner`,
|
||||
{
|
||||
executionId,
|
||||
errorWorkflowId: workflowData.settings!.errorWorkflow!.toString(),
|
||||
errorWorkflowId: errorWorkflow,
|
||||
workflowId,
|
||||
error,
|
||||
workflowErrorData,
|
||||
|
@ -421,21 +411,21 @@ export function hookFunctionsPreExecute(parentProcessMode?: string): IWorkflowEx
|
|||
],
|
||||
nodeExecuteAfter: [
|
||||
async function (
|
||||
this: WorkflowHooks,
|
||||
nodeName: string,
|
||||
data: ITaskData,
|
||||
executionData: IRunExecutionData,
|
||||
): Promise<void> {
|
||||
if (this.workflowData.settings !== undefined) {
|
||||
if (this.workflowData.settings.saveExecutionProgress === false) {
|
||||
const saveExecutionProgress = config.getEnv('executions.saveExecutionProgress');
|
||||
const workflowSettings = this.workflowData.settings;
|
||||
if (workflowSettings !== undefined) {
|
||||
if (workflowSettings.saveExecutionProgress === false) {
|
||||
return;
|
||||
}
|
||||
if (
|
||||
this.workflowData.settings.saveExecutionProgress !== true &&
|
||||
!config.getEnv('executions.saveExecutionProgress')
|
||||
) {
|
||||
if (workflowSettings.saveExecutionProgress !== true && !saveExecutionProgress) {
|
||||
return;
|
||||
}
|
||||
} else if (!config.getEnv('executions.saveExecutionProgress')) {
|
||||
} else if (!saveExecutionProgress) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -563,13 +553,11 @@ function hookFunctionsSave(parentProcessMode?: string): IWorkflowExecuteHooks {
|
|||
}
|
||||
}
|
||||
|
||||
const workflowSettings = this.workflowData.settings;
|
||||
let saveManualExecutions = config.getEnv('executions.saveDataManualExecutions');
|
||||
if (
|
||||
this.workflowData.settings !== undefined &&
|
||||
this.workflowData.settings.saveManualExecutions !== undefined
|
||||
) {
|
||||
if (workflowSettings?.saveManualExecutions !== undefined) {
|
||||
// Apply to workflow override
|
||||
saveManualExecutions = this.workflowData.settings.saveManualExecutions as boolean;
|
||||
saveManualExecutions = workflowSettings.saveManualExecutions as boolean;
|
||||
}
|
||||
|
||||
if (isManualMode && !saveManualExecutions && !fullRunData.waitTill) {
|
||||
|
@ -1024,16 +1012,14 @@ async function executeWorkflow(
|
|||
additionalDataIntegrated.executeWorkflow = additionalData.executeWorkflow;
|
||||
|
||||
let subworkflowTimeout = additionalData.executionTimeoutTimestamp;
|
||||
if (
|
||||
workflowData.settings?.executionTimeout !== undefined &&
|
||||
workflowData.settings.executionTimeout > 0
|
||||
) {
|
||||
const workflowSettings = workflowData.settings;
|
||||
if (workflowSettings?.executionTimeout !== undefined && workflowSettings.executionTimeout > 0) {
|
||||
// We might have received a max timeout timestamp from the parent workflow
|
||||
// If we did, then we get the minimum time between the two timeouts
|
||||
// If no timeout was given from the parent, then we use our timeout.
|
||||
subworkflowTimeout = Math.min(
|
||||
additionalData.executionTimeoutTimestamp || Number.MAX_SAFE_INTEGER,
|
||||
Date.now() + (workflowData.settings.executionTimeout as number) * 1000,
|
||||
Date.now() + workflowSettings.executionTimeout * 1000,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@ import type {
|
|||
IRun,
|
||||
WorkflowExecuteMode,
|
||||
WorkflowHooks,
|
||||
WorkflowSettings,
|
||||
} from 'n8n-workflow';
|
||||
import {
|
||||
ErrorReporterProxy as ErrorReporter,
|
||||
|
@ -248,11 +249,9 @@ export class WorkflowRunner {
|
|||
// Changes were made by adding the `workflowTimeout` to the `additionalData`
|
||||
// So that the timeout will also work for executions with nested workflows.
|
||||
let executionTimeout: NodeJS.Timeout;
|
||||
let workflowTimeout = config.getEnv('executions.timeout'); // initialize with default
|
||||
if (data.workflowData.settings && data.workflowData.settings.executionTimeout) {
|
||||
workflowTimeout = data.workflowData.settings.executionTimeout as number; // preference on workflow setting
|
||||
}
|
||||
|
||||
const workflowSettings = data.workflowData.settings ?? {};
|
||||
let workflowTimeout = workflowSettings.executionTimeout ?? config.getEnv('executions.timeout'); // initialize with default
|
||||
if (workflowTimeout > 0) {
|
||||
workflowTimeout = Math.min(workflowTimeout, config.getEnv('executions.maxTimeout'));
|
||||
}
|
||||
|
@ -265,7 +264,7 @@ export class WorkflowRunner {
|
|||
active: data.workflowData.active,
|
||||
nodeTypes,
|
||||
staticData: data.workflowData.staticData,
|
||||
settings: data.workflowData.settings,
|
||||
settings: workflowSettings,
|
||||
});
|
||||
const additionalData = await WorkflowExecuteAdditionalData.getBase(
|
||||
data.userId,
|
||||
|
@ -590,16 +589,12 @@ export class WorkflowRunner {
|
|||
try {
|
||||
// Check if this execution data has to be removed from database
|
||||
// based on workflow settings.
|
||||
let saveDataErrorExecution = config.getEnv('executions.saveDataOnError') as string;
|
||||
let saveDataSuccessExecution = config.getEnv('executions.saveDataOnSuccess') as string;
|
||||
if (data.workflowData.settings !== undefined) {
|
||||
saveDataErrorExecution =
|
||||
(data.workflowData.settings.saveDataErrorExecution as string) ||
|
||||
saveDataErrorExecution;
|
||||
saveDataSuccessExecution =
|
||||
(data.workflowData.settings.saveDataSuccessExecution as string) ||
|
||||
saveDataSuccessExecution;
|
||||
}
|
||||
const workflowSettings = data.workflowData.settings ?? {};
|
||||
const saveDataErrorExecution =
|
||||
workflowSettings.saveDataErrorExecution ?? config.getEnv('executions.saveDataOnError');
|
||||
const saveDataSuccessExecution =
|
||||
workflowSettings.saveDataSuccessExecution ??
|
||||
config.getEnv('executions.saveDataOnSuccess');
|
||||
|
||||
const workflowDidSucceed = !runData.data.resultData.error;
|
||||
if (
|
||||
|
@ -666,10 +661,9 @@ export class WorkflowRunner {
|
|||
|
||||
// Start timeout for the execution
|
||||
let executionTimeout: NodeJS.Timeout;
|
||||
let workflowTimeout = config.getEnv('executions.timeout'); // initialize with default
|
||||
if (data.workflowData.settings && data.workflowData.settings.executionTimeout) {
|
||||
workflowTimeout = data.workflowData.settings.executionTimeout as number; // preference on workflow setting
|
||||
}
|
||||
|
||||
const workflowSettings = data.workflowData.settings ?? {};
|
||||
let workflowTimeout = workflowSettings.executionTimeout ?? config.getEnv('executions.timeout'); // initialize with default
|
||||
|
||||
const processTimeoutFunction = (timeout: number) => {
|
||||
this.activeExecutions.stopExecution(executionId, 'timeout');
|
||||
|
|
|
@ -130,13 +130,10 @@ class WorkflowRunnerProcess {
|
|||
const license = Container.get(License);
|
||||
await license.init(instanceId);
|
||||
|
||||
// Start timeout for the execution
|
||||
let workflowTimeout = config.getEnv('executions.timeout'); // initialize with default
|
||||
// eslint-disable-next-line @typescript-eslint/prefer-optional-chain
|
||||
if (this.data.workflowData.settings && this.data.workflowData.settings.executionTimeout) {
|
||||
workflowTimeout = this.data.workflowData.settings.executionTimeout as number; // preference on workflow setting
|
||||
}
|
||||
const workflowSettings = this.data.workflowData.settings ?? {};
|
||||
|
||||
// Start timeout for the execution
|
||||
let workflowTimeout = workflowSettings.executionTimeout ?? config.getEnv('executions.timeout'); // initialize with default
|
||||
if (workflowTimeout > 0) {
|
||||
workflowTimeout = Math.min(workflowTimeout, config.getEnv('executions.maxTimeout'));
|
||||
}
|
||||
|
|
|
@ -127,14 +127,9 @@ export class Worker extends BaseCommand {
|
|||
staticData = workflowData.staticData;
|
||||
}
|
||||
|
||||
let workflowTimeout = config.getEnv('executions.timeout'); // initialize with default
|
||||
if (
|
||||
// eslint-disable-next-line @typescript-eslint/prefer-optional-chain
|
||||
currentExecutionDb.workflowData.settings &&
|
||||
currentExecutionDb.workflowData.settings.executionTimeout
|
||||
) {
|
||||
workflowTimeout = currentExecutionDb.workflowData.settings.executionTimeout as number; // preference on workflow setting
|
||||
}
|
||||
const workflowSettings = currentExecutionDb.workflowData.settings ?? {};
|
||||
|
||||
let workflowTimeout = workflowSettings.executionTimeout ?? config.getEnv('executions.timeout'); // initialize with default
|
||||
|
||||
let executionTimeoutTimestamp: number | undefined;
|
||||
if (workflowTimeout > 0) {
|
||||
|
|
|
@ -245,32 +245,27 @@ export class WorkflowsService {
|
|||
await Container.get(ActiveWorkflowRunner).remove(workflowId);
|
||||
}
|
||||
|
||||
if (workflow.settings) {
|
||||
if (workflow.settings.timezone === 'DEFAULT') {
|
||||
// Do not save the default timezone
|
||||
delete workflow.settings.timezone;
|
||||
}
|
||||
if (workflow.settings.saveDataErrorExecution === 'DEFAULT') {
|
||||
// Do not save when default got set
|
||||
delete workflow.settings.saveDataErrorExecution;
|
||||
}
|
||||
if (workflow.settings.saveDataSuccessExecution === 'DEFAULT') {
|
||||
// Do not save when default got set
|
||||
delete workflow.settings.saveDataSuccessExecution;
|
||||
}
|
||||
if (workflow.settings.saveManualExecutions === 'DEFAULT') {
|
||||
// Do not save when default got set
|
||||
delete workflow.settings.saveManualExecutions;
|
||||
}
|
||||
if (
|
||||
parseInt(workflow.settings.executionTimeout as string, 10) ===
|
||||
config.get('executions.timeout')
|
||||
) {
|
||||
// Do not save when default got set
|
||||
delete workflow.settings.executionTimeout;
|
||||
const workflowSettings = workflow.settings ?? {};
|
||||
|
||||
const keysAllowingDefault = [
|
||||
'timezone',
|
||||
'saveDataErrorExecution',
|
||||
'saveDataSuccessExecution',
|
||||
'saveManualExecutions',
|
||||
'saveExecutionProgress',
|
||||
] as const;
|
||||
for (const key of keysAllowingDefault) {
|
||||
// Do not save the default value
|
||||
if (workflowSettings[key] === 'DEFAULT') {
|
||||
delete workflowSettings[key];
|
||||
}
|
||||
}
|
||||
|
||||
if (workflowSettings.executionTimeout === config.get('executions.timeout')) {
|
||||
// Do not save when default got set
|
||||
delete workflowSettings.executionTimeout;
|
||||
}
|
||||
|
||||
if (workflow.name) {
|
||||
workflow.updatedAt = new Date(); // required due to atomic update
|
||||
await validateEntity(workflow);
|
||||
|
|
|
@ -66,7 +66,7 @@ export class Expression {
|
|||
if (value instanceof Date) {
|
||||
// We don't want to use JSON.stringify for dates since it disregards workflow timezone
|
||||
result = DateTime.fromJSDate(value, {
|
||||
zone: this.workflow.settings.timezone?.toString() ?? 'default',
|
||||
zone: this.workflow.settings?.timezone ?? 'default',
|
||||
}).toISO();
|
||||
} else {
|
||||
result = JSON.stringify(value);
|
||||
|
|
|
@ -1709,8 +1709,21 @@ export interface IWorkflowHooksOptionalParameters {
|
|||
sessionId?: string;
|
||||
}
|
||||
|
||||
export namespace WorkflowSettings {
|
||||
export type CallerPolicy = 'any' | 'none' | 'workflowsFromAList' | 'workflowsFromSameOwner';
|
||||
export type SaveDataExecution = 'DEFAULT' | 'all' | 'none';
|
||||
}
|
||||
|
||||
export interface IWorkflowSettings {
|
||||
[key: string]: IDataObject | string | number | boolean | undefined;
|
||||
timezone?: 'DEFAULT' | string;
|
||||
errorWorkflow?: string;
|
||||
callerIds?: string;
|
||||
callerPolicy?: WorkflowSettings.CallerPolicy;
|
||||
saveDataErrorExecution?: WorkflowSettings.SaveDataExecution;
|
||||
saveDataSuccessExecution?: WorkflowSettings.SaveDataExecution;
|
||||
saveManualExecutions?: 'DEFAULT' | boolean;
|
||||
saveExecutionProgress?: 'DEFAULT' | boolean;
|
||||
executionTimeout?: number;
|
||||
}
|
||||
|
||||
export type LogTypes = 'debug' | 'verbose' | 'info' | 'warn' | 'error';
|
||||
|
|
|
@ -111,7 +111,7 @@ export class WorkflowDataProxy {
|
|||
this.siblingParameters = siblingParameters;
|
||||
this.mode = mode;
|
||||
this.defaultTimezone = defaultTimezone;
|
||||
this.timezone = (this.workflow.settings.timezone as string) || this.defaultTimezone;
|
||||
this.timezone = workflow.settings?.timezone ?? defaultTimezone;
|
||||
this.selfData = selfData;
|
||||
this.additionalKeys = additionalKeys;
|
||||
this.executeData = executeData;
|
||||
|
|
Loading…
Reference in a new issue