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

28 lines
775 B
TypeScript
Raw Normal View History

///<reference path="../../../browser.d.ts"/>
2016-05-04 23:20:21 +08:00
import {Injectable} from '@angular/core';
import {LoginCredential} from "../../../../common/entities/LoginCredential";
2016-05-04 23:20:21 +08:00
import {Http} from "@angular/http";
import {NetworkService} from "./network.service.ts";
import {User} from "../../../../common/entities/User";
import {Message} from "../../../../common/entities/Message";
@Injectable()
2016-05-05 04:37:26 +08:00
export class UserService{
2016-05-05 04:37:26 +08:00
constructor(private _networkService:NetworkService){
}
2016-03-20 23:54:30 +08:00
public login(credential:LoginCredential): Promise<Message<User>>{
2016-05-05 04:37:26 +08:00
return this._networkService.postJson("/user/login",{"loginCredential": credential});
}
public getSessionUser(): Promise<Message<User>>{
2016-05-05 04:37:26 +08:00
return this._networkService.getJson("/user/login");
}
}