You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
704 B
25 lines
704 B
import { Injectable } from '@angular/core';
|
|
import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from "@angular/common/http";
|
|
import { Observable } from 'rxjs';
|
|
|
|
@Injectable()
|
|
export class AuthInterceptor implements HttpInterceptor {
|
|
|
|
intercept(req: HttpRequest<any>,
|
|
next: HttpHandler): Observable<HttpEvent<any>> {
|
|
|
|
const idToken = localStorage.getItem("id_token");
|
|
|
|
if (idToken) {
|
|
const cloned = req.clone({
|
|
headers: req.headers.set("Authorization",
|
|
"Bearer " + idToken)
|
|
});
|
|
|
|
return next.handle(cloned);
|
|
}
|
|
else {
|
|
return next.handle(req);
|
|
}
|
|
}
|
|
}
|