10

I have a global HttpInterceptor with a catch block which handles an HttpErrorResponse. But my requirement is that when a service makes the http call and also has an error handler i want the error handler on the service to go off first. If there is no error handler on this service then i want the global HttpInterceptor error handler to handle it.

Example code:

Http Interceptor:

@Injectable()
export class ErrorHttpInterceptor implements HttpInterceptor {

constructor(private notificationService: NotificationService) {}

intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
return next.handle(req)
  .catch(
    error => {
      if (error instanceof HttpErrorResponse) {
        this.notificationService.error('Error', 'Error in handling Http request');
      }

      return Observable.empty<HttpEvent<any>>();
    }
  );
 }
}

And the service call:

updateUser(id, data) {
  return this.http
    .patch(`${API.userUrl}/${id}`,  {data: data})
    .subscribe(
      () => console.log('success'),
      (err) => this.notificationService.error('custom code to handle this')
     );
}

In this case the ErrorHttpInterceptor gives the notification and then the userService error handling also gives the error notification.

But In my usecase i want the ErrorHttpIntercetor to handle the error only if the underlying subscriptions didnt handle the error. Is there a way to do this?

Nani
  • 501
  • 1
  • 5
  • 6

2 Answers2

3

One way to solve is to pass httpHeaders with request:

 request() {  
    const url = 'GoalTree/GetById/'; 
    let headers = new HttpHeaders();
    headers = headers.append('handleError', 'onService');
    this.http.get(url, {headers: headers})
      .pipe(
      map((data: any) => {
        this.showError = false; 
      }),
      catchError(this.handleError)
      )
      .subscribe(data => {
        console.log('data', data);
      })
  }

Interceptor.ts:

intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {

    this.spinnerService.show();

    return next.handle(req).do(
      (event: HttpEvent<any>) => {
        if (event instanceof HttpResponse) {
          this.spinnerService.hide();
        }
      },
      (err: any) => {
        if (req.headers.get('handleError') === 'onService') {
          console.log('Interceptor does nothing...');
        } else {
          console.log('onInterceptor handle ', err);
        }

      }
    );
  }

and check request headers ininterceptor's error callback. But in this solution anywhere Interceptors handles request before the any service calls.

StackBlitz Example

Yerkon
  • 3,580
  • 1
  • 13
  • 26
  • Thanks, that is a smart way to do it. But that involves refactor a ton of code to check places where we handle the error on the service layer and append the header to the calls. – Nani Apr 10 '18 at 15:33
  • @Nani, it can be little simplified. Checking the presense of header(no need check header value), like: `if(req.headers.has('inService')) {}` – Yerkon Apr 10 '18 at 15:38
  • Woo, Thanks @Yerkon – Kamlesh Aug 09 '18 at 10:06
0

This is the best solution I have come up with so far.

In your interceptor, create a new subscription property on the error object, then rethrow your error:

return next.handle(authReq).pipe(
    catchError((err: any, caught: Observable<HttpEvent<any>>) => {
        err.defaultHandler = timer(0).subscribe(() => {
            this.notify.error('Server Error', 'Server Error Message');
        });
        return throwError(err);
    })
);

Where you want to actually handle the error, unsubscribe from the timer subscription created above:

this.authService.login(authRequest).subscribe((x) => {
  this.navigateDefaultRoute();
}, (err) => {
  // Prevent default error from being handled
  err.defaultHandler.unsubscribe();

  this.notify.error('Invalid Credentials', 'Email and password did not match');
});
Chris Fremgen
  • 2,668
  • 20
  • 22