2021-08-29 11:58:11 -07:00
|
|
|
/* eslint-disable no-prototype-builtins */
|
|
|
|
import { INode, IWorkflowCredentials } from 'n8n-workflow';
|
|
|
|
// eslint-disable-next-line import/no-cycle
|
|
|
|
import { Db } from '.';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
2019-06-23 03:35:23 -07:00
|
|
|
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 = {};
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
let node;
|
|
|
|
let type;
|
2021-10-13 15:21:00 -07:00
|
|
|
let nodeCredentials;
|
2021-08-29 11:58:11 -07:00
|
|
|
let foundCredentials;
|
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
2019-06-23 03:35:23 -07:00
|
|
|
for (node of nodes) {
|
2020-02-09 23:18:44 -08:00
|
|
|
if (node.disabled === true || !node.credentials) {
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line no-continue
|
2019-06-23 03:35:23 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
2019-06-23 03:35:23 -07:00
|
|
|
for (type of Object.keys(node.credentials)) {
|
2021-10-13 15:21:00 -07:00
|
|
|
if (!returnCredentials[type]) {
|
2019-06-23 03:35:23 -07:00
|
|
|
returnCredentials[type] = {};
|
|
|
|
}
|
2021-10-13 15:21:00 -07:00
|
|
|
nodeCredentials = node.credentials[type];
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-10-13 15:21:00 -07:00
|
|
|
if (!nodeCredentials.id) {
|
|
|
|
throw new Error(
|
|
|
|
`Credentials with name "${nodeCredentials.name}" for type "${type}" miss an ID.`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!returnCredentials[type][nodeCredentials.id]) {
|
2022-04-14 00:02:12 -07:00
|
|
|
// eslint-disable-next-line no-await-in-loop
|
|
|
|
foundCredentials = await Db.collections.Credentials.findOne({
|
2021-10-13 15:21:00 -07:00
|
|
|
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
|
|
|
}
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line prefer-destructuring
|
2021-10-13 15:21:00 -07:00
|
|
|
returnCredentials[type][nodeCredentials.id] = foundCredentials;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return returnCredentials;
|
|
|
|
}
|