mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
43 lines
1.7 KiB
TypeScript
43 lines
1.7 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot } from '@angular/router';
|
|
|
|
import { hasNoValue, hasValue } from '../../shared/empty.util';
|
|
import { CommunityDataService } from '../../core/data/community-data.service';
|
|
import { RemoteData } from '../../core/data/remote-data';
|
|
import { Community } from '../../core/shared/community.model';
|
|
import { map, tap, find } from 'rxjs/operators';
|
|
import { Observable, of as observableOf } from 'rxjs';
|
|
|
|
/**
|
|
* Prevent creation of a collection without a parent community provided
|
|
* @class CreateCollectionPageGuard
|
|
*/
|
|
@Injectable()
|
|
export class CreateCollectionPageGuard implements CanActivate {
|
|
public constructor(private router: Router, private communityService: CommunityDataService) {
|
|
}
|
|
|
|
/**
|
|
* True when either a parent ID query parameter has been provided and the parent ID resolves to a valid parent community
|
|
* Reroutes to a 404 page when the page cannot be activated
|
|
* @method canActivate
|
|
*/
|
|
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> {
|
|
const parentID = route.queryParams.parent;
|
|
if (hasNoValue(parentID)) {
|
|
this.router.navigate(['/404']);
|
|
return observableOf(false);
|
|
}
|
|
return this.communityService.findById(parentID)
|
|
.pipe(
|
|
find((communityRD: RemoteData<Community>) => hasValue(communityRD.payload) || hasValue(communityRD.error)),
|
|
map((communityRD: RemoteData<Community>) => hasValue(communityRD) && communityRD.hasSucceeded && hasValue(communityRD.payload)),
|
|
tap((isValid: boolean) => {
|
|
if (!isValid) {
|
|
this.router.navigate(['/404']);
|
|
}
|
|
})
|
|
);
|
|
}
|
|
}
|