2016-03-20 00:31:42 +08:00
|
|
|
|
|
|
|
import {UserManager} from "../model/UserManager";
|
|
|
|
import {NextFunction, Request, Response} from "express";
|
|
|
|
import {BaseMWs} from "./BaseMWs";
|
|
|
|
import {Error, ErrorCodes} from "../../common/entities/Error";
|
|
|
|
import {UserRoles} from "../../common/entities/User";
|
|
|
|
import {Utils} from "../../common/Utils";
|
|
|
|
|
|
|
|
export class AuthenticationMWs extends BaseMWs{
|
|
|
|
|
|
|
|
|
|
|
|
public static authenticate(req:Request, res:Response, next:NextFunction){
|
|
|
|
if (typeof req.session.user === 'undefined') {
|
|
|
|
return super.renderError(res,new Error(ErrorCodes.NOT_AUTHENTICATED));
|
|
|
|
}
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static authorise(role:UserRoles){
|
|
|
|
return (req:Request, res:Response, next:NextFunction) => {
|
|
|
|
if (req.session.user.role < role) {
|
|
|
|
return super.renderError(res, new Error(ErrorCodes.NOT_AUTHORISED));
|
|
|
|
}
|
|
|
|
return next();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public static inverseAuthenticate(req:Request, res:Response, next:NextFunction){
|
|
|
|
if (typeof req.session.user !== 'undefined') {
|
|
|
|
return super.renderError(res,new Error(ErrorCodes.ALREADY_AUTHENTICATED));
|
|
|
|
}
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static login(req:Request, res:Response, next:NextFunction){
|
|
|
|
//not enough parameter
|
2016-03-20 23:54:30 +08:00
|
|
|
if ((typeof req.body === 'undefined') || (typeof req.body.loginCredential === 'undefined') || (typeof req.body.loginCredential.username === 'undefined') ||
|
|
|
|
(typeof req.body.loginCredential.password === 'undefined')) {
|
2016-03-20 00:31:42 +08:00
|
|
|
return next();
|
|
|
|
}
|
|
|
|
|
|
|
|
//lets find the user
|
|
|
|
UserManager.findOne({
|
2016-03-20 23:54:30 +08:00
|
|
|
username: req.body.loginCredential.username,
|
|
|
|
password: req.body.loginCredential.password
|
2016-03-20 00:31:42 +08:00
|
|
|
}, (err, result) => {
|
|
|
|
if ((err) || (!result)) {
|
|
|
|
return super.renderError(res,new Error(ErrorCodes.CREDENTIAL_NOT_FOUND));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
req.session.user = result;
|
|
|
|
|
|
|
|
return next();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static renderUser(req:Request, res:Response, next:NextFunction){
|
2016-03-20 23:54:30 +08:00
|
|
|
if(!(req.session.user)){
|
|
|
|
return super.renderError(res,new Error(ErrorCodes.GENERAL_ERROR));
|
|
|
|
}
|
|
|
|
|
2016-03-20 00:31:42 +08:00
|
|
|
let user = Utils.clone(req.session.user);
|
|
|
|
delete user.password;
|
|
|
|
super.renderMessage(res,user);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|