Auth Guard initial implementation

Commented out until routing is simplified
This commit is contained in:
piratefinn 2017-06-08 14:28:54 +01:00
parent 1bd586b3ae
commit c7810de2b6
5 changed files with 30 additions and 11 deletions

View file

@ -0,0 +1,21 @@
import { Injectable } from '@angular/core';
import { Router, CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
@Injectable()
export class AuthGuard implements CanActivate {
constructor(private router: Router) { }
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {
if (localStorage.getItem('sessionKey')) {
console.log('session key found')
// logged in so return true
return true;
}
// not logged in so redirect to login page with the return url
console.log('no session key found')
this.router.navigate(['/login'], { queryParams: { returnUrl: state.url }});
return false;
}
}

1
src/app/_guards/index.ts Normal file
View file

@ -0,0 +1 @@
export * from './auth.guard';