ekangularbase
Version:
Authentication service for usermanagement(oidc client)
22 lines (16 loc) • 679 B
text/typescript
import { Injectable } from '@angular/core';
import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
import { AuthService } from './auth.service'
import { Observable } from "rxjs/Observable";
()
export class AuthGuardService implements CanActivate {
constructor(private authService: AuthService) { }
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean | Observable<boolean> | Promise<boolean> {
if(this.authService.isLoggedIn()) {
// alert("isLoggedIn!");
return true;
}
this.authService.startAuthentication();
return false;
}
}