1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/middlewares/user/UserRequestConstrainsMWs.ts

57 lines
1.6 KiB
TypeScript
Raw Normal View History

import {NextFunction, Request, Response} from "express";
2016-05-26 02:17:42 +08:00
import {Error, ErrorCodes} from "../../../common/entities/Error";
2016-12-27 23:09:47 +08:00
import {UserRoles} from "../../../common/entities/UserDTO";
2016-05-26 02:17:42 +08:00
import {ObjectManagerRepository} from "../../model/ObjectManagerRepository";
export class UserRequestConstrainsMWs {
2017-07-04 01:17:49 +08:00
public static forceSelfRequest(req: Request, res: Response, next: NextFunction) {
if ((typeof req.params === 'undefined') || (typeof req.params.id === 'undefined')) {
return next();
}
2017-07-04 01:17:49 +08:00
if (req.session.user.id !== req.params.id) {
return next(new Error(ErrorCodes.NOT_AUTHORISED));
}
return next();
}
2017-07-04 01:17:49 +08:00
public static notSelfRequest(req: Request, res: Response, next: NextFunction) {
if ((typeof req.params === 'undefined') || (typeof req.params.id === 'undefined')) {
return next();
}
if (req.session.user.id === req.params.id) {
return next(new Error(ErrorCodes.NOT_AUTHORISED));
}
2016-05-09 23:04:56 +08:00
2017-07-04 01:17:49 +08:00
return next();
}
2017-07-04 01:17:49 +08:00
public static async notSelfRequestOr2Admins(req: Request, res: Response, next: NextFunction) {
if ((typeof req.params === 'undefined') || (typeof req.params.id === 'undefined')) {
return next();
}
2016-05-09 23:04:56 +08:00
2017-07-04 01:17:49 +08:00
if (req.session.user.id !== req.params.id) {
return next();
}
2017-07-04 01:17:49 +08:00
//TODO: fix it!
try {
const result = await ObjectManagerRepository.getInstance().UserManager.find({minRole: UserRoles.Admin});
if (result.length <= 1) {
return next(new Error(ErrorCodes.GENERAL_ERROR));
}
return next();
} catch (err) {
return next(new Error(ErrorCodes.GENERAL_ERROR));
}
}
2017-07-04 01:17:49 +08:00
}