File

src/app/providers/guards/sso.guard.ts

Index

Methods

Constructor

constructor(router: Router, authService: AuthService, helper: JwtHelperService, sessionStore: SessionStore, storage: StorageService, loader: LoaderStore)
Parameters :
Name Type Optional
router Router No
authService AuthService No
helper JwtHelperService No
sessionStore SessionStore No
storage StorageService No
loader LoaderStore No

Methods

canActivate
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot)
Parameters :
Name Type Optional
route ActivatedRouteSnapshot No
state RouterStateSnapshot No
Returns : any
Private goToStart
goToStart()
Returns : boolean
Private isValid
isValid(token: string)
Parameters :
Name Type Optional
token string No
Returns : boolean
import { LoaderStore } from './../../components/loader/loader.store';
import { AuthService } from '../services/auth.service';
import { Injectable } from '@angular/core';
import {
  ActivatedRouteSnapshot,
  CanActivate,
  RouterStateSnapshot,
  Router,
} from '@angular/router';
import { JwtHelperService } from '@auth0/angular-jwt';
import { StorageService } from '../services';
import { SessionStore } from '../stores';
import { JWT_KEY } from '../../app.constants';
import { IJwt } from '../../models/i-jwt.model';
import { map, first } from 'rxjs/operators';

interface IHaveToken {
  token: string;
}

@Injectable()
export class SsoGuard implements CanActivate {
  constructor(
    private router: Router,
    private authService: AuthService,
    private helper: JwtHelperService,
    private sessionStore: SessionStore,
    private storage: StorageService,
    private loader: LoaderStore
  ) {}

  canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {
    this.loader.show();
    console.log('sso guard activated');
    const params = route.queryParams as IHaveToken;
    if (this.isValid(params.token)) {
      this.storage.set(JWT_KEY, params.token);
      const jwt = this.helper.decodeToken(params.token) as IJwt;
      this.sessionStore.createSession(jwt);
      return this.sessionStore.session$.pipe(
        first((session) => !!session && !!session.accounts),
        map((session) => {
          return this.goToStart();
        })
      );
    }
    if (this.authService.authenticated) {
      return this.goToStart();
    }
    return true; // show sso failed message
  }

  private goToStart(): boolean {
    this.router.navigate(['/']);
    return false;
  }

  private isValid(token: string): boolean {
    return (
      token !== null &&
      token !== undefined &&
      token.length > 0 &&
      !this.helper.isTokenExpired(token)
    );
  }
}

results matching ""

    No results matching ""