n8n/packages/cli/src/WorkflowCredentials.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.3 KiB
TypeScript
Raw Normal View History

import type { INode, IWorkflowCredentials } from 'n8n-workflow';
import * as Db from '@/Db';
2019-06-23 03:35:23 -07:00
// eslint-disable-next-line @typescript-eslint/naming-convention
export async function WorkflowCredentials(nodes: INode[]): Promise<IWorkflowCredentials> {
// Go through all nodes to find which credentials are needed to execute the workflow
const returnCredentials: IWorkflowCredentials = {};
let node;
let type;
let nodeCredentials;
2019-06-23 03:35:23 -07:00
let foundCredentials;
2019-06-23 03:35:23 -07:00
for (node of nodes) {
if (node.disabled === true || !node.credentials) {
2019-06-23 03:35:23 -07:00
continue;
}
for (type of Object.keys(node.credentials)) {
if (!returnCredentials[type]) {
2019-06-23 03:35:23 -07:00
returnCredentials[type] = {};
}
nodeCredentials = node.credentials[type];
2019-06-23 03:35:23 -07:00
if (!nodeCredentials.id) {
throw new Error(
`Credentials with name "${nodeCredentials.name}" for type "${type}" miss an ID.`,
);
}
if (!returnCredentials[type][nodeCredentials.id]) {
foundCredentials = await Db.collections.Credentials.findOneBy({
id: nodeCredentials.id,
type,
});
if (!foundCredentials) {
throw new Error(
`Could not find credentials for type "${type}" with ID "${nodeCredentials.id}".`,
);
2019-06-23 03:35:23 -07:00
}
returnCredentials[type][nodeCredentials.id] = foundCredentials;
2019-06-23 03:35:23 -07:00
}
}
}
return returnCredentials;
}