1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-16 11:37:13 +02:00
pigallery2/frontend/app/model/network/user.service.ts

28 lines
824 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-27 00:36:38 +02:00
import {NetworkService} from "./network.service";
2016-12-27 17:09:47 +02: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 {
constructor(private _networkService: NetworkService) {
}
public logout(): Promise<Message<string>> {
console.log("call logout");
return this._networkService.postJson("/user/logout");
}
public login(credential: LoginCredential): Promise<Message<UserDTO>> {
return this._networkService.postJson("/user/login", {"loginCredential": credential});
}
public getSessionUser(): Promise<Message<UserDTO>> {
return this._networkService.getJson("/user/login");
}
2016-05-09 17:04:56 +02:00
}