2018-03-31 03:30:30 +08:00
|
|
|
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 '../../gallery/share.service';
|
2016-03-19 16:58:27 +08:00
|
|
|
|
|
|
|
@Injectable()
|
2016-05-09 23:04:56 +08:00
|
|
|
export class UserService {
|
2016-03-19 16:58:27 +08:00
|
|
|
|
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
constructor(private _networkService: NetworkService,
|
|
|
|
private _shareService: ShareService) {
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-03-19 16:58:27 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
public logout(): Promise<string> {
|
2018-03-31 03:30:30 +08:00
|
|
|
return this._networkService.postJson('/user/logout');
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-03-19 16:58:27 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
public login(credential: LoginCredential): Promise<UserDTO> {
|
2018-03-31 03:30:30 +08:00
|
|
|
return this._networkService.postJson<UserDTO>('/user/login', {'loginCredential': credential});
|
2017-07-09 18:03:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public async shareLogin(password: string): Promise<UserDTO> {
|
2018-03-31 03:30:30 +08:00
|
|
|
return this._networkService.postJson<UserDTO>('/share/login?sk=' + this._shareService.getSharingKey(), {'password': password});
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-03-19 16:58:27 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
public async getSessionUser(): Promise<UserDTO> {
|
|
|
|
await this._shareService.wait();
|
2018-05-04 07:17:08 +08:00
|
|
|
if (Config.Client.Sharing.enabled === true) {
|
2017-07-04 01:17:49 +08:00
|
|
|
if (this._shareService.isSharing()) {
|
2018-03-31 03:30:30 +08:00
|
|
|
return this._networkService.getJson<UserDTO>('/user/login?sk=' + this._shareService.getSharingKey());
|
2017-07-04 01:17:49 +08:00
|
|
|
}
|
|
|
|
}
|
2018-03-31 03:30:30 +08:00
|
|
|
return this._networkService.getJson<UserDTO>('/user/login');
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-03-19 16:58:27 +08:00
|
|
|
}
|