mirror of https://github.com/Squidex/squidex.git
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.
37 lines
987 B
37 lines
987 B
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { Injectable } from '@angular/core';
|
|
import { ActivatedRouteSnapshot, CanActivate, Router } from '@angular/router';
|
|
import { Observable } from 'rxjs';
|
|
import { map, tap } from 'rxjs/operators';
|
|
|
|
import { AppsState } from './../state/apps.state';
|
|
|
|
@Injectable()
|
|
export class AppMustExistGuard implements CanActivate {
|
|
constructor(
|
|
private readonly appsState: AppsState,
|
|
private readonly router: Router
|
|
) {
|
|
}
|
|
|
|
public canActivate(route: ActivatedRouteSnapshot): Observable<boolean> {
|
|
const appName = route.params['appName'];
|
|
|
|
const result =
|
|
this.appsState.select(appName).pipe(
|
|
tap(app => {
|
|
if (!app) {
|
|
this.router.navigate(['/404']);
|
|
}
|
|
}),
|
|
map(app => !!app));
|
|
|
|
return result;
|
|
}
|
|
}
|