2016-05-09 23:04:56 +08:00
|
|
|
import {Injectable} from "@angular/core";
|
2016-12-27 23:09:47 +08:00
|
|
|
import {UserDTO} from "../../../../common/entities/UserDTO";
|
2016-07-09 21:08:36 +08:00
|
|
|
import {NetworkService} from "../../model/network/network.service";
|
|
|
|
import {Message} from "../../../../common/entities/Message";
|
2016-04-26 21:10:05 +08:00
|
|
|
|
|
|
|
@Injectable()
|
2016-07-09 21:08:36 +08:00
|
|
|
export class UserManagerSettingsService {
|
2016-04-26 21:10:05 +08:00
|
|
|
|
2016-05-05 23:51:51 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
constructor(private _networkService: NetworkService) {
|
|
|
|
}
|
2016-04-26 21:10:05 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
public createUser(user: UserDTO): Promise<Message<string>> {
|
|
|
|
return this._networkService.putJson("/user", {newUser: user});
|
|
|
|
}
|
2016-04-26 21:10:05 +08:00
|
|
|
|
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
public getUsers(): Promise<Message<Array<UserDTO>>> {
|
|
|
|
return this._networkService.getJson("/user/list");
|
|
|
|
}
|
2016-04-26 21:10:05 +08:00
|
|
|
|
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
public deleteUser(user: UserDTO) {
|
|
|
|
return this._networkService.deleteJson("/user/" + user.id);
|
|
|
|
}
|
2016-05-03 20:29:24 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
public updateRole(user: UserDTO) {
|
|
|
|
return this._networkService.postJson("/user/" + user.id + "/role", {newRole: user.role});
|
|
|
|
}
|
2016-04-26 21:10:05 +08:00
|
|
|
}
|