1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/frontend/app/model/network/user.service.ts

28 lines
856 B
TypeScript
Raw Normal View History

2016-05-09 17:04:56 +02:00
import {Injectable} from "@angular/core";
import {LoginCredential} from "../../../../common/entities/LoginCredential";
2016-12-26 23:36:38 +01:00
import {NetworkService} from "./network.service";
2016-12-27 16:09:47 +01:00
import {UserDTO} from "../../../../common/entities/UserDTO";
import {Message} from "../../../../common/entities/Message";
@Injectable()
2016-05-09 17:04:56 +02:00
export class UserService {
2016-12-26 23:36:38 +01:00
constructor(private _networkService: NetworkService) {
}
2016-12-26 23:36:38 +01:00
public logout(): Promise<Message<string>> {
2016-05-16 23:15:03 +02:00
console.log("call logout");
return this._networkService.postJson("/user/logout");
}
2016-12-27 16:09:47 +01:00
public login(credential: LoginCredential): Promise<Message<UserDTO>> {
2016-05-09 17:04:56 +02:00
return this._networkService.postJson("/user/login", {"loginCredential": credential});
}
2016-12-27 16:09:47 +01:00
public getSessionUser(): Promise<Message<UserDTO>> {
2016-05-04 22:37:26 +02:00
return this._networkService.getJson("/user/login");
}
2016-05-09 17:04:56 +02:00
}