{ "version": 3, "sources": ["libs/mediio-plattform/auth/core/common/data-access/src/lib/services/auth.service.ts"], "sourcesContent": ["import { HttpClient } from '@angular/common/http';\r\nimport { Injectable } from '@angular/core';\r\nimport { OAuthService } from 'angular-oauth2-oidc';\r\nimport { Observable } from 'rxjs';\r\n\r\nimport { AuthConfig, ChangePassword } from '@mp/auth/common/domain';\r\n\r\n@Injectable({ providedIn: 'root' })\r\nexport class AuthService {\r\n private readonly _apiBasePath: string = 'api/auth';\r\n\r\n constructor(\r\n private readonly oauthService: OAuthService,\r\n private readonly http: HttpClient,\r\n ) {}\r\n\r\n /**\r\n * Configures the login and executes it.\r\n * @param authConfig OAuth configuration.\r\n * @param state A state object that is preserved during the login process.\r\n */\r\n async setupAuthAndLogin(authConfig: AuthConfig, state: TState): Promise {\r\n this.setupAuth(authConfig);\r\n\r\n return await this.executeCodeFlowWithState(state);\r\n }\r\n\r\n getAccessToken(): string | null {\r\n if (this.oauthService.hasValidAccessToken()) {\r\n return this.oauthService.getAccessToken();\r\n }\r\n return null;\r\n }\r\n\r\n logout(noRedirectToLogoutUrl = false): void {\r\n this.oauthService.logOut(noRedirectToLogoutUrl);\r\n }\r\n\r\n changePassword(dto: ChangePassword): Observable {\r\n return this.http.post(`${this._apiBasePath}/changepassword`, dto);\r\n }\r\n\r\n private setupAuth(authConfig: AuthConfig): void {\r\n this.oauthService.configure(authConfig);\r\n this.oauthService.setupAutomaticSilentRefresh();\r\n }\r\n\r\n private async executeCodeFlowWithState(state: TState): Promise {\r\n await this.oauthService.loadDiscoveryDocument();\r\n await this.oauthService.tryLoginCodeFlow();\r\n\r\n // Wrap this, because the if branch should not fulfill. It redirects to the login page.\r\n return new Promise((resolve) => {\r\n if (!this.oauthService.hasValidAccessToken()) {\r\n // Note: This will actually **exit** the app if no token is present\r\n this.oauthService.initCodeFlow(state === undefined ? undefined : JSON.stringify(state));\r\n return;\r\n }\r\n\r\n resolve(this.oauthService.state ? (JSON.parse(decodeURIComponent(this.oauthService.state)) as TState) : state);\r\n });\r\n }\r\n}\r\n"], "mappings": "yKAQA,IAAaA,GAAW,IAAA,CAAlB,MAAOA,CAAW,CAGtBC,YACmBC,EACAC,EAAgB,CADhB,KAAAD,aAAAA,EACA,KAAAC,KAAAA,EAJF,KAAAC,aAAuB,UAKrC,CAOGC,kBAA0BC,EAAwBC,EAAa,QAAAC,EAAA,sBACnE,YAAKC,UAAUH,CAAU,EAElB,MAAM,KAAKI,yBAAyBH,CAAK,CAClD,GAEAI,gBAAc,CACZ,OAAI,KAAKT,aAAaU,oBAAmB,EAChC,KAAKV,aAAaS,eAAc,EAElC,IACT,CAEAE,OAAOC,EAAwB,GAAK,CAClC,KAAKZ,aAAaa,OAAOD,CAAqB,CAChD,CAEAE,eAAeC,EAAmB,CAChC,OAAO,KAAKd,KAAKe,KAAW,GAAG,KAAKd,YAAY,kBAAmBa,CAAG,CACxE,CAEQR,UAAUH,EAAsB,CACtC,KAAKJ,aAAaiB,UAAUb,CAAU,EACtC,KAAKJ,aAAakB,4BAA2B,CAC/C,CAEcV,yBAAiCH,EAAa,QAAAC,EAAA,sBAC1D,aAAM,KAAKN,aAAamB,sBAAqB,EAC7C,MAAM,KAAKnB,aAAaoB,iBAAgB,EAGjC,IAAIC,QAASC,GAAW,CAC7B,GAAI,CAAC,KAAKtB,aAAaU,oBAAmB,EAAI,CAE5C,KAAKV,aAAauB,aAAalB,IAAUmB,OAAYA,OAAYC,KAAKC,UAAUrB,CAAK,CAAC,EACtF,MACF,CAEAiB,EAAQ,KAAKtB,aAAaK,MAASoB,KAAKE,MAAMC,mBAAmB,KAAK5B,aAAaK,KAAK,CAAC,EAAeA,CAAK,CAC/G,CAAC,CACH,mDArDWP,GAAW+B,EAAAC,CAAA,EAAAD,EAAAE,CAAA,CAAA,CAAA,CAAA,iCAAXjC,EAAWkC,QAAXlC,EAAWmC,UAAAC,WADE,MAAM,CAAA,CAAA,SACnBpC,CAAW,GAAA", "names": ["AuthService", "constructor", "oauthService", "http", "_apiBasePath", "setupAuthAndLogin", "authConfig", "state", "__async", "setupAuth", "executeCodeFlowWithState", "getAccessToken", "hasValidAccessToken", "logout", "noRedirectToLogoutUrl", "logOut", "changePassword", "dto", "post", "configure", "setupAutomaticSilentRefresh", "loadDiscoveryDocument", "tryLoginCodeFlow", "Promise", "resolve", "initCodeFlow", "undefined", "JSON", "stringify", "parse", "decodeURIComponent", "\u0275\u0275inject", "OAuthService", "HttpClient", "factory", "\u0275fac", "providedIn"] }