Remove logs from reload. Add url variable in order to handle error from guards with the connect path.
This commit is contained in:
parent
e3d26f138d
commit
715069eabc
|
@ -3,15 +3,25 @@ import {HttpEvent, HttpHandler, HttpInterceptor, HttpRequest} from "@angular/com
|
|||
import {Observable, throwError, TimeoutError} from "rxjs";
|
||||
import {catchError} from "rxjs/operators";
|
||||
import {Session} from "./login/utils/helper.class";
|
||||
import {Router} from "@angular/router";
|
||||
import {GuardsCheckEnd, GuardsCheckStart, Router} from "@angular/router";
|
||||
import {LoginErrorCodes} from "./login/utils/guardHelper.class";
|
||||
import {properties} from "../../environments/environment";
|
||||
import * as url from "url";
|
||||
|
||||
@Injectable()
|
||||
export class ErrorInterceptorService implements HttpInterceptor {
|
||||
|
||||
private static UNAUTHORIZED_WHITELIST = [properties.userInfoUrl, properties.orcidAPIURL, properties.registryUrl? (properties.registryUrl + 'verification/'):null, properties.eoscDataTransferAPI].filter(value => !!value);
|
||||
private url: string = null;
|
||||
|
||||
constructor(private router: Router) {
|
||||
this.router.events.forEach(event => {
|
||||
if(event instanceof GuardsCheckStart) {
|
||||
this.url = event.url;
|
||||
} else if(event instanceof GuardsCheckEnd) {
|
||||
this.url = null;
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
|
||||
|
@ -42,7 +52,7 @@ export class ErrorInterceptorService implements HttpInterceptor {
|
|||
this.router.navigate(['/user-info'], {
|
||||
queryParams: {
|
||||
'errorCode': LoginErrorCodes.NOT_LOGIN,
|
||||
'redirectUrl': this.router.url
|
||||
'redirectUrl': this.url?this.url:this.router.url
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -51,7 +61,7 @@ export class ErrorInterceptorService implements HttpInterceptor {
|
|||
this.router.navigate(['/user-info'], {
|
||||
queryParams: {
|
||||
'errorCode': LoginErrorCodes.NOT_AUTHORIZED,
|
||||
'redirectUrl': this.router.url
|
||||
'redirectUrl': this.url?this.url:this.router.url
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -16,7 +16,6 @@ export class ReloadComponent {
|
|||
|
||||
public ngOnInit() {
|
||||
let URL = Session.getReloadUrl();
|
||||
console.log(URL);
|
||||
if (URL && URL["path"] && URL["path"] != "") {
|
||||
let url: string = URL["path"];
|
||||
let host = URL["host"];
|
||||
|
@ -24,7 +23,6 @@ export class ReloadComponent {
|
|||
if (host == (location.protocol + "//" + location.host)) {
|
||||
let baseUrl = (document && document.getElementsByTagName('base')) ? document.getElementsByTagName('base')[0].href.split(document.location.host)[1] : "/";
|
||||
url = (baseUrl.length > 1 && url.indexOf(baseUrl) != -1) ? ("/" + url.split(baseUrl)[1]) : url;
|
||||
console.log(url);
|
||||
if (paramsObject) {
|
||||
Session.setReloadUrl("", "", "", "");
|
||||
if(URL['fragment'] && URL['fragment'] !== '') {
|
||||
|
|
Loading…
Reference in New Issue