2016-05-01 00:01:54 +08:00
|
|
|
///<reference path="../../../browser.d.ts"/>
|
2016-03-19 16:58:27 +08:00
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
import {Injectable} from "@angular/core";
|
|
|
|
import {LoginCredential} from "../../../../common/entities/LoginCredential";
|
2016-05-01 00:01:54 +08:00
|
|
|
import {NetworkService} from "./network.service.ts";
|
|
|
|
import {User} from "../../../../common/entities/User";
|
|
|
|
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-05-09 23:04:56 +08:00
|
|
|
constructor(private _networkService:NetworkService) {
|
2016-03-19 16:58:27 +08:00
|
|
|
}
|
|
|
|
|
2016-05-17 05:15:03 +08:00
|
|
|
public logout():Promise<Message<string>> {
|
|
|
|
console.log("call logout");
|
|
|
|
return this._networkService.postJson("/user/logout");
|
|
|
|
}
|
2016-03-19 16:58:27 +08:00
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
public login(credential:LoginCredential):Promise<Message<User>> {
|
|
|
|
return this._networkService.postJson("/user/login", {"loginCredential": credential});
|
2016-03-19 16:58:27 +08:00
|
|
|
}
|
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
public getSessionUser():Promise<Message<User>> {
|
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
|
|
|
}
|