1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/model/network/user.service.ts

36 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-05-09 23:04:56 +08:00
import {Injectable} from "@angular/core";
import {LoginCredential} from "../../../../common/entities/LoginCredential";
2016-12-27 06:36:38 +08:00
import {NetworkService} from "./network.service";
2016-12-27 23:09:47 +08:00
import {UserDTO} from "../../../../common/entities/UserDTO";
2017-07-04 01:17:49 +08:00
import {Config} from "../../../../common/config/public/Config";
import {ShareService} from "../../gallery/share.service";
@Injectable()
2016-05-09 23:04:56 +08:00
export class UserService {
2017-07-04 01:17:49 +08:00
constructor(private _networkService: NetworkService,
private _shareService: ShareService) {
}
2017-07-04 01:17:49 +08:00
public logout(): Promise<string> {
console.log("call logout");
return this._networkService.postJson("/user/logout");
}
2017-07-04 01:17:49 +08:00
public login(credential: LoginCredential): Promise<UserDTO> {
return this._networkService.postJson("/user/login", {"loginCredential": credential});
}
2017-07-04 01:17:49 +08: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");
}
2016-05-09 23:04:56 +08:00
}