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
856 B
TypeScript
Raw Normal View History

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";
import {Message} from "../../../../common/entities/Message";
@Injectable()
2016-05-09 23:04:56 +08:00
export class UserService {
2016-12-27 06:36:38 +08:00
constructor(private _networkService: NetworkService) {
}
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-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-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-05-09 23:04:56 +08:00
}