1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/model/network/user.service.ts

30 lines
888 B
TypeScript
Raw Normal View History

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