blob: 9b9f2fdf06e7bb97ea9e3408b91541a2a75d14df [file] [log] [blame]
/**
******************************************************************************
* Copyright © 2017-2018 PTA GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************
*/
import { Injectable } from '@angular/core';
import { Http, Response, Headers } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/catch';
import 'rxjs/add/operator/map';
import { Globals } from '../common/globals';
import { SessionContext } from '../common/session-context';
import { BaseHttpService } from './base-http.service';
import { User } from '../model/user';
import { LoginCredentials } from '../model/login-credentials';
@Injectable()
export class AuthenticationService extends BaseHttpService {
constructor(
private _http: Http,
private _sessionContext: SessionContext ) {
super( );
}
public login(creds: LoginCredentials): Observable<any> {
const headers = new Headers();
this.createCommonHeaders(headers, this._sessionContext );
return this._http.post(Globals.BASE_PORTAL_URL + '/login', creds, { headers: headers })
.map( res => {
super.extractSessionId( res.headers, this._sessionContext);
return super.extractData( res, this._sessionContext );
} )
.catch(err => super.handleErrorPromise(err, this._sessionContext) );
}
public checkAuth(): Observable<any> {
const headers = new Headers();
this.createCommonHeaders(headers, this._sessionContext );
return this._http.get(Globals.BASE_PORTAL_URL + '/checkAuth', { headers: headers })
.map( res => {
return super.extractData( res, this._sessionContext );
} )
.catch(err => super.handleErrorPromise(err, this._sessionContext) );
}
public logout(): Observable<any> {
const headers = new Headers();
this.createCommonHeaders(headers, this._sessionContext );
return this._http.get(Globals.BASE_PORTAL_URL + '/logout', { headers: headers })
.map( res => {
return super.extractData( res, this._sessionContext );
} )
.catch(err => super.handleErrorPromise(err, this._sessionContext) );
}
}