{ "version": 3, "sources": ["src/app/services/authguard/auth.service.ts"], "sourcesContent": ["import { HttpClient } from '@angular/common/http';\r\nimport { Inject, Injectable } from '@angular/core';\r\nimport {\r\n MSAL_GUARD_CONFIG,\r\n MsalGuardConfiguration,\r\n MsalService,\r\n} from '@azure/msal-angular';\r\nimport {\r\n AuthenticationResult,\r\n InteractionType,\r\n PopupRequest,\r\n RedirectRequest,\r\n} from '@azure/msal-browser';\r\nimport { ProfileService } from '../profile.service';\r\nimport { AppConstants } from '../../appconstants';\r\nimport { BehaviorSubject, Observable } from 'rxjs';\r\nimport { SignUpRoles } from '@portal/configs';\r\nimport { Router } from '@angular/router';\r\nimport { environment } from '../../../environments/environment';\r\nimport { AppMonitorService } from '../app-monitor.service';\r\n\r\n@Injectable({\r\n providedIn: 'root',\r\n})\r\nexport class AuthService {\r\n loggedIn = new BehaviorSubject(false);\r\n currentUserStatus = this.loggedIn.asObservable();\r\n\r\n apiUrl = environment.apiUrl;\r\n constructor(\r\n @Inject(MSAL_GUARD_CONFIG) private msalGuardConfig: MsalGuardConfiguration,\r\n private _msalService: MsalService,\r\n private _httpClient: HttpClient,\r\n private _profileService: ProfileService,\r\n private _router: Router,\r\n private _appMonitorService: AppMonitorService\r\n ) {}\r\n\r\n // isAuthenticated(): boolean {\r\n // // Replace with your actual authentication logic\r\n // return !!localStorage.getItem('Access-Token-Azure-B2C');\r\n // }\r\n\r\n /**Initiates the login process for the application.\r\n * @param userFlowRequest - Optional parameter to specify custom user flow request.\r\n * If not provided, the default configuration from MSAL_GUARD_CONFIG will be used.\r\n * @remarks\r\n * This function handles both popup and redirect interactions based on the interactionType\r\n * specified in MSAL_GUARD_CONFIG.It merges the provided userFlowRequest with the//+\r\n * default configuration if available.\r\n * @returns {void}\r\n **/\r\n login(userFlowRequest?: RedirectRequest | PopupRequest): void {\r\n if (this.msalGuardConfig.interactionType === InteractionType.Popup) {\r\n if (this.msalGuardConfig.authRequest) {\r\n this._msalService\r\n .loginPopup({\r\n ...this.msalGuardConfig.authRequest,\r\n ...userFlowRequest,\r\n } as PopupRequest)\r\n .subscribe((response: AuthenticationResult) => {\r\n this._msalService.instance.setActiveAccount(response.account);\r\n });\r\n } else {\r\n this._msalService\r\n .loginPopup(userFlowRequest)\r\n .subscribe((response: AuthenticationResult) => {\r\n this._msalService.instance.setActiveAccount(response.account);\r\n });\r\n }\r\n } else {\r\n if (this.msalGuardConfig.authRequest) {\r\n this._msalService.loginRedirect({\r\n ...this.msalGuardConfig.authRequest,\r\n ...userFlowRequest,\r\n } as RedirectRequest);\r\n } else {\r\n this._msalService.loginRedirect(userFlowRequest);\r\n }\r\n }\r\n }\r\n\r\n isLoggedIn(): boolean {\r\n return this.loggedIn.getValue();\r\n }\r\n\r\n checkUserStatus(username: string): Observable {\r\n return this._httpClient.get(\r\n `${this.apiUrl}/api/users/status/${username}`\r\n );\r\n }\r\n\r\n getUerProfile(): Observable {\r\n return this._httpClient.get(\r\n `${this.apiUrl}/user/profile/email`\r\n );\r\n }\r\n\r\n getMe(): Observable {\r\n return this._httpClient.get(`${this.apiUrl}/user/me`);\r\n }\r\n\r\n logout(): void {\r\n this._appMonitorService.clearUserContext();\r\n localStorage.removeItem('Access-Token-Azure-B2C');\r\n localStorage.removeItem(AppConstants.USER);\r\n localStorage.setItem(AppConstants.LOGINSTATUS, AppConstants.FALSE);\r\n this.loggedIn.next(false);\r\n this._msalService.logout();\r\n }\r\n\r\n public get isAuthenticated(): boolean {\r\n const activeAccount = this._msalService.instance.getActiveAccount();\r\n return activeAccount !== null;\r\n }\r\n}\r\n"], "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;AAwBM,IAAO,eAAP,MAAO,aAAW;EAKtB,YACqC,iBAC3B,cACA,aACA,iBACA,SACA,oBAAqC;AALV,SAAA,kBAAA;AAC3B,SAAA,eAAA;AACA,SAAA,cAAA;AACA,SAAA,kBAAA;AACA,SAAA,UAAA;AACA,SAAA,qBAAA;AAVV,SAAA,WAAW,IAAI,gBAAyB,KAAK;AAC7C,SAAA,oBAAoB,KAAK,SAAS,aAAY;AAE9C,SAAA,SAAS,YAAY;EAQlB;;;;;;;;;;;;;;EAgBH,MAAM,iBAAgD;AACpD,QAAI,KAAK,gBAAgB,oBAAoB,gBAAgB,OAAO;AAClE,UAAI,KAAK,gBAAgB,aAAa;AACpC,aAAK,aACF,WAAW,kCACP,KAAK,gBAAgB,cACrB,gBACY,EAChB,UAAU,CAAC,aAAkC;AAC5C,eAAK,aAAa,SAAS,iBAAiB,SAAS,OAAO;QAC9D,CAAC;MACL,OAAO;AACL,aAAK,aACF,WAAW,eAAe,EAC1B,UAAU,CAAC,aAAkC;AAC5C,eAAK,aAAa,SAAS,iBAAiB,SAAS,OAAO;QAC9D,CAAC;MACL;IACF,OAAO;AACL,UAAI,KAAK,gBAAgB,aAAa;AACpC,aAAK,aAAa,cAAc,kCAC3B,KAAK,gBAAgB,cACrB,gBACe;MACtB,OAAO;AACL,aAAK,aAAa,cAAc,eAAe;MACjD;IACF;EACF;EAEA,aAAU;AACR,WAAO,KAAK,SAAS,SAAQ;EAC/B;EAEA,gBAAgB,UAAgB;AAC9B,WAAO,KAAK,YAAY,IACtB,GAAG,KAAK,MAAM,qBAAqB,QAAQ,EAAE;EAEjD;EAEA,gBAAa;AACX,WAAO,KAAK,YAAY,IACtB,GAAG,KAAK,MAAM,qBAAqB;EAEvC;EAEA,QAAK;AACH,WAAO,KAAK,YAAY,IAAY,GAAG,KAAK,MAAM,UAAU;EAC9D;EAEA,SAAM;AACJ,SAAK,mBAAmB,iBAAgB;AACxC,iBAAa,WAAW,wBAAwB;AAChD,iBAAa,WAAW,aAAa,IAAI;AACzC,iBAAa,QAAQ,aAAa,aAAa,aAAa,KAAK;AACjE,SAAK,SAAS,KAAK,KAAK;AACxB,SAAK,aAAa,OAAM;EAC1B;EAEA,IAAW,kBAAe;AACxB,UAAM,gBAAgB,KAAK,aAAa,SAAS,iBAAgB;AACjE,WAAO,kBAAkB;EAC3B;;;mBA1FW,cAAW,mBAMZ,iBAAiB,GAAA,mBAAA,WAAA,GAAA,mBAAA,UAAA,GAAA,mBAAA,cAAA,GAAA,mBAAA,MAAA,GAAA,mBAAA,iBAAA,CAAA;AAAA;gFANhB,cAAW,SAAX,aAAW,WAAA,YAFV,OAAM,CAAA;AAEd,IAAO,cAAP;", "names": [] }