argos/dmp-frontend/src/app/services/auth/auth.service.ts

151 lines
4.8 KiB
TypeScript
Raw Normal View History

2018-11-27 15:13:56 +01:00
import { HttpClient, HttpHeaders } from '@angular/common/http';
2017-12-14 11:41:26 +01:00
import { Injectable } from '@angular/core';
import { MatSnackBar } from '@angular/material';
import { Router } from '@angular/router';
2018-11-27 15:13:56 +01:00
import { TranslateService } from '@ngx-translate/core';
2018-11-27 18:33:17 +01:00
import { takeUntil } from 'rxjs/operators';
2018-11-27 15:13:56 +01:00
import { Observable } from 'rxjs/Rx';
import { environment } from '../../../environments/environment';
2018-11-27 18:33:17 +01:00
import { BaseService } from '../../core/common/base/base.service';
2018-11-27 15:13:56 +01:00
import { Credential } from '../../models/login/Credential';
2017-12-14 11:41:26 +01:00
import { LoginInfo } from '../../models/login/LoginInfo';
2018-11-27 15:13:56 +01:00
import { Principal } from '../../models/login/Principal';
2017-12-14 11:41:26 +01:00
import { SnackBarNotificationComponent } from '../../shared/components/notificaiton/snack-bar-notification.component';
2018-11-27 15:13:56 +01:00
import { JsonSerializer } from '../../utilities/JsonSerializer';
2017-12-14 11:41:26 +01:00
@Injectable()
2018-11-27 18:33:17 +01:00
export class AuthService extends BaseService {
2018-10-05 17:00:54 +02:00
private actionUrl: string;
private headers: HttpHeaders;
constructor(
private http: HttpClient,
public snackBar: MatSnackBar,
public language: TranslateService,
public router: Router
) {
2018-11-27 18:33:17 +01:00
super();
2018-11-27 15:13:56 +01:00
this.actionUrl = environment.Server + 'auth/';
2018-10-05 17:00:54 +02:00
this.headers = new HttpHeaders();
this.headers = this.headers.set('Content-Type', 'application/json');
this.headers = this.headers.set('Accept', 'application/json');
}
private clear(): void {
localStorage.removeItem('principal');
}
public current(principal?: Principal): Principal {
if (principal) {
localStorage.setItem('principal', JSON.stringify(principal));
return principal;
}
const principalJson = localStorage.getItem('principal');
if (!principalJson) { return null; }
const principalObj = JSON.parse(principalJson) as Principal;
return principalObj;
}
//public login(credential: Credential): Observable<Principal> {
// const url = this.actionUrl + 'login';
// return this.http.post(url, credential, { headers: this.headers })
// .map((res: Response) => {
// let principal = this.current(new JsonSerializer<Principal>().fromJSONObject(res, Principal));
// //this.loginContextSubject.next(true);
// return principal;
// })
// .catch((error: any) => {
// //this.loginContextSubject.next(false);
// return Observable.throw(error);
// });
//}
public login(loginInfo: LoginInfo): Observable<Principal> {
const url = this.actionUrl + 'externallogin';
return this.http.post(url, loginInfo, { headers: this.headers })
.map((res: any) => {
const principal = this.current(JsonSerializer.fromJSONObject(res.payload, Principal));
//this.loginContextSubject.next(true);
return principal;
})
.catch((error: any) => {
//this.loginContextSubject.next(false);
return Observable.throw(error);
});
}
public nativeLogin(credentials: Credential): Observable<Principal> {
const url = this.actionUrl + 'nativelogin';
return this.http.post(url, credentials, { headers: this.headers })
.map((res: any) => {
const principal = this.current(JsonSerializer.fromJSONObject(res.payload, Principal));
//this.loginContextSubject.next(true);
return principal;
})
.catch((error: any) => {
//this.loginContextSubject.next(false);
return Observable.throw(error);
});
}
public logout(): void {
const url = this.actionUrl + 'logout';
const principal = this.current();
this.clear();
if (!principal) { return; }
let headers = this.headers;
headers = headers.set('AuthToken', principal.token);
2018-11-27 18:33:17 +01:00
this.http.post(url, null, { headers: headers })
.pipe(takeUntil(this._destroyed))
.subscribe(
res => this.onLogOutSuccess(res),
error => this.onLogOutError(error)
);
2018-10-05 17:00:54 +02:00
}
public me(): Observable<Principal> {
const url = this.actionUrl + '/me';
const principal = this.current();
if (!principal) {
this.clear();
return Observable.of<Principal>();
}
let headers = this.headers;
headers = headers.set('AuthToken', principal.token);
return this.http.post(url, null, { headers: headers })
.map((res: any) => {
const princ = this.current(JsonSerializer.fromJSONObject(res.payload, Principal));
return princ;
})
.catch((error: any) => {
//console.warn('could not retrieve me info:\n', error);
2018-10-05 17:00:54 +02:00
this.clear();
const princ = this.current();
this.router.navigate(['/login']);
return Observable.of<Principal>(princ);
});
}
public onLogOutSuccess(logoutMessage: any) {
this.snackBar.openFromComponent(SnackBarNotificationComponent, {
data: { message: 'GENERAL.SNACK-BAR.SUCCESSFUL-LOGOUT', language: this.language },
duration: 3000,
});
this.router.navigate(['/login']);
}
public onLogOutError(errorMessage: string) {
this.snackBar.openFromComponent(SnackBarNotificationComponent, {
data: { message: 'GENERAL.SNACK-BAR.UNSUCCESSFUL-LOGOUT', language: this.language },
duration: 3000,
});
this.router.navigate(['/login']);
}
2017-12-14 11:41:26 +01:00
}