2016-03-20 00:31:42 +08:00
|
|
|
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";
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2016-03-26 18:19:10 +08:00
|
|
|
export class UserRequestConstrainsMWs {
|
2016-03-20 00:31:42 +08:00
|
|
|
|
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();
|
2016-03-20 00:31:42 +08:00
|
|
|
}
|
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();
|
|
|
|
}
|
2016-03-20 00:31:42 +08:00
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
2016-03-20 00:31:42 +08:00
|
|
|
|
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-03-20 00:31:42 +08:00
|
|
|
}
|
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();
|
2016-03-20 00:31:42 +08:00
|
|
|
}
|
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
}
|