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";
|
2016-05-01 00:01:54 +08:00
|
|
|
import {Message} from "../../../../common/entities/Message";
|
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
|
|
|
|
|
|
|
|
2016-12-27 06:36:38 +08:00
|
|
|
constructor(private _networkService: NetworkService) {
|
2016-03-19 16:58:27 +08:00
|
|
|
}
|
|
|
|
|
2016-12-27 06:36:38 +08:00
|
|
|
public logout(): Promise<Message<string>> {
|
2016-05-17 05:15:03 +08:00
|
|
|
console.log("call logout");
|
|
|
|
return this._networkService.postJson("/user/logout");
|
|
|
|
}
|
2016-03-19 16:58:27 +08:00
|
|
|
|
2016-12-27 23:09:47 +08:00
|
|
|
public login(credential: LoginCredential): Promise<Message<UserDTO>> {
|
2016-05-09 23:04:56 +08:00
|
|
|
return this._networkService.postJson("/user/login", {"loginCredential": credential});
|
2016-03-19 16:58:27 +08:00
|
|
|
}
|
|
|
|
|
2016-12-27 23:09:47 +08:00
|
|
|
public getSessionUser(): Promise<Message<UserDTO>> {
|
2016-05-05 04:37:26 +08:00
|
|
|
return this._networkService.getJson("/user/login");
|
2016-03-21 03:06:14 +08:00
|
|
|
}
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-03-19 16:58:27 +08:00
|
|
|
}
|