mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
* 🚚 Move schema to standalone file * ⚡ Add assertions to string literal arrays * ✨ Infer typings for convict schema * 🔥 Remove unneeded assertions * 🔨 Fix errors surfaced by typings * ⚡ Type nodes.include/exclude per docs * ⚡ Account for types for exception paths * ⚡ Set method alias to flag incorrect paths * ⚡ Replace original with alias * ⚡ Make allowance for nodes.include * ⚡ Adjust leftover calls * 🔀 Fix conflicts * 🔥 Remove unneeded castings * 📘 Simplify exception path type * 📦 Update package-lock.json * 🔥 Remove unneeded imports * 🔥 Remove unrelated file * ⚡ Update schema * ⚡ Update interface * 📦 Update package-lock.json * 📦 Update package-lock.json * 🔥 Remove leftover assertions Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
311 lines
9.4 KiB
TypeScript
311 lines
9.4 KiB
TypeScript
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
import config = require('../../../../config');
|
|
import { MigrationHelpers } from '../../MigrationHelpers';
|
|
import { logMigrationEnd, logMigrationStart } from '../../utils/migrationHelpers';
|
|
|
|
// replacing the credentials in workflows and execution
|
|
// `nodeType: name` changes to `nodeType: { id, name }`
|
|
|
|
export class UpdateWorkflowCredentials1630330987096 implements MigrationInterface {
|
|
name = 'UpdateWorkflowCredentials1630330987096';
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
logMigrationStart(this.name);
|
|
|
|
const tablePrefix = config.getEnv('database.tablePrefix');
|
|
const helpers = new MigrationHelpers(queryRunner);
|
|
|
|
const credentialsEntities = await queryRunner.query(`
|
|
SELECT id, name, type
|
|
FROM "${tablePrefix}credentials_entity"
|
|
`);
|
|
|
|
const workflowsQuery = `
|
|
SELECT id, nodes
|
|
FROM "${tablePrefix}workflow_entity"
|
|
`;
|
|
|
|
// @ts-ignore
|
|
await helpers.runChunked(workflowsQuery, (workflows) => {
|
|
workflows.forEach(async (workflow) => {
|
|
const nodes = JSON.parse(workflow.nodes);
|
|
let credentialsUpdated = false;
|
|
// @ts-ignore
|
|
nodes.forEach((node) => {
|
|
if (node.credentials) {
|
|
const allNodeCredentials = Object.entries(node.credentials);
|
|
for (const [type, name] of allNodeCredentials) {
|
|
if (typeof name === 'string') {
|
|
const matchingCredentials = credentialsEntities.find(
|
|
// @ts-ignore
|
|
(credentials) => credentials.name === name && credentials.type === type,
|
|
);
|
|
node.credentials[type] = { id: matchingCredentials?.id.toString() || null, name };
|
|
credentialsUpdated = true;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
if (credentialsUpdated) {
|
|
const [updateQuery, updateParams] =
|
|
queryRunner.connection.driver.escapeQueryWithParameters(
|
|
`
|
|
UPDATE "${tablePrefix}workflow_entity"
|
|
SET nodes = :nodes
|
|
WHERE id = '${workflow.id}'
|
|
`,
|
|
{ nodes: JSON.stringify(nodes) },
|
|
{},
|
|
);
|
|
|
|
queryRunner.query(updateQuery, updateParams);
|
|
}
|
|
});
|
|
});
|
|
|
|
const waitingExecutionsQuery = `
|
|
SELECT id, "workflowData"
|
|
FROM "${tablePrefix}execution_entity"
|
|
WHERE "waitTill" IS NOT NULL AND finished = 0
|
|
`;
|
|
// @ts-ignore
|
|
await helpers.runChunked(waitingExecutionsQuery, (waitingExecutions) => {
|
|
waitingExecutions.forEach(async (execution) => {
|
|
const data = JSON.parse(execution.workflowData);
|
|
let credentialsUpdated = false;
|
|
// @ts-ignore
|
|
data.nodes.forEach((node) => {
|
|
if (node.credentials) {
|
|
const allNodeCredentials = Object.entries(node.credentials);
|
|
for (const [type, name] of allNodeCredentials) {
|
|
if (typeof name === 'string') {
|
|
const matchingCredentials = credentialsEntities.find(
|
|
// @ts-ignore
|
|
(credentials) => credentials.name === name && credentials.type === type,
|
|
);
|
|
node.credentials[type] = { id: matchingCredentials?.id.toString() || null, name };
|
|
credentialsUpdated = true;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
if (credentialsUpdated) {
|
|
const [updateQuery, updateParams] =
|
|
queryRunner.connection.driver.escapeQueryWithParameters(
|
|
`
|
|
UPDATE "${tablePrefix}execution_entity"
|
|
SET "workflowData" = :data
|
|
WHERE id = '${execution.id}'
|
|
`,
|
|
{ data: JSON.stringify(data) },
|
|
{},
|
|
);
|
|
|
|
queryRunner.query(updateQuery, updateParams);
|
|
}
|
|
});
|
|
});
|
|
|
|
const retryableExecutions = await queryRunner.query(`
|
|
SELECT id, "workflowData"
|
|
FROM "${tablePrefix}execution_entity"
|
|
WHERE "waitTill" IS NULL AND finished = 0 AND mode != 'retry'
|
|
ORDER BY "startedAt" DESC
|
|
LIMIT 200
|
|
`);
|
|
// @ts-ignore
|
|
retryableExecutions.forEach(async (execution) => {
|
|
const data = JSON.parse(execution.workflowData);
|
|
let credentialsUpdated = false;
|
|
// @ts-ignore
|
|
data.nodes.forEach((node) => {
|
|
if (node.credentials) {
|
|
const allNodeCredentials = Object.entries(node.credentials);
|
|
for (const [type, name] of allNodeCredentials) {
|
|
if (typeof name === 'string') {
|
|
const matchingCredentials = credentialsEntities.find(
|
|
// @ts-ignore
|
|
(credentials) => credentials.name === name && credentials.type === type,
|
|
);
|
|
node.credentials[type] = { id: matchingCredentials?.id.toString() || null, name };
|
|
credentialsUpdated = true;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
if (credentialsUpdated) {
|
|
const [updateQuery, updateParams] = queryRunner.connection.driver.escapeQueryWithParameters(
|
|
`
|
|
UPDATE "${tablePrefix}execution_entity"
|
|
SET "workflowData" = :data
|
|
WHERE id = '${execution.id}'
|
|
`,
|
|
{ data: JSON.stringify(data) },
|
|
{},
|
|
);
|
|
|
|
queryRunner.query(updateQuery, updateParams);
|
|
}
|
|
});
|
|
|
|
logMigrationEnd(this.name);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
const tablePrefix = config.getEnv('database.tablePrefix');
|
|
const helpers = new MigrationHelpers(queryRunner);
|
|
|
|
const credentialsEntities = await queryRunner.query(`
|
|
SELECT id, name, type
|
|
FROM "${tablePrefix}credentials_entity"
|
|
`);
|
|
|
|
const workflowsQuery = `
|
|
SELECT id, nodes
|
|
FROM "${tablePrefix}workflow_entity"
|
|
`;
|
|
|
|
// @ts-ignore
|
|
await helpers.runChunked(workflowsQuery, (workflows) => {
|
|
// @ts-ignore
|
|
workflows.forEach(async (workflow) => {
|
|
const nodes = JSON.parse(workflow.nodes);
|
|
let credentialsUpdated = false;
|
|
// @ts-ignore
|
|
nodes.forEach((node) => {
|
|
if (node.credentials) {
|
|
const allNodeCredentials = Object.entries(node.credentials);
|
|
for (const [type, creds] of allNodeCredentials) {
|
|
if (typeof creds === 'object') {
|
|
const matchingCredentials = credentialsEntities.find(
|
|
// @ts-ignore double-equals because creds.id can be string or number
|
|
(credentials) => credentials.id == creds.id && credentials.type === type,
|
|
);
|
|
if (matchingCredentials) {
|
|
node.credentials[type] = matchingCredentials.name;
|
|
} else {
|
|
// @ts-ignore
|
|
node.credentials[type] = creds.name;
|
|
}
|
|
credentialsUpdated = true;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
if (credentialsUpdated) {
|
|
const [updateQuery, updateParams] =
|
|
queryRunner.connection.driver.escapeQueryWithParameters(
|
|
`
|
|
UPDATE "${tablePrefix}workflow_entity"
|
|
SET nodes = :nodes
|
|
WHERE id = '${workflow.id}'
|
|
`,
|
|
{ nodes: JSON.stringify(nodes) },
|
|
{},
|
|
);
|
|
|
|
queryRunner.query(updateQuery, updateParams);
|
|
}
|
|
});
|
|
});
|
|
|
|
const waitingExecutionsQuery = `
|
|
SELECT id, "workflowData"
|
|
FROM "${tablePrefix}execution_entity"
|
|
WHERE "waitTill" IS NOT NULL AND finished = 0
|
|
`;
|
|
|
|
// @ts-ignore
|
|
await helpers.runChunked(waitingExecutionsQuery, (waitingExecutions) => {
|
|
// @ts-ignore
|
|
waitingExecutions.forEach(async (execution) => {
|
|
const data = JSON.parse(execution.workflowData);
|
|
let credentialsUpdated = false;
|
|
// @ts-ignore
|
|
data.nodes.forEach((node) => {
|
|
if (node.credentials) {
|
|
const allNodeCredentials = Object.entries(node.credentials);
|
|
for (const [type, creds] of allNodeCredentials) {
|
|
if (typeof creds === 'object') {
|
|
const matchingCredentials = credentialsEntities.find(
|
|
// @ts-ignore double-equals because creds.id can be string or number
|
|
(credentials) => credentials.id == creds.id && credentials.type === type,
|
|
);
|
|
if (matchingCredentials) {
|
|
node.credentials[type] = matchingCredentials.name;
|
|
} else {
|
|
// @ts-ignore
|
|
node.credentials[type] = creds.name;
|
|
}
|
|
credentialsUpdated = true;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
if (credentialsUpdated) {
|
|
const [updateQuery, updateParams] =
|
|
queryRunner.connection.driver.escapeQueryWithParameters(
|
|
`
|
|
UPDATE "${tablePrefix}execution_entity"
|
|
SET "workflowData" = :data
|
|
WHERE id = '${execution.id}'
|
|
`,
|
|
{ data: JSON.stringify(data) },
|
|
{},
|
|
);
|
|
|
|
await queryRunner.query(updateQuery, updateParams);
|
|
}
|
|
});
|
|
});
|
|
|
|
const retryableExecutions = await queryRunner.query(`
|
|
SELECT id, "workflowData"
|
|
FROM "${tablePrefix}execution_entity"
|
|
WHERE "waitTill" IS NULL AND finished = 0 AND mode != 'retry'
|
|
ORDER BY "startedAt" DESC
|
|
LIMIT 200
|
|
`);
|
|
|
|
// @ts-ignore
|
|
retryableExecutions.forEach(async (execution) => {
|
|
const data = JSON.parse(execution.workflowData);
|
|
let credentialsUpdated = false;
|
|
// @ts-ignore
|
|
data.nodes.forEach((node) => {
|
|
if (node.credentials) {
|
|
const allNodeCredentials = Object.entries(node.credentials);
|
|
for (const [type, creds] of allNodeCredentials) {
|
|
if (typeof creds === 'object') {
|
|
const matchingCredentials = credentialsEntities.find(
|
|
// @ts-ignore double-equals because creds.id can be string or number
|
|
(credentials) => credentials.id == creds.id && credentials.type === type,
|
|
);
|
|
if (matchingCredentials) {
|
|
node.credentials[type] = matchingCredentials.name;
|
|
} else {
|
|
// @ts-ignore
|
|
node.credentials[type] = creds.name;
|
|
}
|
|
credentialsUpdated = true;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
if (credentialsUpdated) {
|
|
const [updateQuery, updateParams] = queryRunner.connection.driver.escapeQueryWithParameters(
|
|
`
|
|
UPDATE "${tablePrefix}execution_entity"
|
|
SET "workflowData" = :data
|
|
WHERE id = '${execution.id}'
|
|
`,
|
|
{ data: JSON.stringify(data) },
|
|
{},
|
|
);
|
|
|
|
queryRunner.query(updateQuery, updateParams);
|
|
}
|
|
});
|
|
}
|
|
}
|