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

67 lines
2.3 KiB
TypeScript
Raw Normal View History

2016-05-26 02:17:42 +08:00
///<reference path="../customtypings/ExtendedRequest.d.ts"/>
2016-05-26 15:44:13 +08:00
///<reference path="../../../typings/index.d.ts"/>
import {NextFunction, Request, Response} from "express";
2016-05-26 02:17:42 +08:00
import {Error, ErrorCodes} from "../../../common/entities/Error";
2016-07-07 18:26:36 +08:00
import {UserRoles, User} from "../../../common/entities/User";
2016-05-26 02:17:42 +08:00
import {ObjectManagerRepository} from "../../model/ObjectManagerRepository";
2016-07-07 18:26:36 +08:00
import {Config} from "../../config/Config";
export class AuthenticationMWs {
2016-05-09 23:04:56 +08:00
public static authenticate(req:Request, res:Response, next:NextFunction) {
2016-07-07 18:26:36 +08:00
if (Config.Client.authenticationRequired === false) {
req.session.user = new User("", "", UserRoles.Admin);
return next();
}
2016-05-17 05:15:03 +08:00
if (typeof req.session.user === 'undefined') {
return next(new Error(ErrorCodes.NOT_AUTHENTICATED));
2016-05-26 02:17:42 +08:00
}
return next();
}
2016-05-09 23:04:56 +08:00
public static authorise(role:UserRoles) {
return (req:Request, res:Response, next:NextFunction) => {
if (req.session.user.role < role) {
return next(new Error(ErrorCodes.NOT_AUTHORISED));
}
return next();
};
}
2016-05-09 23:04:56 +08:00
public static inverseAuthenticate(req:Request, res:Response, next:NextFunction) {
if (typeof req.session.user !== 'undefined') {
return next(new Error(ErrorCodes.ALREADY_AUTHENTICATED));
}
return next();
}
2016-05-09 23:04:56 +08:00
public static login(req:Request, res:Response, next:NextFunction) {
//not enough parameter
2016-05-09 23:04:56 +08:00
if ((typeof req.body === 'undefined') || (typeof req.body.loginCredential === 'undefined') || (typeof req.body.loginCredential.username === 'undefined') ||
2016-03-20 23:54:30 +08:00
(typeof req.body.loginCredential.password === 'undefined')) {
return next();
}
2016-05-17 05:15:03 +08:00
//lets find the user
2016-04-22 19:23:44 +08:00
ObjectManagerRepository.getInstance().getUserManager().findOne({
2016-05-09 23:04:56 +08:00
name: req.body.loginCredential.username,
password: req.body.loginCredential.password
}, (err, result) => {
if ((err) || (!result)) {
return next(new Error(ErrorCodes.CREDENTIAL_NOT_FOUND));
}
req.session.user = result;
return next();
});
}
2016-05-17 05:15:03 +08:00
public static logout(req:Request, res:Response, next:NextFunction) {
delete req.session.user;
return next();
}
}