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";
|
2017-07-15 18:47:11 +08:00
|
|
|
import {IPrivateConfig} from "../../../../common/config/private/IPrivateConfig";
|
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-07-04 01:17:49 +08:00
|
|
|
public createUser(user: UserDTO): Promise<string> {
|
2017-06-11 04:32:56 +08:00
|
|
|
return this._networkService.putJson("/user", {newUser: user});
|
|
|
|
}
|
2016-04-26 21:10:05 +08:00
|
|
|
|
2017-07-15 18:47:11 +08:00
|
|
|
public async getSettings(): Promise<boolean> {
|
|
|
|
return (await <Promise<IPrivateConfig>>this._networkService.getJson("/settings")).Client.authenticationRequired;
|
|
|
|
}
|
|
|
|
|
|
|
|
public updateSettings(settings: boolean): Promise<void> {
|
|
|
|
return this._networkService.putJson("/settings/authentication", {settings: settings});
|
|
|
|
}
|
2016-04-26 21:10:05 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
public getUsers(): Promise<Array<UserDTO>> {
|
2017-06-11 04:32:56 +08:00
|
|
|
return this._networkService.getJson("/user/list");
|
|
|
|
}
|
2016-04-26 21:10:05 +08:00
|
|
|
|
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
public deleteUser(user: UserDTO): Promise<void> {
|
2017-06-11 04:32:56 +08:00
|
|
|
return this._networkService.deleteJson("/user/" + user.id);
|
|
|
|
}
|
2016-05-03 20:29:24 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
public updateRole(user: UserDTO): Promise<void> {
|
2017-06-11 04:32:56 +08:00
|
|
|
return this._networkService.postJson("/user/" + user.id + "/role", {newRole: user.role});
|
|
|
|
}
|
2016-04-26 21:10:05 +08:00
|
|
|
}
|