{ "version": 3, "sources": ["src/app/modules/core/authentication/guards/authentication.guard.ts"], "sourcesContent": ["import { Injectable } from '@angular/core';\r\nimport { ActivatedRouteSnapshot, RouterStateSnapshot, Router } from '@angular/router';\r\nimport { Observable } from 'rxjs';\r\nimport { AccountInfoService, AuthDataModel, SessionInfoService } from 'degarmo-lib';\r\n@Injectable({\r\n providedIn: 'root',\r\n})\r\nexport class AuthenticationGuard {\r\n constructor(private router: Router, private sessionInfoService: SessionInfoService, private accountInfoService: AccountInfoService) {}\r\n\r\n canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable | Promise | boolean {\r\n const auth: AuthDataModel = this.sessionInfoService.getAuthenticationInformation();\r\n const account = this.accountInfoService.data.account;\r\n\r\n if (account && Object.keys(account).length === 0) {\r\n this.router.navigate(['/account/login']);\r\n return false;\r\n }\r\n\r\n // check for multi auth\r\n if (account && account.twoFactorAuthentication === true) return false;\r\n\r\n if (auth && auth.isLoggedIn) return true;\r\n else {\r\n this.router.navigate(['/account/login']);\r\n return false;\r\n }\r\n }\r\n}\r\n"], "mappings": ";;;;;;;;;AAOM,IAAO,uBAAP,MAAO,qBAAmB;EAC9B,YAAoB,QAAwB,oBAAgD,oBAAsC;AAA9G,SAAA,SAAA;AAAwB,SAAA,qBAAA;AAAgD,SAAA,qBAAA;EAAyC;EAErI,YAAY,MAA8B,OAA0B;AAClE,UAAM,OAAsB,KAAK,mBAAmB,6BAA4B;AAChF,UAAM,UAAU,KAAK,mBAAmB,KAAK;AAE7C,QAAI,WAAW,OAAO,KAAK,OAAO,EAAE,WAAW,GAAG;AAChD,WAAK,OAAO,SAAS,CAAC,gBAAgB,CAAC;AACvC,aAAO;IACT;AAGA,QAAI,WAAW,QAAQ,4BAA4B;AAAM,aAAO;AAEhE,QAAI,QAAQ,KAAK;AAAY,aAAO;SAC/B;AACH,WAAK,OAAO,SAAS,CAAC,gBAAgB,CAAC;AACvC,aAAO;IACT;EACF;;;mCApBW,sBAAmB,mBAAA,MAAA,GAAA,mBAAA,kBAAA,GAAA,mBAAA,kBAAA,CAAA;AAAA;wFAAnB,sBAAmB,SAAnB,qBAAmB,WAAA,YAFlB,OAAM,CAAA;AAEd,IAAO,sBAAP;", "names": [] }