mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-03 15:11:37 +00:00
90 lines
2.6 KiB
TypeScript
90 lines
2.6 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { ActivatedRouteSnapshot, CanActivate, CanActivateChild, CanLoad, Route, Router, RouterStateSnapshot, UrlSegment, UrlTree } from '@angular/router';
|
|
import { Observable, of, switchMap } from 'rxjs';
|
|
import { AuthService } from 'app/core/auth/auth.service';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class NoAuthGuard implements CanActivate, CanActivateChild, CanLoad
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor(
|
|
private _authService: AuthService,
|
|
private _router: Router
|
|
)
|
|
{
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------------------------
|
|
// @ Public methods
|
|
// -----------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Can activate
|
|
*
|
|
* @param route
|
|
* @param state
|
|
*/
|
|
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean
|
|
{
|
|
return this._check();
|
|
}
|
|
|
|
/**
|
|
* Can activate child
|
|
*
|
|
* @param childRoute
|
|
* @param state
|
|
*/
|
|
canActivateChild(childRoute: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree
|
|
{
|
|
return this._check();
|
|
}
|
|
|
|
/**
|
|
* Can load
|
|
*
|
|
* @param route
|
|
* @param segments
|
|
*/
|
|
canLoad(route: Route, segments: UrlSegment[]): Observable<boolean> | Promise<boolean> | boolean
|
|
{
|
|
return this._check();
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------------------------
|
|
// @ Private methods
|
|
// -----------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Check the authenticated status
|
|
*
|
|
* @private
|
|
*/
|
|
private _check(): Observable<boolean>
|
|
{
|
|
// Check the authentication status
|
|
return this._authService.check()
|
|
.pipe(
|
|
switchMap((authenticated) => {
|
|
|
|
// If the user is authenticated...
|
|
if ( authenticated )
|
|
{
|
|
// Redirect to the root
|
|
this._router.navigate(['']);
|
|
|
|
// Prevent the access
|
|
return of(false);
|
|
}
|
|
|
|
// Allow the access
|
|
return of(true);
|
|
})
|
|
);
|
|
}
|
|
}
|