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
|
|
|
|
2016-03-26 18:19:10 +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();
|
2016-03-20 00:31:42 +08:00
|
|
|
|
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
|
|
|
|
2016-03-20 00:31:42 +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();
|
|
|
|
}
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
try {
|
|
|
|
await ObjectManagerRepository.getInstance().UserManager.createUser(req.body.newUser);
|
|
|
|
return next();
|
2016-03-20 00:31:42 +08:00
|
|
|
|
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-20 00:31:42 +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
|
|
|
|
2016-03-20 00:31:42 +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));
|
2016-03-20 00:31:42 +08:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2016-03-20 00:31:42 +08:00
|
|
|
|
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
}
|