blob: 5f48f909111a94ed1369c630eb628dad5121f3cf [file] [log] [blame]
import { Injectable } from '@angular/core';
import { HttpHeaders, HttpClient, HttpResponse } from '@angular/common/http';
import { Router } from '@angular/router';
import { Observable } from 'rxjs/Rx';
import { Settings } from './settings';
@Injectable()
export class UserService {
constructor(
protected router: Router,
private http: HttpClient
) { }
public getCurrentUser(): Observable<string | object> {
return this.http
.get(`${ Settings.userAPI }/current`, { headers: this.getHeaders() })
.catch(_ => _);
}
public login(username: string, password: string): Observable<object> {
return this.http
.post(
`${ Settings.userAPI }/login`,
{ username: username, password: password },
{ headers: this.getHeaders() }
);
}
protected getHeaders() {
let headers = new HttpHeaders();
headers.append('Accept', 'application/json');
headers.append('Content-Type', 'application/json');
return headers;
}
}