1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/backend/model/mysql/UserManager.ts

71 lines
2.2 KiB
TypeScript
Raw Normal View History

2016-12-27 16:09:47 +01:00
import {UserDTO, UserRoles} from "../../../common/entities/UserDTO";
import {IUserManager} from "../interfaces/IUserManager";
import {UserEntity} from "./enitites/UserEntity";
import {MySQLConnection} from "./MySQLConnection";
2017-07-09 22:36:25 +02:00
import {PasswordHelper} from "../PasswordHelper";
2016-12-27 16:09:47 +01:00
export class UserManager implements IUserManager {
2017-07-03 19:17:49 +02:00
constructor() {
}
2016-12-27 16:09:47 +01:00
2017-07-03 19:17:49 +02:00
public async findOne(filter: any) {
const connection = await MySQLConnection.getConnection();
2017-07-09 22:36:25 +02:00
let pass = filter.password;
delete filter.password;
2017-07-03 19:17:49 +02:00
const user = (await connection.getRepository(UserEntity).findOne(filter));
2017-07-09 22:36:25 +02:00
2017-07-03 19:17:49 +02:00
if (user.permissions && user.permissions != null) {
user.permissions = <any>JSON.parse(<any>user.permissions);
2016-12-27 16:09:47 +01:00
}
2017-07-09 22:36:25 +02:00
if (pass && !PasswordHelper.comparePassword(pass, user.password)) {
throw "No entry found";
}
2017-07-03 19:17:49 +02:00
return user;
};
public async find(filter: any) {
const connection = await MySQLConnection.getConnection();
return (await connection.getRepository(UserEntity).find(filter)).map(user => {
if (user.permissions && user.permissions != null) {
user.permissions = <any>JSON.parse(<any>user.permissions);
}
return user;
});
}
public async createUser(user: UserDTO) {
const connection = await MySQLConnection.getConnection();
if (user.permissions && user.permissions != null) {
user.permissions = <any>JSON.stringify(<any>user.permissions);
2016-12-27 16:09:47 +01:00
}
2017-07-11 09:01:59 +02:00
user.password = PasswordHelper.cryptPassword(user.password);
2017-07-03 19:17:49 +02:00
return await connection.getRepository(UserEntity).persist(user);
}
2016-12-27 16:09:47 +01:00
2017-07-03 19:17:49 +02:00
public async deleteUser(id: number) {
const connection = await MySQLConnection.getConnection();
const user = await connection.getRepository(UserEntity).findOne({id: id});
return await connection.getRepository(UserEntity).remove(user);
}
2016-12-27 16:09:47 +01:00
2017-07-03 19:17:49 +02:00
public async changeRole(id: number, newRole: UserRoles) {
2016-12-27 16:09:47 +01:00
2017-07-03 19:17:49 +02:00
const connection = await MySQLConnection.getConnection();
let userRepository = connection.getRepository(UserEntity);
const user = await userRepository.findOne({id: id});
user.role = newRole;
return await userRepository.persist(user);
2016-12-27 16:09:47 +01:00
2017-07-03 19:17:49 +02:00
}
2016-12-27 16:09:47 +01:00
2017-07-03 19:17:49 +02:00
public async changePassword(request: any) {
throw new Error("not implemented"); //TODO: implement
}
2016-12-27 16:09:47 +01:00
2017-07-03 19:17:49 +02:00
}