You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
848 B
35 lines
848 B
import { getRepository } from 'typeorm';
|
|
import { User } from '../entity/User';
|
|
import { Permission } from '../lib/permissions';
|
|
|
|
export const checkUser: Middleware = async (req, _res, next) => {
|
|
if (req.session?.userId) {
|
|
const userRepository = getRepository(User);
|
|
|
|
const user = await userRepository.findOne({
|
|
where: { id: req.session.userId },
|
|
});
|
|
|
|
if (user) {
|
|
req.user = user;
|
|
}
|
|
}
|
|
next();
|
|
};
|
|
|
|
export const isAuthenticated = (
|
|
permissions?: Permission | Permission[]
|
|
): Middleware => {
|
|
const authMiddleware: Middleware = (req, res, next) => {
|
|
if (!req.user || !req.user.hasPermission(permissions ?? 0)) {
|
|
res.status(403).json({
|
|
status: 403,
|
|
error: 'You do not have permisson to access this endpoint',
|
|
});
|
|
} else {
|
|
next();
|
|
}
|
|
};
|
|
return authMiddleware;
|
|
};
|