mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
106 lines
3.8 KiB
TypeScript
106 lines
3.8 KiB
TypeScript
import {NextFunction, Request, Response} from "express";
|
|
import {Error, ErrorCodes} from "../../../common/entities/Error";
|
|
import {ObjectManagerRepository} from "../../model/ObjectManagerRepository";
|
|
import {UserDTO} from "../../../common/entities/UserDTO";
|
|
import {Config} from "../../config/Config";
|
|
import {Utils} from "../../../common/Utils";
|
|
|
|
export class UserMWs {
|
|
|
|
public static changePassword(req:Request, res:Response, next:NextFunction) {
|
|
if (Config.Client.authenticationRequired === false) {
|
|
return next(new Error(ErrorCodes.USER_MANAGEMENT_DISABLED));
|
|
}
|
|
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 (Config.Client.authenticationRequired === false) {
|
|
return next(new Error(ErrorCodes.USER_MANAGEMENT_DISABLED));
|
|
}
|
|
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 (Config.Client.authenticationRequired === false) {
|
|
return next(new Error(ErrorCodes.USER_MANAGEMENT_DISABLED));
|
|
}
|
|
if ((typeof req.params === 'undefined') || (typeof req.params.id === 'undefined')) {
|
|
return next();
|
|
}
|
|
|
|
ObjectManagerRepository.getInstance().getUserManager().deleteUser(req.params.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 (Config.Client.authenticationRequired === false) {
|
|
return next(new Error(ErrorCodes.USER_MANAGEMENT_DISABLED));
|
|
}
|
|
if ((typeof req.params === 'undefined') || (typeof req.params.id === 'undefined')
|
|
|| (typeof req.body === 'undefined') || (typeof req.body.newRole === 'undefined')) {
|
|
return next();
|
|
}
|
|
|
|
ObjectManagerRepository.getInstance().getUserManager().changeRole(req.params.id, req.body.newRole, (err) => {
|
|
if (err) {
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR));
|
|
}
|
|
|
|
return next();
|
|
});
|
|
}
|
|
|
|
|
|
public static listUsers(req:Request, res:Response, next:NextFunction) {
|
|
if (Config.Client.authenticationRequired === false) {
|
|
return next(new Error(ErrorCodes.USER_MANAGEMENT_DISABLED));
|
|
}
|
|
ObjectManagerRepository.getInstance().getUserManager().find({}, (err, result: Array<UserDTO>) => {
|
|
if ((err) || (!result)) {
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR));
|
|
}
|
|
result = Utils.clone(result);
|
|
for (let i = 0; i < result.length; i++) {
|
|
result[i].password = "";
|
|
}
|
|
|
|
req.resultPipe = result;
|
|
return next();
|
|
});
|
|
}
|
|
|
|
|
|
} |