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";
|
2016-04-30 18:01:54 +02:00
|
|
|
import {Message} from "../../../../common/entities/Message";
|
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-06-10 22:32:56 +02:00
|
|
|
constructor(private _networkService: NetworkService) {
|
|
|
|
}
|
2016-03-19 10:58:27 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
public logout(): Promise<Message<string>> {
|
|
|
|
console.log("call logout");
|
|
|
|
return this._networkService.postJson("/user/logout");
|
|
|
|
}
|
2016-03-19 10:58:27 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
public login(credential: LoginCredential): Promise<Message<UserDTO>> {
|
|
|
|
return this._networkService.postJson("/user/login", {"loginCredential": credential});
|
|
|
|
}
|
2016-03-19 10:58:27 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
public getSessionUser(): Promise<Message<UserDTO>> {
|
|
|
|
return this._networkService.getJson("/user/login");
|
|
|
|
}
|
2016-05-09 17:04:56 +02:00
|
|
|
|
2016-03-19 10:58:27 +02:00
|
|
|
}
|