datasurvey/src/main/webapp/app/core/interceptor/auth.interceptor.ts

34 lines
1.2 KiB
TypeScript

import { Injectable } from '@angular/core';
import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
import { LocalStorageService, SessionStorageService } from 'ngx-webstorage';
import { ApplicationConfigService } from '../config/application-config.service';
@Injectable()
export class AuthInterceptor implements HttpInterceptor {
constructor(
private localStorageService: LocalStorageService,
private sessionStorageService: SessionStorageService,
private applicationConfigService: ApplicationConfigService
) {}
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
const serverApiUrl = this.applicationConfigService.getEndpointFor('');
if (!request.url || (request.url.startsWith('http') && !(serverApiUrl && request.url.startsWith(serverApiUrl)))) {
return next.handle(request);
}
const token: string | null =
this.localStorageService.retrieve('authenticationToken') ?? this.sessionStorageService.retrieve('authenticationToken');
if (token) {
request = request.clone({
setHeaders: {
Authorization: `Bearer ${token}`,
},
});
}
return next.handle(request);
}
}