2016-05-09 17:04:56 +02:00
|
|
|
import {Injectable} from "@angular/core";
|
|
|
|
import {LoginCredential} from "../../../../common/entities/LoginCredential";
|
2016-12-27 00:36:38 +02:00
|
|
|
import {NetworkService} from "./network.service";
|
2016-12-27 17:09:47 +02:00
|
|
|
import {UserDTO} from "../../../../common/entities/UserDTO";
|
2017-07-03 19:17:49 +02:00
|
|
|
import {Config} from "../../../../common/config/public/Config";
|
|
|
|
import {ShareService} from "../../gallery/share.service";
|
2016-03-19 10:58:27 +02:00
|
|
|
|
|
|
|
@Injectable()
|
2016-05-09 17:04:56 +02:00
|
|
|
export class UserService {
|
2016-03-19 10:58:27 +02:00
|
|
|
|
|
|
|
|
2017-07-03 19:17:49 +02:00
|
|
|
constructor(private _networkService: NetworkService,
|
|
|
|
private _shareService: ShareService) {
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2016-03-19 10:58:27 +02:00
|
|
|
|
2017-07-03 19:17:49 +02:00
|
|
|
public logout(): Promise<string> {
|
2017-06-10 22:32:56 +02:00
|
|
|
return this._networkService.postJson("/user/logout");
|
|
|
|
}
|
2016-03-19 10:58:27 +02:00
|
|
|
|
2017-07-03 19:17:49 +02:00
|
|
|
public login(credential: LoginCredential): Promise<UserDTO> {
|
2017-07-09 12:03:17 +02:00
|
|
|
return this._networkService.postJson<UserDTO>("/user/login", {"loginCredential": credential});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async shareLogin(password: string): Promise<UserDTO> {
|
|
|
|
return this._networkService.postJson<UserDTO>("/share/login?sk=" + this._shareService.getSharingKey(), {"password": password});
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2016-03-19 10:58:27 +02:00
|
|
|
|
2017-07-03 19:17:49 +02:00
|
|
|
public async getSessionUser(): Promise<UserDTO> {
|
|
|
|
await this._shareService.wait();
|
|
|
|
if (Config.Client.Sharing.enabled == true) {
|
|
|
|
if (this._shareService.isSharing()) {
|
|
|
|
return this._networkService.getJson<UserDTO>("/user/login?sk=" + this._shareService.getSharingKey());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return this._networkService.getJson<UserDTO>("/user/login");
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2016-05-09 17:04:56 +02:00
|
|
|
|
2016-03-19 10:58:27 +02:00
|
|
|
}
|