2022-11-24 09:32:00 -08:00
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
|
|
/* eslint-disable @typescript-eslint/naming-convention */
|
|
|
|
import { Router } from 'express';
|
|
|
|
import bodyParser from 'body-parser';
|
|
|
|
import { v4 as uuid } from 'uuid';
|
|
|
|
import config from '@/config';
|
|
|
|
import * as Db from '@/Db';
|
|
|
|
import { Role } from '@/databases/entities/Role';
|
|
|
|
import { hashPassword } from '@/UserManagement/UserManagementHelper';
|
2023-01-04 00:47:48 -08:00
|
|
|
import { eventBus } from '@/eventbus/MessageEventBus/MessageEventBus';
|
2022-11-24 09:32:00 -08:00
|
|
|
|
|
|
|
if (process.env.E2E_TESTS !== 'true') {
|
|
|
|
console.error('E2E endpoints only allowed during E2E tests');
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
const tablesToTruncate = [
|
2023-01-04 00:47:48 -08:00
|
|
|
'event_destinations',
|
2022-11-24 09:32:00 -08:00
|
|
|
'shared_workflow',
|
|
|
|
'shared_credentials',
|
|
|
|
'webhook_entity',
|
|
|
|
'workflows_tags',
|
|
|
|
'credentials_entity',
|
|
|
|
'tag_entity',
|
2023-01-04 00:47:48 -08:00
|
|
|
'workflow_statistics',
|
2022-11-24 09:32:00 -08:00
|
|
|
'workflow_entity',
|
|
|
|
'execution_entity',
|
|
|
|
'settings',
|
|
|
|
'installed_packages',
|
|
|
|
'installed_nodes',
|
|
|
|
'user',
|
|
|
|
'role',
|
|
|
|
];
|
|
|
|
|
|
|
|
const truncateAll = async () => {
|
|
|
|
const { connection } = Db;
|
|
|
|
for (const table of tablesToTruncate) {
|
|
|
|
await connection.query(
|
|
|
|
`DELETE FROM ${table}; DELETE FROM sqlite_sequence WHERE name=${table};`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const setupUserManagement = async () => {
|
|
|
|
const { connection } = Db;
|
|
|
|
await connection.query('INSERT INTO role (name, scope) VALUES ("owner", "global");');
|
|
|
|
const instanceOwnerRole = (await connection.query(
|
|
|
|
'SELECT last_insert_rowid() as insertId',
|
|
|
|
)) as Array<{ insertId: number }>;
|
|
|
|
|
|
|
|
const roles: Array<[Role['name'], Role['scope']]> = [
|
|
|
|
['member', 'global'],
|
|
|
|
['owner', 'workflow'],
|
|
|
|
['owner', 'credential'],
|
|
|
|
['user', 'credential'],
|
|
|
|
['editor', 'workflow'],
|
|
|
|
];
|
|
|
|
|
|
|
|
await Promise.all(
|
|
|
|
roles.map(async ([name, scope]) =>
|
|
|
|
connection.query(`INSERT INTO role (name, scope) VALUES ("${name}", "${scope}");`),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
await connection.query(
|
|
|
|
`INSERT INTO user (id, globalRoleId) values ("${uuid()}", ${instanceOwnerRole[0].insertId})`,
|
|
|
|
);
|
|
|
|
await connection.query(
|
2022-12-29 03:20:43 -08:00
|
|
|
"INSERT INTO \"settings\" (key, value, loadOnStartup) values ('userManagement.isInstanceOwnerSetUp', 'false', true), ('userManagement.skipInstanceOwnerSetup', 'false', true)",
|
2022-11-24 09:32:00 -08:00
|
|
|
);
|
2023-01-04 00:47:48 -08:00
|
|
|
|
|
|
|
config.set('userManagement.isInstanceOwnerSetUp', false);
|
|
|
|
};
|
|
|
|
|
|
|
|
const resetLogStreaming = async () => {
|
|
|
|
config.set('enterprise.features.logStreaming', false);
|
|
|
|
for (const id in eventBus.destinations) {
|
|
|
|
await eventBus.removeDestination(id);
|
|
|
|
}
|
2022-11-24 09:32:00 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
export const e2eController = Router();
|
|
|
|
|
|
|
|
e2eController.post('/db/reset', async (req, res) => {
|
2023-01-04 00:47:48 -08:00
|
|
|
await resetLogStreaming();
|
2022-11-24 09:32:00 -08:00
|
|
|
await truncateAll();
|
|
|
|
await setupUserManagement();
|
|
|
|
|
|
|
|
res.writeHead(204).end();
|
|
|
|
});
|
|
|
|
|
|
|
|
e2eController.post('/db/setup-owner', bodyParser.json(), async (req, res) => {
|
|
|
|
if (config.get('userManagement.isInstanceOwnerSetUp')) {
|
|
|
|
res.writeHead(500).send({ error: 'Owner already setup' });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const globalRole = await Db.collections.Role.findOneOrFail({
|
2023-01-13 09:12:22 -08:00
|
|
|
select: ['id'],
|
|
|
|
where: {
|
|
|
|
name: 'owner',
|
|
|
|
scope: 'global',
|
|
|
|
},
|
2022-11-24 09:32:00 -08:00
|
|
|
});
|
|
|
|
|
2023-01-13 09:12:22 -08:00
|
|
|
const owner = await Db.collections.User.findOneByOrFail({ globalRoleId: globalRole.id });
|
2022-11-24 09:32:00 -08:00
|
|
|
|
|
|
|
await Db.collections.User.update(owner.id, {
|
|
|
|
email: req.body.email,
|
|
|
|
password: await hashPassword(req.body.password),
|
|
|
|
firstName: req.body.firstName,
|
|
|
|
lastName: req.body.lastName,
|
|
|
|
});
|
|
|
|
|
|
|
|
await Db.collections.Settings.update(
|
|
|
|
{ key: 'userManagement.isInstanceOwnerSetUp' },
|
|
|
|
{ value: 'true' },
|
|
|
|
);
|
|
|
|
|
|
|
|
config.set('userManagement.isInstanceOwnerSetUp', true);
|
|
|
|
|
|
|
|
res.writeHead(204).end();
|
|
|
|
});
|
2023-01-04 00:47:48 -08:00
|
|
|
|
|
|
|
e2eController.post('/enable-feature/:feature', async (req, res) => {
|
|
|
|
config.set(`enterprise.features.${req.params.feature}`, true);
|
|
|
|
res.writeHead(204).end();
|
|
|
|
});
|