mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
62c096710f
- Fix autofixable violations - Remove unused directives - Allow for PascalCased variables - needed for dynamically imported or assigned classes, decorators, routers, etc.
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import { readFile as fsReadFile } from 'fs/promises';
|
|
import {
|
|
NodeOperationError,
|
|
type IExecuteFunctions,
|
|
type IExecuteWorkflowInfo,
|
|
jsonParse,
|
|
} from 'n8n-workflow';
|
|
|
|
export async function getWorkflowInfo(this: IExecuteFunctions, source: string, itemIndex = 0) {
|
|
const workflowInfo: IExecuteWorkflowInfo = {};
|
|
|
|
if (source === 'database') {
|
|
// Read workflow from database
|
|
workflowInfo.id = this.getNodeParameter('workflowId', itemIndex) as string;
|
|
} else if (source === 'localFile') {
|
|
// Read workflow from filesystem
|
|
const workflowPath = this.getNodeParameter('workflowPath', itemIndex) as string;
|
|
|
|
let workflowJson;
|
|
try {
|
|
workflowJson = await fsReadFile(workflowPath, { encoding: 'utf8' });
|
|
} catch (error) {
|
|
if (error.code === 'ENOENT') {
|
|
throw new NodeOperationError(
|
|
this.getNode(),
|
|
`The file "${workflowPath}" could not be found, [item ${itemIndex}]`,
|
|
);
|
|
}
|
|
|
|
throw error;
|
|
}
|
|
|
|
workflowInfo.code = jsonParse(workflowJson);
|
|
} else if (source === 'parameter') {
|
|
// Read workflow from parameter
|
|
const workflowJson = this.getNodeParameter('workflowJson', itemIndex) as string;
|
|
workflowInfo.code = jsonParse(workflowJson);
|
|
} else if (source === 'url') {
|
|
// Read workflow from url
|
|
const workflowUrl = this.getNodeParameter('workflowUrl', itemIndex) as string;
|
|
|
|
const requestOptions = {
|
|
headers: {
|
|
accept: 'application/json,text/*;q=0.99',
|
|
},
|
|
method: 'GET',
|
|
uri: workflowUrl,
|
|
json: true,
|
|
gzip: true,
|
|
};
|
|
|
|
const response = await this.helpers.request(requestOptions);
|
|
workflowInfo.code = response;
|
|
}
|
|
|
|
return workflowInfo;
|
|
}
|