mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
0d3b8823e4
adding thumbnail loader for faces
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import {Injectable} from '@angular/core';
|
|
import {LoginCredential} from '../../../../common/entities/LoginCredential';
|
|
import {NetworkService} from './network.service';
|
|
import {UserDTO} from '../../../../common/entities/UserDTO';
|
|
import {Config} from '../../../../common/config/public/Config';
|
|
import {ShareService} from '../../ui/gallery/share.service';
|
|
|
|
@Injectable()
|
|
export class UserService {
|
|
|
|
|
|
constructor(private _networkService: NetworkService,
|
|
private _shareService: ShareService) {
|
|
}
|
|
|
|
public logout(): Promise<string> {
|
|
return this._networkService.postJson('/user/logout');
|
|
}
|
|
|
|
public login(credential: LoginCredential): Promise<UserDTO> {
|
|
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});
|
|
}
|
|
|
|
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');
|
|
}
|
|
|
|
}
|