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

108 lines
3.4 KiB
TypeScript
Raw Normal View History

2018-03-31 03:30:30 +08:00
import {NextFunction, Request, Response} from 'express';
import {ErrorCodes, ErrorDTO} from '../../../common/entities/Error';
import {ObjectManagerRepository} from '../../model/ObjectManagerRepository';
import {Utils} from '../../../common/Utils';
import {Config} from '../../../common/config/private/Config';
2016-03-19 04:36:58 +08:00
export class UserMWs {
2016-03-19 04:36:58 +08:00
2017-07-04 01:17:49 +08:00
public static async changePassword(req: Request, res: Response, next: NextFunction) {
if (Config.Client.authenticationRequired === false) {
2017-07-15 18:47:11 +08:00
return next(new ErrorDTO(ErrorCodes.USER_MANAGEMENT_DISABLED));
2016-03-19 04:36:58 +08:00
}
2017-07-04 01:17:49 +08:00
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();
}
try {
await ObjectManagerRepository.getInstance().UserManager.changePassword(req.body.userModReq);
return next();
2017-07-04 01:17:49 +08:00
} catch (err) {
2017-07-15 18:47:11 +08:00
return next(new ErrorDTO(ErrorCodes.GENERAL_ERROR, null, err));
2017-07-04 01:17:49 +08:00
}
}
2016-05-09 23:04:56 +08:00
2017-07-04 01:17:49 +08:00
public static async createUser(req: Request, res: Response, next: NextFunction) {
if (Config.Client.authenticationRequired === false) {
2017-07-15 18:47:11 +08:00
return next(new ErrorDTO(ErrorCodes.USER_MANAGEMENT_DISABLED));
2017-07-04 01:17:49 +08:00
}
if ((typeof req.body === 'undefined') || (typeof req.body.newUser === 'undefined')) {
return next();
}
2017-07-04 01:17:49 +08:00
try {
await ObjectManagerRepository.getInstance().UserManager.createUser(req.body.newUser);
return next();
2017-07-04 01:17:49 +08:00
} catch (err) {
2017-07-15 18:47:11 +08:00
return next(new ErrorDTO(ErrorCodes.USER_CREATION_ERROR, null, err));
2016-03-19 04:36:58 +08:00
}
2016-03-19 04:36:58 +08:00
2017-07-04 01:17:49 +08:00
}
2016-03-19 04:36:58 +08:00
2017-07-04 01:17:49 +08:00
public static async deleteUser(req: Request, res: Response, next: NextFunction) {
if (Config.Client.authenticationRequired === false) {
2017-07-15 18:47:11 +08:00
return next(new ErrorDTO(ErrorCodes.USER_MANAGEMENT_DISABLED));
2017-07-04 01:17:49 +08:00
}
if ((typeof req.params === 'undefined') || (typeof req.params.id === 'undefined')) {
return next();
}
2016-03-19 04:36:58 +08:00
2017-07-04 01:17:49 +08:00
try {
await ObjectManagerRepository.getInstance().UserManager.deleteUser(req.params.id);
return next();
} catch (err) {
2017-07-15 18:47:11 +08:00
return next(new ErrorDTO(ErrorCodes.GENERAL_ERROR, null, err));
}
2017-07-04 01:17:49 +08:00
}
public static async changeRole(req: Request, res: Response, next: NextFunction) {
if (Config.Client.authenticationRequired === false) {
2017-07-15 18:47:11 +08:00
return next(new ErrorDTO(ErrorCodes.USER_MANAGEMENT_DISABLED));
2017-07-04 01:17:49 +08:00
}
if ((typeof req.params === 'undefined') || (typeof req.params.id === 'undefined')
|| (typeof req.body === 'undefined') || (typeof req.body.newRole === 'undefined')) {
return next();
}
try {
await ObjectManagerRepository.getInstance().UserManager.changeRole(req.params.id, req.body.newRole);
return next();
} catch (err) {
2017-07-15 18:47:11 +08:00
return next(new ErrorDTO(ErrorCodes.GENERAL_ERROR, null, err));
2017-07-04 01:17:49 +08:00
}
}
public static async listUsers(req: Request, res: Response, next: NextFunction) {
if (Config.Client.authenticationRequired === false) {
2017-07-15 18:47:11 +08:00
return next(new ErrorDTO(ErrorCodes.USER_MANAGEMENT_DISABLED));
2016-03-19 04:36:58 +08:00
}
2017-07-04 01:17:49 +08:00
try {
let result = await ObjectManagerRepository.getInstance().UserManager.find({});
result = Utils.clone(result);
for (let i = 0; i < result.length; i++) {
2018-03-31 03:30:30 +08:00
result[i].password = '';
2017-07-04 01:17:49 +08:00
}
req.resultPipe = result;
2017-07-08 18:43:42 +08:00
next();
2017-07-04 01:17:49 +08:00
} catch (err) {
2017-07-15 18:47:11 +08:00
return next(new ErrorDTO(ErrorCodes.GENERAL_ERROR, null, err));
2016-03-19 04:36:58 +08:00
}
2017-07-04 01:17:49 +08:00
}
2017-07-04 01:17:49 +08:00
}