n8n/packages/cli/src/PublicApi/middlewares.ts

151 lines
3.7 KiB
TypeScript
Raw Normal View History

/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/no-unsafe-call */
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
/* eslint-disable import/no-cycle */
/* eslint-disable @typescript-eslint/no-unused-vars */
2022-04-04 18:57:18 -07:00
/* eslint-disable consistent-return */
/* eslint-disable @typescript-eslint/no-explicit-any */
import express = require('express');
import config = require('../../config');
import type { UserRequest } from '../requests';
2022-04-13 18:15:11 -07:00
import * as UserManagementMailer from '../UserManagement/email/UserManagementMailer';
import { decodeCursor, getGlobalMemberRole } from './helpers';
2022-04-04 18:57:18 -07:00
type Role = 'owner' | 'member';
const instanceOwnerSetup = (
req: express.Request,
res: express.Response,
next: express.NextFunction,
): any => {
if (!config.getEnv('userManagement.isInstanceOwnerSetUp')) {
2022-04-12 07:25:56 -07:00
return res.status(500).json({ message: 'Instance owner is not set up' });
2022-04-04 18:57:18 -07:00
}
next();
2022-04-04 18:57:18 -07:00
};
const emailSetup = (
req: express.Request,
res: express.Response,
next: express.NextFunction,
): any => {
if (!config.getEnv('userManagement.emails.mode')) {
2022-04-12 07:25:56 -07:00
return res.status(500).json({ message: 'Email is not set up' });
2022-04-04 18:57:18 -07:00
}
next();
2022-04-04 18:57:18 -07:00
};
const authorize =
(role: [Role]) =>
(req: express.Request, res: express.Response, next: express.NextFunction): any => {
const {
globalRole: { name: userRole },
} = req.user as { globalRole: { name: Role } };
if (role.includes(userRole)) {
return next();
}
return res.status(403).json({
2022-04-12 07:25:56 -07:00
message: 'Unauthorized',
2022-04-04 18:57:18 -07:00
});
};
2022-04-05 16:24:23 -07:00
const deletingOwnUser = (
req: UserRequest.Delete,
res: express.Response,
next: express.NextFunction,
): any => {
if (req.user.id === req.params.identifier) {
return res.status(400).json({
message: `Cannot delete your own user`,
});
}
next();
};
const transferingToDeletedUser = (
req: UserRequest.Delete,
res: express.Response,
next: express.NextFunction,
): any => {
if (req.query.transferId === req.params.identifier) {
return res.status(400).json({
message: `Request to delete a user failed because the user to delete and the transferee are the same user`,
});
}
next();
};
const validCursor = (
req: UserRequest.Get,
res: express.Response,
next: express.NextFunction,
): any => {
if (req.query.cursor) {
const { cursor } = req.query;
try {
2022-04-13 18:15:11 -07:00
const { offset, limit } = decodeCursor(cursor);
req.query.offset = offset;
req.query.limit = limit;
} catch (error) {
return res.status(400).json({
2022-04-13 18:15:11 -07:00
message: 'An invalid cursor was used',
});
}
}
next();
};
const getMailerInstance = async (
req: UserRequest.Invite,
res: express.Response,
next: express.NextFunction,
): Promise<any> => {
let mailer: UserManagementMailer.UserManagementMailer | undefined;
try {
mailer = await UserManagementMailer.getInstance();
req.mailer = mailer;
} catch (error) {
if (error instanceof Error) {
return res.status(500).json({
2022-04-14 15:09:31 -07:00
message: 'There is a problem with your SMTP setup',
});
}
}
2022-04-13 18:15:11 -07:00
next();
};
const globalMemberRoleSetup = async (
req: UserRequest.Invite,
res: express.Response,
next: express.NextFunction,
): Promise<any> => {
try {
const role = await getGlobalMemberRole();
req.globalMemberRole = role;
} catch (error) {
return res.status(500).json({
message: 'Members role not found in database - inconsistent state',
});
}
next();
};
export const middlewares = {
2022-04-13 18:15:11 -07:00
createUsers: [
instanceOwnerSetup,
emailSetup,
authorize(['owner']),
getMailerInstance,
globalMemberRoleSetup,
],
2022-04-05 16:24:23 -07:00
deleteUsers: [
instanceOwnerSetup,
deletingOwnUser,
transferingToDeletedUser,
authorize(['owner']),
],
getUsers: [instanceOwnerSetup, validCursor, authorize(['owner'])],
getUser: [instanceOwnerSetup, authorize(['owner'])],
};