mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { ActivatedRouteSnapshot, CanActivateChild, Router, RouterStateSnapshot } from '@angular/router';
|
|
|
|
import { Observable } from 'rxjs';
|
|
import { map, tap } from 'rxjs/operators';
|
|
|
|
import { RootDataService } from '../data/root-data.service';
|
|
import { RemoteData } from '../data/remote-data';
|
|
import { getPageInternalServerErrorRoute } from '../../app-routing-paths';
|
|
import { getFirstCompletedRemoteData } from '../shared/operators';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
/**
|
|
* A guard that checks if root api endpoint is reachable.
|
|
* If not redirect to 500 error page
|
|
*/
|
|
export class ServerCheckGuard implements CanActivateChild {
|
|
constructor(private router: Router, private rootDataService: RootDataService) {
|
|
}
|
|
|
|
/**
|
|
* True when root api endpoint is reachable.
|
|
*/
|
|
canActivateChild(
|
|
route: ActivatedRouteSnapshot,
|
|
state: RouterStateSnapshot): Observable<boolean> {
|
|
|
|
return this.rootDataService.findRoot(false).pipe(
|
|
getFirstCompletedRemoteData(),
|
|
map((res: RemoteData<any>) => res.hasSucceeded),
|
|
tap((hasSucceeded: boolean) => {
|
|
if (!hasSucceeded) {
|
|
this.rootDataService.invalidateRootCache();
|
|
this.router.navigateByUrl(getPageInternalServerErrorRoute());
|
|
}
|
|
}),
|
|
);
|
|
|
|
}
|
|
}
|