mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
90 lines
2.9 KiB
TypeScript
90 lines
2.9 KiB
TypeScript
|
|
import {UserManager} from "../model/memory/UserManager";
|
|
import {NextFunction, Request, Response} from "express";
|
|
import {Error, ErrorCodes} from "../../common/entities/Error";
|
|
import {ObjectManagerRepository} from "../model/ObjectManagerRepository";
|
|
|
|
export class UserMWs {
|
|
|
|
public static changePassword(req:Request, res:Response, next:NextFunction){
|
|
if ((typeof req.body === 'undefined') || (typeof req.body.userModReq === 'undefined')
|
|
|| (typeof req.body.userModReq.id === 'undefined')
|
|
|| (typeof req.body.userModReq.oldPassword === 'undefined')
|
|
|| (typeof req.body.userModReq.newPassword === 'undefined')) {
|
|
return next();
|
|
}
|
|
|
|
ObjectManagerRepository.getInstance().getUserManager().changePassword(req.body.userModReq, (err, result) =>{
|
|
if ((err) || (!result)) {
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR));
|
|
}
|
|
|
|
return next();
|
|
});
|
|
}
|
|
|
|
|
|
public static createUser(req:Request, res:Response, next:NextFunction){
|
|
if ((typeof req.body === 'undefined') || (typeof req.body.newUser === 'undefined')) {
|
|
return next();
|
|
}
|
|
|
|
ObjectManagerRepository.getInstance().getUserManager().createUser(req.body.newUser, (err, result) =>{
|
|
if ((err) || (!result)) {
|
|
return next(new Error(ErrorCodes.USER_CREATION_ERROR));
|
|
}
|
|
|
|
return next();
|
|
});
|
|
|
|
}
|
|
|
|
public static deleteUser(req:Request, res:Response, next:NextFunction){
|
|
if ((typeof req.body === 'undefined') || (typeof req.body.newUser === 'undefined')
|
|
|| (typeof req.body.userModReq.id === 'undefined')) {
|
|
return next();
|
|
}
|
|
|
|
ObjectManagerRepository.getInstance().getUserManager().deleteUser(req.body.userModReq.id, (err, result) =>{
|
|
if ((err) || (!result)) {
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR));
|
|
}
|
|
|
|
|
|
return next();
|
|
});
|
|
|
|
}
|
|
|
|
public static changeRole(req:Request, res:Response, next:NextFunction){
|
|
if ((typeof req.body === 'undefined') || (typeof req.body.userModReq === 'undefined')
|
|
|| (typeof req.body.userModReq.id === 'undefined')
|
|
|| (typeof req.body.userModReq.newRole === 'undefined')) {
|
|
return next();
|
|
}
|
|
|
|
ObjectManagerRepository.getInstance().getUserManager().changeRole(req.body.userModReq, (err) =>{
|
|
if (err) {
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR));
|
|
}
|
|
|
|
return next();
|
|
});
|
|
}
|
|
|
|
|
|
public static listUsers(req:Request, res:Response, next:NextFunction){
|
|
ObjectManagerRepository.getInstance().getUserManager().find({}, (err, result) =>{
|
|
if ((err) || (!result)) {
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR));
|
|
}
|
|
|
|
req.resultPipe = result;
|
|
return next();
|
|
});
|
|
}
|
|
|
|
|
|
|
|
|
|
} |