mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
61e26804ba
* ⚡ enabled array-type * ⚡ await-thenable on * ⚡ ban-types on * ⚡ default-param-last on * ⚡ dot-notation on * ⚡ member-delimiter-style on * ⚡ no-duplicate-imports on * ⚡ no-empty-interface on * ⚡ no-floating-promises on * ⚡ no-for-in-array on * ⚡ no-invalid-void-type on * ⚡ no-loop-func on * ⚡ no-shadow on * ⚡ ban-ts-comment re enabled * ⚡ @typescript-eslint/lines-between-class-members on * address my own comment * @typescript-eslint/return-await on * @typescript-eslint/promise-function-async on * @typescript-eslint/no-unnecessary-boolean-literal-compare on * @typescript-eslint/no-unnecessary-type-assertion on * prefer-const on * @typescript-eslint/prefer-optional-chain on Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
83 lines
2 KiB
TypeScript
83 lines
2 KiB
TypeScript
export class ExecutionError extends Error {
|
|
description: string | null = null;
|
|
|
|
itemIndex: number | undefined = undefined;
|
|
|
|
context: { itemIndex: number } | undefined = undefined;
|
|
|
|
stack = '';
|
|
|
|
lineNumber: number | undefined = undefined;
|
|
|
|
constructor(error: Error & { stack: string }, itemIndex?: number) {
|
|
super();
|
|
this.itemIndex = itemIndex;
|
|
|
|
if (this.itemIndex !== undefined) {
|
|
this.context = { itemIndex: this.itemIndex };
|
|
}
|
|
|
|
this.stack = error.stack;
|
|
|
|
this.populateFromStack();
|
|
}
|
|
|
|
/**
|
|
* Populate error `message` and `description` from error `stack`.
|
|
*/
|
|
private populateFromStack() {
|
|
const stackRows = this.stack.split('\n');
|
|
|
|
if (stackRows.length === 0) {
|
|
this.message = 'Unknown error';
|
|
}
|
|
|
|
const messageRow = stackRows.find((line) => line.includes('Error:'));
|
|
const lineNumberRow = stackRows.find((line) => line.includes('Code:'));
|
|
const lineNumberDisplay = this.toLineNumberDisplay(lineNumberRow);
|
|
|
|
if (!messageRow) {
|
|
this.message = `Unknown error ${lineNumberDisplay}`;
|
|
return;
|
|
}
|
|
|
|
const [errorDetails, errorType] = this.toErrorDetailsAndType(messageRow);
|
|
|
|
if (errorType) this.description = errorType;
|
|
|
|
if (!errorDetails) {
|
|
this.message = `Unknown error ${lineNumberDisplay}`;
|
|
return;
|
|
}
|
|
|
|
this.message = `${errorDetails} ${lineNumberDisplay}`;
|
|
}
|
|
|
|
private toLineNumberDisplay(lineNumberRow?: string) {
|
|
const errorLineNumberMatch = lineNumberRow?.match(/Code:(?<lineNumber>\d+)/);
|
|
|
|
if (!errorLineNumberMatch?.groups?.lineNumber) return null;
|
|
|
|
const lineNumber = errorLineNumberMatch.groups.lineNumber;
|
|
|
|
this.lineNumber = Number(lineNumber);
|
|
|
|
if (!lineNumber) return '';
|
|
|
|
return this.itemIndex === undefined
|
|
? `[line ${lineNumber}]`
|
|
: `[line ${lineNumber}, for item ${this.itemIndex}]`;
|
|
}
|
|
|
|
private toErrorDetailsAndType(messageRow?: string) {
|
|
if (!messageRow) return [null, null];
|
|
|
|
const [errorDetails, errorType] = messageRow
|
|
.split(':')
|
|
.reverse()
|
|
.map((i) => i.trim());
|
|
|
|
return [errorDetails, errorType === 'Error' ? null : errorType];
|
|
}
|
|
}
|