{"version":3,"sources":["libs/shared/src/lib/auth/reset.component.ts","node_modules/@angular/material/fesm2022/snack-bar.mjs","libs/shared/src/lib/auth/auth.token.ts","node_modules/@angular/material/fesm2022/progress-spinner.mjs","libs/shared/src/lib/auth/logout.component.ts","libs/shared/src/lib/auth/auth.guard.ts","node_modules/@angular/core/fesm2022/rxjs-interop.mjs","libs/shared/src/lib/auth/auth-state.enum.ts","libs/shared/src/lib/auth/auth.config.ts","node_modules/angular-oauth2-oidc/fesm2022/angular-oauth2-oidc.mjs","libs/shared/src/lib/env/env.service.ts","libs/shared/src/lib/logger/logger.service.ts","libs/shared/src/lib/auth/o-auth-wrapper/o-auth-wrapper.service.ts","libs/shared/src/lib/auth/o-auth-event/o-auth-event.service.ts","libs/shared/src/lib/auth/auth.service.ts","libs/shared/src/lib/auth/status-redirect.token.ts","libs/shared/src/lib/auth/auth.interceptor.ts","libs/shared/src/lib/auth/callback.component.ts","libs/shared/src/lib/storage/abstract-storage.ts","libs/shared/src/lib/storage/application-storage.service.ts","libs/shared/src/lib/app.service.ts","libs/shared/src/lib/auth/info.component.ts","libs/shared/src/lib/auth/info.component.html","node_modules/date-fns/constants.js","node_modules/date-fns/constructFrom.js","node_modules/date-fns/toDate.js","node_modules/date-fns/isDate.js","node_modules/date-fns/endOfDay.js","node_modules/date-fns/isAfter.js","libs/shared/src/lib/form/validators.ts","libs/shared/src/lib/auth/login.component.ts","libs/shared/src/lib/auth/login.component.html","libs/shared/src/lib/auth/auth.module.ts","libs/shared/src/lib/connectivity/connectivity.service.ts","apps/flex/src/app/views/user/profile/employee.service.ts","apps/flex/src/app/shared/policy/policy.service.ts"],"sourcesContent":["import { Component } from '@angular/core';\nimport { resetClient } from '@logic-suite/shared/utils';\n\n@Component({\n selector: 'lib-reset',\n standalone: true,\n template: `\n

Resetting client

\n @if (error == null) {\n

We are resetting your client.

\n

\n This will not destroy any data you have entered into the system, but you will have to log in again.\n

\n } @else {\n

Reset failed:

\n

{{ error }}

\n }\n `,\n styles: [\n `\n :host {\n display: grid;\n position: fixed;\n background: var(--background);\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n margin: 0 !important;\n z-index: 1000;\n place-content: center;\n place-items: center;\n }\n h1 {\n margin-bottom: 1rem;\n }\n h4 {\n margin-bottom: 2rem;\n }\n p {\n text-align: center;\n }\n `,\n ],\n})\nexport class ResetComponent {\n error: string | null = null;\n\n constructor() {\n setTimeout(() => this.reset(), 2000);\n }\n\n async reset() {\n const res = await resetClient();\n this.error = res !== true ? res : null;\n\n // Reload app from root\n if (this.error == null) {\n location.href = '/';\n }\n }\n}\n","import * as i0 from '@angular/core';\nimport { InjectionToken, Directive, inject, Component, ViewEncapsulation, ChangeDetectionStrategy, NgZone, ElementRef, ChangeDetectorRef, ViewChild, Injector, TemplateRef, Injectable, NgModule } from '@angular/core';\nimport { MatButton, MatButtonModule } from '@angular/material/button';\nimport { Subject } from 'rxjs';\nimport { DOCUMENT } from '@angular/common';\nimport { trigger, state, style, transition, animate } from '@angular/animations';\nimport { BasePortalOutlet, CdkPortalOutlet, ComponentPortal, TemplatePortal, PortalModule } from '@angular/cdk/portal';\nimport { _IdGenerator, LiveAnnouncer } from '@angular/cdk/a11y';\nimport { Platform } from '@angular/cdk/platform';\nimport { BreakpointObserver, Breakpoints } from '@angular/cdk/layout';\nimport { Overlay, OverlayConfig, OverlayModule } from '@angular/cdk/overlay';\nimport { takeUntil } from 'rxjs/operators';\nimport { MatCommonModule } from '@angular/material/core';\n\n/** Maximum amount of milliseconds that can be passed into setTimeout. */\nfunction SimpleSnackBar_Conditional_2_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 1)(1, \"button\", 2);\n i0.ɵɵlistener(\"click\", function SimpleSnackBar_Conditional_2_Template_button_click_1_listener() {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.action());\n });\n i0.ɵɵtext(2);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\" \", ctx_r1.data.action, \" \");\n }\n}\nconst _c0 = [\"label\"];\nfunction MatSnackBarContainer_ng_template_4_Template(rf, ctx) {}\nconst MAX_TIMEOUT = /*#__PURE__*/Math.pow(2, 31) - 1;\n/**\n * Reference to a snack bar dispatched from the snack bar service.\n */\nclass MatSnackBarRef {\n _overlayRef;\n /** The instance of the component making up the content of the snack bar. */\n instance;\n /**\n * The instance of the component making up the content of the snack bar.\n * @docs-private\n */\n containerInstance;\n /** Subject for notifying the user that the snack bar has been dismissed. */\n _afterDismissed = /*#__PURE__*/new Subject();\n /** Subject for notifying the user that the snack bar has opened and appeared. */\n _afterOpened = /*#__PURE__*/new Subject();\n /** Subject for notifying the user that the snack bar action was called. */\n _onAction = /*#__PURE__*/new Subject();\n /**\n * Timeout ID for the duration setTimeout call. Used to clear the timeout if the snackbar is\n * dismissed before the duration passes.\n */\n _durationTimeoutId;\n /** Whether the snack bar was dismissed using the action button. */\n _dismissedByAction = false;\n constructor(containerInstance, _overlayRef) {\n this._overlayRef = _overlayRef;\n this.containerInstance = containerInstance;\n containerInstance._onExit.subscribe(() => this._finishDismiss());\n }\n /** Dismisses the snack bar. */\n dismiss() {\n if (!this._afterDismissed.closed) {\n this.containerInstance.exit();\n }\n clearTimeout(this._durationTimeoutId);\n }\n /** Marks the snackbar action clicked. */\n dismissWithAction() {\n if (!this._onAction.closed) {\n this._dismissedByAction = true;\n this._onAction.next();\n this._onAction.complete();\n this.dismiss();\n }\n clearTimeout(this._durationTimeoutId);\n }\n /**\n * Marks the snackbar action clicked.\n * @deprecated Use `dismissWithAction` instead.\n * @breaking-change 8.0.0\n */\n closeWithAction() {\n this.dismissWithAction();\n }\n /** Dismisses the snack bar after some duration */\n _dismissAfter(duration) {\n // Note that we need to cap the duration to the maximum value for setTimeout, because\n // it'll revert to 1 if somebody passes in something greater (e.g. `Infinity`). See #17234.\n this._durationTimeoutId = setTimeout(() => this.dismiss(), Math.min(duration, MAX_TIMEOUT));\n }\n /** Marks the snackbar as opened */\n _open() {\n if (!this._afterOpened.closed) {\n this._afterOpened.next();\n this._afterOpened.complete();\n }\n }\n /** Cleans up the DOM after closing. */\n _finishDismiss() {\n this._overlayRef.dispose();\n if (!this._onAction.closed) {\n this._onAction.complete();\n }\n this._afterDismissed.next({\n dismissedByAction: this._dismissedByAction\n });\n this._afterDismissed.complete();\n this._dismissedByAction = false;\n }\n /** Gets an observable that is notified when the snack bar is finished closing. */\n afterDismissed() {\n return this._afterDismissed;\n }\n /** Gets an observable that is notified when the snack bar has opened and appeared. */\n afterOpened() {\n return this.containerInstance._onEnter;\n }\n /** Gets an observable that is notified when the snack bar action is called. */\n onAction() {\n return this._onAction;\n }\n}\n\n/** Injection token that can be used to access the data that was passed in to a snack bar. */\nconst MAT_SNACK_BAR_DATA = /*#__PURE__*/new InjectionToken('MatSnackBarData');\n/**\n * Configuration used when opening a snack-bar.\n */\nclass MatSnackBarConfig {\n /** The politeness level for the MatAriaLiveAnnouncer announcement. */\n politeness = 'assertive';\n /**\n * Message to be announced by the LiveAnnouncer. When opening a snackbar without a custom\n * component or template, the announcement message will default to the specified message.\n */\n announcementMessage = '';\n /**\n * The view container that serves as the parent for the snackbar for the purposes of dependency\n * injection. Note: this does not affect where the snackbar is inserted in the DOM.\n */\n viewContainerRef;\n /** The length of time in milliseconds to wait before automatically dismissing the snack bar. */\n duration = 0;\n /** Extra CSS classes to be added to the snack bar container. */\n panelClass;\n /** Text layout direction for the snack bar. */\n direction;\n /** Data being injected into the child component. */\n data = null;\n /** The horizontal position to place the snack bar. */\n horizontalPosition = 'center';\n /** The vertical position to place the snack bar. */\n verticalPosition = 'bottom';\n}\n\n/** Directive that should be applied to the text element to be rendered in the snack bar. */\nlet MatSnackBarLabel = /*#__PURE__*/(() => {\n class MatSnackBarLabel {\n static ɵfac = function MatSnackBarLabel_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatSnackBarLabel)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: MatSnackBarLabel,\n selectors: [[\"\", \"matSnackBarLabel\", \"\"]],\n hostAttrs: [1, \"mat-mdc-snack-bar-label\", \"mdc-snackbar__label\"]\n });\n }\n return MatSnackBarLabel;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/** Directive that should be applied to the element containing the snack bar's action buttons. */\nlet MatSnackBarActions = /*#__PURE__*/(() => {\n class MatSnackBarActions {\n static ɵfac = function MatSnackBarActions_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatSnackBarActions)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: MatSnackBarActions,\n selectors: [[\"\", \"matSnackBarActions\", \"\"]],\n hostAttrs: [1, \"mat-mdc-snack-bar-actions\", \"mdc-snackbar__actions\"]\n });\n }\n return MatSnackBarActions;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/** Directive that should be applied to each of the snack bar's action buttons. */\nlet MatSnackBarAction = /*#__PURE__*/(() => {\n class MatSnackBarAction {\n static ɵfac = function MatSnackBarAction_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatSnackBarAction)();\n };\n static ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: MatSnackBarAction,\n selectors: [[\"\", \"matSnackBarAction\", \"\"]],\n hostAttrs: [1, \"mat-mdc-snack-bar-action\", \"mdc-snackbar__action\"]\n });\n }\n return MatSnackBarAction;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet SimpleSnackBar = /*#__PURE__*/(() => {\n class SimpleSnackBar {\n snackBarRef = inject(MatSnackBarRef);\n data = inject(MAT_SNACK_BAR_DATA);\n constructor() {}\n /** Performs the action on the snack bar. */\n action() {\n this.snackBarRef.dismissWithAction();\n }\n /** If the action button should be shown. */\n get hasAction() {\n return !!this.data.action;\n }\n static ɵfac = function SimpleSnackBar_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SimpleSnackBar)();\n };\n static ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: SimpleSnackBar,\n selectors: [[\"simple-snack-bar\"]],\n hostAttrs: [1, \"mat-mdc-simple-snack-bar\"],\n exportAs: [\"matSnackBar\"],\n decls: 3,\n vars: 2,\n consts: [[\"matSnackBarLabel\", \"\"], [\"matSnackBarActions\", \"\"], [\"mat-button\", \"\", \"matSnackBarAction\", \"\", 3, \"click\"]],\n template: function SimpleSnackBar_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0);\n i0.ɵɵtext(1);\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(2, SimpleSnackBar_Conditional_2_Template, 3, 1, \"div\", 1);\n }\n if (rf & 2) {\n i0.ɵɵadvance();\n i0.ɵɵtextInterpolate1(\" \", ctx.data.message, \"\\n\");\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.hasAction ? 2 : -1);\n }\n },\n dependencies: [MatButton, MatSnackBarLabel, MatSnackBarActions, MatSnackBarAction],\n styles: [\".mat-mdc-simple-snack-bar{display:flex}\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n return SimpleSnackBar;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Animations used by the Material snack bar.\n * @docs-private\n */\nconst matSnackBarAnimations = {\n /** Animation that shows and hides a snack bar. */\n snackBarState: /*#__PURE__*/trigger('state', [/*#__PURE__*/state('void, hidden', /*#__PURE__*/style({\n transform: 'scale(0.8)',\n opacity: 0\n })), /*#__PURE__*/state('visible', /*#__PURE__*/style({\n transform: 'scale(1)',\n opacity: 1\n })), /*#__PURE__*/transition('* => visible', /*#__PURE__*/animate('150ms cubic-bezier(0, 0, 0.2, 1)')), /*#__PURE__*/transition('* => void, * => hidden', /*#__PURE__*/animate('75ms cubic-bezier(0.4, 0.0, 1, 1)', /*#__PURE__*/style({\n opacity: 0\n })))])\n};\n\n/**\n * Internal component that wraps user-provided snack bar content.\n * @docs-private\n */\nlet MatSnackBarContainer = /*#__PURE__*/(() => {\n class MatSnackBarContainer extends BasePortalOutlet {\n _ngZone = inject(NgZone);\n _elementRef = inject(ElementRef);\n _changeDetectorRef = inject(ChangeDetectorRef);\n _platform = inject(Platform);\n snackBarConfig = inject(MatSnackBarConfig);\n _document = inject(DOCUMENT);\n _trackedModals = new Set();\n /** The number of milliseconds to wait before announcing the snack bar's content. */\n _announceDelay = 150;\n /** The timeout for announcing the snack bar's content. */\n _announceTimeoutId;\n /** Whether the component has been destroyed. */\n _destroyed = false;\n /** The portal outlet inside of this container into which the snack bar content will be loaded. */\n _portalOutlet;\n /** Subject for notifying that the snack bar has announced to screen readers. */\n _onAnnounce = new Subject();\n /** Subject for notifying that the snack bar has exited from view. */\n _onExit = new Subject();\n /** Subject for notifying that the snack bar has finished entering the view. */\n _onEnter = new Subject();\n /** The state of the snack bar animations. */\n _animationState = 'void';\n /** aria-live value for the live region. */\n _live;\n /**\n * Element that will have the `mdc-snackbar__label` class applied if the attached component\n * or template does not have it. This ensures that the appropriate structure, typography, and\n * color is applied to the attached view.\n */\n _label;\n /**\n * Role of the live region. This is only for Firefox as there is a known issue where Firefox +\n * JAWS does not read out aria-live message.\n */\n _role;\n /** Unique ID of the aria-live element. */\n _liveElementId = inject(_IdGenerator).getId('mat-snack-bar-container-live-');\n constructor() {\n super();\n const config = this.snackBarConfig;\n // Use aria-live rather than a live role like 'alert' or 'status'\n // because NVDA and JAWS have show inconsistent behavior with live roles.\n if (config.politeness === 'assertive' && !config.announcementMessage) {\n this._live = 'assertive';\n } else if (config.politeness === 'off') {\n this._live = 'off';\n } else {\n this._live = 'polite';\n }\n // Only set role for Firefox. Set role based on aria-live because setting role=\"alert\" implies\n // aria-live=\"assertive\" which may cause issues if aria-live is set to \"polite\" above.\n if (this._platform.FIREFOX) {\n if (this._live === 'polite') {\n this._role = 'status';\n }\n if (this._live === 'assertive') {\n this._role = 'alert';\n }\n }\n }\n /** Attach a component portal as content to this snack bar container. */\n attachComponentPortal(portal) {\n this._assertNotAttached();\n const result = this._portalOutlet.attachComponentPortal(portal);\n this._afterPortalAttached();\n return result;\n }\n /** Attach a template portal as content to this snack bar container. */\n attachTemplatePortal(portal) {\n this._assertNotAttached();\n const result = this._portalOutlet.attachTemplatePortal(portal);\n this._afterPortalAttached();\n return result;\n }\n /**\n * Attaches a DOM portal to the snack bar container.\n * @deprecated To be turned into a method.\n * @breaking-change 10.0.0\n */\n attachDomPortal = portal => {\n this._assertNotAttached();\n const result = this._portalOutlet.attachDomPortal(portal);\n this._afterPortalAttached();\n return result;\n };\n /** Handle end of animations, updating the state of the snackbar. */\n onAnimationEnd(event) {\n const {\n fromState,\n toState\n } = event;\n if (toState === 'void' && fromState !== 'void' || toState === 'hidden') {\n this._completeExit();\n }\n if (toState === 'visible') {\n // Note: we shouldn't use `this` inside the zone callback,\n // because it can cause a memory leak.\n const onEnter = this._onEnter;\n this._ngZone.run(() => {\n onEnter.next();\n onEnter.complete();\n });\n }\n }\n /** Begin animation of snack bar entrance into view. */\n enter() {\n if (!this._destroyed) {\n this._animationState = 'visible';\n // _animationState lives in host bindings and `detectChanges` does not refresh host bindings\n // so we have to call `markForCheck` to ensure the host view is refreshed eventually.\n this._changeDetectorRef.markForCheck();\n this._changeDetectorRef.detectChanges();\n this._screenReaderAnnounce();\n }\n }\n /** Begin animation of the snack bar exiting from view. */\n exit() {\n // It's common for snack bars to be opened by random outside calls like HTTP requests or\n // errors. Run inside the NgZone to ensure that it functions correctly.\n this._ngZone.run(() => {\n // Note: this one transitions to `hidden`, rather than `void`, in order to handle the case\n // where multiple snack bars are opened in quick succession (e.g. two consecutive calls to\n // `MatSnackBar.open`).\n this._animationState = 'hidden';\n this._changeDetectorRef.markForCheck();\n // Mark this element with an 'exit' attribute to indicate that the snackbar has\n // been dismissed and will soon be removed from the DOM. This is used by the snackbar\n // test harness.\n this._elementRef.nativeElement.setAttribute('mat-exit', '');\n // If the snack bar hasn't been announced by the time it exits it wouldn't have been open\n // long enough to visually read it either, so clear the timeout for announcing.\n clearTimeout(this._announceTimeoutId);\n });\n return this._onExit;\n }\n /** Makes sure the exit callbacks have been invoked when the element is destroyed. */\n ngOnDestroy() {\n this._destroyed = true;\n this._clearFromModals();\n this._completeExit();\n }\n /**\n * Removes the element in a microtask. Helps prevent errors where we end up\n * removing an element which is in the middle of an animation.\n */\n _completeExit() {\n queueMicrotask(() => {\n this._onExit.next();\n this._onExit.complete();\n });\n }\n /**\n * Called after the portal contents have been attached. Can be\n * used to modify the DOM once it's guaranteed to be in place.\n */\n _afterPortalAttached() {\n const element = this._elementRef.nativeElement;\n const panelClasses = this.snackBarConfig.panelClass;\n if (panelClasses) {\n if (Array.isArray(panelClasses)) {\n // Note that we can't use a spread here, because IE doesn't support multiple arguments.\n panelClasses.forEach(cssClass => element.classList.add(cssClass));\n } else {\n element.classList.add(panelClasses);\n }\n }\n this._exposeToModals();\n // Check to see if the attached component or template uses the MDC template structure,\n // specifically the MDC label. If not, the container should apply the MDC label class to this\n // component's label container, which will apply MDC's label styles to the attached view.\n const label = this._label.nativeElement;\n const labelClass = 'mdc-snackbar__label';\n label.classList.toggle(labelClass, !label.querySelector(`.${labelClass}`));\n }\n /**\n * Some browsers won't expose the accessibility node of the live element if there is an\n * `aria-modal` and the live element is outside of it. This method works around the issue by\n * pointing the `aria-owns` of all modals to the live element.\n */\n _exposeToModals() {\n // TODO(http://github.com/angular/components/issues/26853): consider de-duplicating this with the\n // `LiveAnnouncer` and any other usages.\n //\n // Note that the selector here is limited to CDK overlays at the moment in order to reduce the\n // section of the DOM we need to look through. This should cover all the cases we support, but\n // the selector can be expanded if it turns out to be too narrow.\n const id = this._liveElementId;\n const modals = this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal=\"true\"]');\n for (let i = 0; i < modals.length; i++) {\n const modal = modals[i];\n const ariaOwns = modal.getAttribute('aria-owns');\n this._trackedModals.add(modal);\n if (!ariaOwns) {\n modal.setAttribute('aria-owns', id);\n } else if (ariaOwns.indexOf(id) === -1) {\n modal.setAttribute('aria-owns', ariaOwns + ' ' + id);\n }\n }\n }\n /** Clears the references to the live element from any modals it was added to. */\n _clearFromModals() {\n this._trackedModals.forEach(modal => {\n const ariaOwns = modal.getAttribute('aria-owns');\n if (ariaOwns) {\n const newValue = ariaOwns.replace(this._liveElementId, '').trim();\n if (newValue.length > 0) {\n modal.setAttribute('aria-owns', newValue);\n } else {\n modal.removeAttribute('aria-owns');\n }\n }\n });\n this._trackedModals.clear();\n }\n /** Asserts that no content is already attached to the container. */\n _assertNotAttached() {\n if (this._portalOutlet.hasAttached() && (typeof ngDevMode === 'undefined' || ngDevMode)) {\n throw Error('Attempting to attach snack bar content after content is already attached');\n }\n }\n /**\n * Starts a timeout to move the snack bar content to the live region so screen readers will\n * announce it.\n */\n _screenReaderAnnounce() {\n if (!this._announceTimeoutId) {\n this._ngZone.runOutsideAngular(() => {\n this._announceTimeoutId = setTimeout(() => {\n const inertElement = this._elementRef.nativeElement.querySelector('[aria-hidden]');\n const liveElement = this._elementRef.nativeElement.querySelector('[aria-live]');\n if (inertElement && liveElement) {\n // If an element in the snack bar content is focused before being moved\n // track it and restore focus after moving to the live region.\n let focusedElement = null;\n if (this._platform.isBrowser && document.activeElement instanceof HTMLElement && inertElement.contains(document.activeElement)) {\n focusedElement = document.activeElement;\n }\n inertElement.removeAttribute('aria-hidden');\n liveElement.appendChild(inertElement);\n focusedElement?.focus();\n this._onAnnounce.next();\n this._onAnnounce.complete();\n }\n }, this._announceDelay);\n });\n }\n }\n static ɵfac = function MatSnackBarContainer_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatSnackBarContainer)();\n };\n static ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: MatSnackBarContainer,\n selectors: [[\"mat-snack-bar-container\"]],\n viewQuery: function MatSnackBarContainer_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(CdkPortalOutlet, 7);\n i0.ɵɵviewQuery(_c0, 7);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx._portalOutlet = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx._label = _t.first);\n }\n },\n hostAttrs: [1, \"mdc-snackbar\", \"mat-mdc-snack-bar-container\"],\n hostVars: 1,\n hostBindings: function MatSnackBarContainer_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵsyntheticHostListener(\"@state.done\", function MatSnackBarContainer_animation_state_done_HostBindingHandler($event) {\n return ctx.onAnimationEnd($event);\n });\n }\n if (rf & 2) {\n i0.ɵɵsyntheticHostProperty(\"@state\", ctx._animationState);\n }\n },\n features: [i0.ɵɵInheritDefinitionFeature],\n decls: 6,\n vars: 3,\n consts: [[\"label\", \"\"], [1, \"mdc-snackbar__surface\", \"mat-mdc-snackbar-surface\"], [1, \"mat-mdc-snack-bar-label\"], [\"aria-hidden\", \"true\"], [\"cdkPortalOutlet\", \"\"]],\n template: function MatSnackBarContainer_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 1)(1, \"div\", 2, 0)(3, \"div\", 3);\n i0.ɵɵtemplate(4, MatSnackBarContainer_ng_template_4_Template, 0, 0, \"ng-template\", 4);\n i0.ɵɵelementEnd();\n i0.ɵɵelement(5, \"div\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(5);\n i0.ɵɵattribute(\"aria-live\", ctx._live)(\"role\", ctx._role)(\"id\", ctx._liveElementId);\n }\n },\n dependencies: [CdkPortalOutlet],\n styles: [\".mat-mdc-snack-bar-container{display:flex;align-items:center;justify-content:center;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:8px}.mat-mdc-snack-bar-handset .mat-mdc-snack-bar-container{width:100vw}.mat-mdc-snackbar-surface{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;padding-left:0;padding-right:8px}[dir=rtl] .mat-mdc-snackbar-surface{padding-right:0;padding-left:8px}.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface{min-width:344px;max-width:672px}.mat-mdc-snack-bar-handset .mat-mdc-snackbar-surface{width:100%;min-width:0}@media(forced-colors: active){.mat-mdc-snackbar-surface{outline:solid 1px}}.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface{color:var(--mdc-snackbar-supporting-text-color, var(--mat-sys-inverse-on-surface));border-radius:var(--mdc-snackbar-container-shape, var(--mat-sys-corner-extra-small));background-color:var(--mdc-snackbar-container-color, var(--mat-sys-inverse-surface))}.mdc-snackbar__label{width:100%;flex-grow:1;box-sizing:border-box;margin:0;padding:14px 8px 14px 16px}[dir=rtl] .mdc-snackbar__label{padding-left:8px;padding-right:16px}.mat-mdc-snack-bar-container .mdc-snackbar__label{font-family:var(--mdc-snackbar-supporting-text-font, var(--mat-sys-body-medium-font));font-size:var(--mdc-snackbar-supporting-text-size, var(--mat-sys-body-medium-size));font-weight:var(--mdc-snackbar-supporting-text-weight, var(--mat-sys-body-medium-weight));line-height:var(--mdc-snackbar-supporting-text-line-height, var(--mat-sys-body-medium-line-height))}.mat-mdc-snack-bar-actions{display:flex;flex-shrink:0;align-items:center;box-sizing:border-box}.mat-mdc-snack-bar-handset,.mat-mdc-snack-bar-container,.mat-mdc-snack-bar-label{flex:1 1 auto}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled).mat-unthemed{color:var(--mat-snack-bar-button-color, var(--mat-sys-inverse-primary))}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled){--mat-text-button-state-layer-color:currentColor;--mat-text-button-ripple-color:currentColor}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) .mat-ripple-element{opacity:.1}\"],\n encapsulation: 2,\n data: {\n animation: [matSnackBarAnimations.snackBarState]\n }\n });\n }\n return MatSnackBarContainer;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** @docs-private */\nfunction MAT_SNACK_BAR_DEFAULT_OPTIONS_FACTORY() {\n return new MatSnackBarConfig();\n}\n/** Injection token that can be used to specify default snack bar. */\nconst MAT_SNACK_BAR_DEFAULT_OPTIONS = /*#__PURE__*/new InjectionToken('mat-snack-bar-default-options', {\n providedIn: 'root',\n factory: MAT_SNACK_BAR_DEFAULT_OPTIONS_FACTORY\n});\n/**\n * Service to dispatch Material Design snack bar messages.\n */\nlet MatSnackBar = /*#__PURE__*/(() => {\n class MatSnackBar {\n _overlay = inject(Overlay);\n _live = inject(LiveAnnouncer);\n _injector = inject(Injector);\n _breakpointObserver = inject(BreakpointObserver);\n _parentSnackBar = inject(MatSnackBar, {\n optional: true,\n skipSelf: true\n });\n _defaultConfig = inject(MAT_SNACK_BAR_DEFAULT_OPTIONS);\n /**\n * Reference to the current snack bar in the view *at this level* (in the Angular injector tree).\n * If there is a parent snack-bar service, all operations should delegate to that parent\n * via `_openedSnackBarRef`.\n */\n _snackBarRefAtThisLevel = null;\n /** The component that should be rendered as the snack bar's simple component. */\n simpleSnackBarComponent = SimpleSnackBar;\n /** The container component that attaches the provided template or component. */\n snackBarContainerComponent = MatSnackBarContainer;\n /** The CSS class to apply for handset mode. */\n handsetCssClass = 'mat-mdc-snack-bar-handset';\n /** Reference to the currently opened snackbar at *any* level. */\n get _openedSnackBarRef() {\n const parent = this._parentSnackBar;\n return parent ? parent._openedSnackBarRef : this._snackBarRefAtThisLevel;\n }\n set _openedSnackBarRef(value) {\n if (this._parentSnackBar) {\n this._parentSnackBar._openedSnackBarRef = value;\n } else {\n this._snackBarRefAtThisLevel = value;\n }\n }\n constructor() {}\n /**\n * Creates and dispatches a snack bar with a custom component for the content, removing any\n * currently opened snack bars.\n *\n * @param component Component to be instantiated.\n * @param config Extra configuration for the snack bar.\n */\n openFromComponent(component, config) {\n return this._attach(component, config);\n }\n /**\n * Creates and dispatches a snack bar with a custom template for the content, removing any\n * currently opened snack bars.\n *\n * @param template Template to be instantiated.\n * @param config Extra configuration for the snack bar.\n */\n openFromTemplate(template, config) {\n return this._attach(template, config);\n }\n /**\n * Opens a snackbar with a message and an optional action.\n * @param message The message to show in the snackbar.\n * @param action The label for the snackbar action.\n * @param config Additional configuration options for the snackbar.\n */\n open(message, action = '', config) {\n const _config = {\n ...this._defaultConfig,\n ...config\n };\n // Since the user doesn't have access to the component, we can\n // override the data to pass in our own message and action.\n _config.data = {\n message,\n action\n };\n // Since the snack bar has `role=\"alert\"`, we don't\n // want to announce the same message twice.\n if (_config.announcementMessage === message) {\n _config.announcementMessage = undefined;\n }\n return this.openFromComponent(this.simpleSnackBarComponent, _config);\n }\n /**\n * Dismisses the currently-visible snack bar.\n */\n dismiss() {\n if (this._openedSnackBarRef) {\n this._openedSnackBarRef.dismiss();\n }\n }\n ngOnDestroy() {\n // Only dismiss the snack bar at the current level on destroy.\n if (this._snackBarRefAtThisLevel) {\n this._snackBarRefAtThisLevel.dismiss();\n }\n }\n /**\n * Attaches the snack bar container component to the overlay.\n */\n _attachSnackBarContainer(overlayRef, config) {\n const userInjector = config && config.viewContainerRef && config.viewContainerRef.injector;\n const injector = Injector.create({\n parent: userInjector || this._injector,\n providers: [{\n provide: MatSnackBarConfig,\n useValue: config\n }]\n });\n const containerPortal = new ComponentPortal(this.snackBarContainerComponent, config.viewContainerRef, injector);\n const containerRef = overlayRef.attach(containerPortal);\n containerRef.instance.snackBarConfig = config;\n return containerRef.instance;\n }\n /**\n * Places a new component or a template as the content of the snack bar container.\n */\n _attach(content, userConfig) {\n const config = {\n ...new MatSnackBarConfig(),\n ...this._defaultConfig,\n ...userConfig\n };\n const overlayRef = this._createOverlay(config);\n const container = this._attachSnackBarContainer(overlayRef, config);\n const snackBarRef = new MatSnackBarRef(container, overlayRef);\n if (content instanceof TemplateRef) {\n const portal = new TemplatePortal(content, null, {\n $implicit: config.data,\n snackBarRef\n });\n snackBarRef.instance = container.attachTemplatePortal(portal);\n } else {\n const injector = this._createInjector(config, snackBarRef);\n const portal = new ComponentPortal(content, undefined, injector);\n const contentRef = container.attachComponentPortal(portal);\n // We can't pass this via the injector, because the injector is created earlier.\n snackBarRef.instance = contentRef.instance;\n }\n // Subscribe to the breakpoint observer and attach the mat-snack-bar-handset class as\n // appropriate. This class is applied to the overlay element because the overlay must expand to\n // fill the width of the screen for full width snackbars.\n this._breakpointObserver.observe(Breakpoints.HandsetPortrait).pipe(takeUntil(overlayRef.detachments())).subscribe(state => {\n overlayRef.overlayElement.classList.toggle(this.handsetCssClass, state.matches);\n });\n if (config.announcementMessage) {\n // Wait until the snack bar contents have been announced then deliver this message.\n container._onAnnounce.subscribe(() => {\n this._live.announce(config.announcementMessage, config.politeness);\n });\n }\n this._animateSnackBar(snackBarRef, config);\n this._openedSnackBarRef = snackBarRef;\n return this._openedSnackBarRef;\n }\n /** Animates the old snack bar out and the new one in. */\n _animateSnackBar(snackBarRef, config) {\n // When the snackbar is dismissed, clear the reference to it.\n snackBarRef.afterDismissed().subscribe(() => {\n // Clear the snackbar ref if it hasn't already been replaced by a newer snackbar.\n if (this._openedSnackBarRef == snackBarRef) {\n this._openedSnackBarRef = null;\n }\n if (config.announcementMessage) {\n this._live.clear();\n }\n });\n if (this._openedSnackBarRef) {\n // If a snack bar is already in view, dismiss it and enter the\n // new snack bar after exit animation is complete.\n this._openedSnackBarRef.afterDismissed().subscribe(() => {\n snackBarRef.containerInstance.enter();\n });\n this._openedSnackBarRef.dismiss();\n } else {\n // If no snack bar is in view, enter the new snack bar.\n snackBarRef.containerInstance.enter();\n }\n // If a dismiss timeout is provided, set up dismiss based on after the snackbar is opened.\n if (config.duration && config.duration > 0) {\n snackBarRef.afterOpened().subscribe(() => snackBarRef._dismissAfter(config.duration));\n }\n }\n /**\n * Creates a new overlay and places it in the correct location.\n * @param config The user-specified snack bar config.\n */\n _createOverlay(config) {\n const overlayConfig = new OverlayConfig();\n overlayConfig.direction = config.direction;\n let positionStrategy = this._overlay.position().global();\n // Set horizontal position.\n const isRtl = config.direction === 'rtl';\n const isLeft = config.horizontalPosition === 'left' || config.horizontalPosition === 'start' && !isRtl || config.horizontalPosition === 'end' && isRtl;\n const isRight = !isLeft && config.horizontalPosition !== 'center';\n if (isLeft) {\n positionStrategy.left('0');\n } else if (isRight) {\n positionStrategy.right('0');\n } else {\n positionStrategy.centerHorizontally();\n }\n // Set horizontal position.\n if (config.verticalPosition === 'top') {\n positionStrategy.top('0');\n } else {\n positionStrategy.bottom('0');\n }\n overlayConfig.positionStrategy = positionStrategy;\n return this._overlay.create(overlayConfig);\n }\n /**\n * Creates an injector to be used inside of a snack bar component.\n * @param config Config that was used to create the snack bar.\n * @param snackBarRef Reference to the snack bar.\n */\n _createInjector(config, snackBarRef) {\n const userInjector = config && config.viewContainerRef && config.viewContainerRef.injector;\n return Injector.create({\n parent: userInjector || this._injector,\n providers: [{\n provide: MatSnackBarRef,\n useValue: snackBarRef\n }, {\n provide: MAT_SNACK_BAR_DATA,\n useValue: config.data\n }]\n });\n }\n static ɵfac = function MatSnackBar_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatSnackBar)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: MatSnackBar,\n factory: MatSnackBar.ɵfac,\n providedIn: 'root'\n });\n }\n return MatSnackBar;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst DIRECTIVES = [MatSnackBarContainer, MatSnackBarLabel, MatSnackBarActions, MatSnackBarAction];\nlet MatSnackBarModule = /*#__PURE__*/(() => {\n class MatSnackBarModule {\n static ɵfac = function MatSnackBarModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatSnackBarModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: MatSnackBarModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [MatSnackBar],\n imports: [OverlayModule, PortalModule, MatButtonModule, MatCommonModule, SimpleSnackBar, MatCommonModule]\n });\n }\n return MatSnackBarModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { MAT_SNACK_BAR_DATA, MAT_SNACK_BAR_DEFAULT_OPTIONS, MAT_SNACK_BAR_DEFAULT_OPTIONS_FACTORY, MatSnackBar, MatSnackBarAction, MatSnackBarActions, MatSnackBarConfig, MatSnackBarContainer, MatSnackBarLabel, MatSnackBarModule, MatSnackBarRef, SimpleSnackBar, matSnackBarAnimations };\n","import { InjectionToken } from '@angular/core';\n\nexport interface AUTH_ENV {\n clientId: string;\n issuer: string;\n tenantId: string;\n redirectUri: string;\n custom?: { [key: string]: string };\n}\n\n/**\n * Environmental configuration properties for auth0\n */\nexport const AUTH_TOKEN = new InjectionToken('auth.token');\n","import * as i0 from '@angular/core';\nimport { InjectionToken, inject, ElementRef, ANIMATION_MODULE_TYPE, numberAttribute, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, ViewChild, NgModule } from '@angular/core';\nimport { NgTemplateOutlet } from '@angular/common';\nimport { MatCommonModule } from '@angular/material/core';\n\n/** Injection token to be used to override the default options for `mat-progress-spinner`. */\nconst _c0 = [\"determinateSpinner\"];\nfunction MatProgressSpinner_ng_template_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵnamespaceSVG();\n i0.ɵɵelementStart(0, \"svg\", 11);\n i0.ɵɵelement(1, \"circle\", 12);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵattribute(\"viewBox\", ctx_r0._viewBox());\n i0.ɵɵadvance();\n i0.ɵɵstyleProp(\"stroke-dasharray\", ctx_r0._strokeCircumference(), \"px\")(\"stroke-dashoffset\", ctx_r0._strokeCircumference() / 2, \"px\")(\"stroke-width\", ctx_r0._circleStrokeWidth(), \"%\");\n i0.ɵɵattribute(\"r\", ctx_r0._circleRadius());\n }\n}\nconst MAT_PROGRESS_SPINNER_DEFAULT_OPTIONS = /*#__PURE__*/new InjectionToken('mat-progress-spinner-default-options', {\n providedIn: 'root',\n factory: MAT_PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY\n});\n/** @docs-private */\nfunction MAT_PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY() {\n return {\n diameter: BASE_SIZE\n };\n}\n/**\n * Base reference size of the spinner.\n */\nconst BASE_SIZE = 100;\n/**\n * Base reference stroke width of the spinner.\n */\nconst BASE_STROKE_WIDTH = 10;\nlet MatProgressSpinner = /*#__PURE__*/(() => {\n class MatProgressSpinner {\n _elementRef = inject(ElementRef);\n /** Whether the _mat-animation-noopable class should be applied, disabling animations. */\n _noopAnimations;\n // TODO: should be typed as `ThemePalette` but internal apps pass in arbitrary strings.\n /**\n * Theme color of the progress spinner. This API is supported in M2 themes only, it\n * has no effect in M3 themes.\n *\n * For information on applying color variants in M3, see\n * https://material.angular.io/guide/theming#using-component-color-variants.\n */\n get color() {\n return this._color || this._defaultColor;\n }\n set color(value) {\n this._color = value;\n }\n _color;\n _defaultColor = 'primary';\n /** The element of the determinate spinner. */\n _determinateCircle;\n constructor() {\n const animationMode = inject(ANIMATION_MODULE_TYPE, {\n optional: true\n });\n const defaults = inject(MAT_PROGRESS_SPINNER_DEFAULT_OPTIONS);\n this._noopAnimations = animationMode === 'NoopAnimations' && !!defaults && !defaults._forceAnimations;\n this.mode = this._elementRef.nativeElement.nodeName.toLowerCase() === 'mat-spinner' ? 'indeterminate' : 'determinate';\n if (defaults) {\n if (defaults.color) {\n this.color = this._defaultColor = defaults.color;\n }\n if (defaults.diameter) {\n this.diameter = defaults.diameter;\n }\n if (defaults.strokeWidth) {\n this.strokeWidth = defaults.strokeWidth;\n }\n }\n }\n /**\n * Mode of the progress bar.\n *\n * Input must be one of these values: determinate, indeterminate, buffer, query, defaults to\n * 'determinate'.\n * Mirrored to mode attribute.\n */\n mode;\n /** Value of the progress bar. Defaults to zero. Mirrored to aria-valuenow. */\n get value() {\n return this.mode === 'determinate' ? this._value : 0;\n }\n set value(v) {\n this._value = Math.max(0, Math.min(100, v || 0));\n }\n _value = 0;\n /** The diameter of the progress spinner (will set width and height of svg). */\n get diameter() {\n return this._diameter;\n }\n set diameter(size) {\n this._diameter = size || 0;\n }\n _diameter = BASE_SIZE;\n /** Stroke width of the progress spinner. */\n get strokeWidth() {\n return this._strokeWidth ?? this.diameter / 10;\n }\n set strokeWidth(value) {\n this._strokeWidth = value || 0;\n }\n _strokeWidth;\n /** The radius of the spinner, adjusted for stroke width. */\n _circleRadius() {\n return (this.diameter - BASE_STROKE_WIDTH) / 2;\n }\n /** The view box of the spinner's svg element. */\n _viewBox() {\n const viewBox = this._circleRadius() * 2 + this.strokeWidth;\n return `0 0 ${viewBox} ${viewBox}`;\n }\n /** The stroke circumference of the svg circle. */\n _strokeCircumference() {\n return 2 * Math.PI * this._circleRadius();\n }\n /** The dash offset of the svg circle. */\n _strokeDashOffset() {\n if (this.mode === 'determinate') {\n return this._strokeCircumference() * (100 - this._value) / 100;\n }\n return null;\n }\n /** Stroke width of the circle in percent. */\n _circleStrokeWidth() {\n return this.strokeWidth / this.diameter * 100;\n }\n static ɵfac = function MatProgressSpinner_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatProgressSpinner)();\n };\n static ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: MatProgressSpinner,\n selectors: [[\"mat-progress-spinner\"], [\"mat-spinner\"]],\n viewQuery: function MatProgressSpinner_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(_c0, 5);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx._determinateCircle = _t.first);\n }\n },\n hostAttrs: [\"role\", \"progressbar\", \"tabindex\", \"-1\", 1, \"mat-mdc-progress-spinner\", \"mdc-circular-progress\"],\n hostVars: 18,\n hostBindings: function MatProgressSpinner_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵattribute(\"aria-valuemin\", 0)(\"aria-valuemax\", 100)(\"aria-valuenow\", ctx.mode === \"determinate\" ? ctx.value : null)(\"mode\", ctx.mode);\n i0.ɵɵclassMap(\"mat-\" + ctx.color);\n i0.ɵɵstyleProp(\"width\", ctx.diameter, \"px\")(\"height\", ctx.diameter, \"px\")(\"--mdc-circular-progress-size\", ctx.diameter + \"px\")(\"--mdc-circular-progress-active-indicator-width\", ctx.diameter + \"px\");\n i0.ɵɵclassProp(\"_mat-animation-noopable\", ctx._noopAnimations)(\"mdc-circular-progress--indeterminate\", ctx.mode === \"indeterminate\");\n }\n },\n inputs: {\n color: \"color\",\n mode: \"mode\",\n value: [2, \"value\", \"value\", numberAttribute],\n diameter: [2, \"diameter\", \"diameter\", numberAttribute],\n strokeWidth: [2, \"strokeWidth\", \"strokeWidth\", numberAttribute]\n },\n exportAs: [\"matProgressSpinner\"],\n features: [i0.ɵɵInputTransformsFeature],\n decls: 14,\n vars: 11,\n consts: [[\"circle\", \"\"], [\"determinateSpinner\", \"\"], [\"aria-hidden\", \"true\", 1, \"mdc-circular-progress__determinate-container\"], [\"xmlns\", \"http://www.w3.org/2000/svg\", \"focusable\", \"false\", 1, \"mdc-circular-progress__determinate-circle-graphic\"], [\"cx\", \"50%\", \"cy\", \"50%\", 1, \"mdc-circular-progress__determinate-circle\"], [\"aria-hidden\", \"true\", 1, \"mdc-circular-progress__indeterminate-container\"], [1, \"mdc-circular-progress__spinner-layer\"], [1, \"mdc-circular-progress__circle-clipper\", \"mdc-circular-progress__circle-left\"], [3, \"ngTemplateOutlet\"], [1, \"mdc-circular-progress__gap-patch\"], [1, \"mdc-circular-progress__circle-clipper\", \"mdc-circular-progress__circle-right\"], [\"xmlns\", \"http://www.w3.org/2000/svg\", \"focusable\", \"false\", 1, \"mdc-circular-progress__indeterminate-circle-graphic\"], [\"cx\", \"50%\", \"cy\", \"50%\"]],\n template: function MatProgressSpinner_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, MatProgressSpinner_ng_template_0_Template, 2, 8, \"ng-template\", null, 0, i0.ɵɵtemplateRefExtractor);\n i0.ɵɵelementStart(2, \"div\", 2, 1);\n i0.ɵɵnamespaceSVG();\n i0.ɵɵelementStart(4, \"svg\", 3);\n i0.ɵɵelement(5, \"circle\", 4);\n i0.ɵɵelementEnd()();\n i0.ɵɵnamespaceHTML();\n i0.ɵɵelementStart(6, \"div\", 5)(7, \"div\", 6)(8, \"div\", 7);\n i0.ɵɵelementContainer(9, 8);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(10, \"div\", 9);\n i0.ɵɵelementContainer(11, 8);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(12, \"div\", 10);\n i0.ɵɵelementContainer(13, 8);\n i0.ɵɵelementEnd()()();\n }\n if (rf & 2) {\n const circle_r2 = i0.ɵɵreference(1);\n i0.ɵɵadvance(4);\n i0.ɵɵattribute(\"viewBox\", ctx._viewBox());\n i0.ɵɵadvance();\n i0.ɵɵstyleProp(\"stroke-dasharray\", ctx._strokeCircumference(), \"px\")(\"stroke-dashoffset\", ctx._strokeDashOffset(), \"px\")(\"stroke-width\", ctx._circleStrokeWidth(), \"%\");\n i0.ɵɵattribute(\"r\", ctx._circleRadius());\n i0.ɵɵadvance(4);\n i0.ɵɵproperty(\"ngTemplateOutlet\", circle_r2);\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"ngTemplateOutlet\", circle_r2);\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"ngTemplateOutlet\", circle_r2);\n }\n },\n dependencies: [NgTemplateOutlet],\n styles: [\".mat-mdc-progress-spinner{display:block;overflow:hidden;line-height:0;position:relative;direction:ltr;transition:opacity 250ms cubic-bezier(0.4, 0, 0.6, 1)}.mat-mdc-progress-spinner circle{stroke-width:var(--mdc-circular-progress-active-indicator-width, 4px)}.mat-mdc-progress-spinner._mat-animation-noopable,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__determinate-circle{transition:none !important}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-circle-graphic,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__spinner-layer,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container{animation:none !important}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container circle{stroke-dasharray:0 !important}@media(forced-colors: active){.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic,.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle{stroke:currentColor;stroke:CanvasText}}.mdc-circular-progress__determinate-container,.mdc-circular-progress__indeterminate-circle-graphic,.mdc-circular-progress__indeterminate-container,.mdc-circular-progress__spinner-layer{position:absolute;width:100%;height:100%}.mdc-circular-progress__determinate-container{transform:rotate(-90deg)}.mdc-circular-progress--indeterminate .mdc-circular-progress__determinate-container{opacity:0}.mdc-circular-progress__indeterminate-container{font-size:0;letter-spacing:0;white-space:nowrap;opacity:0}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{opacity:1;animation:mdc-circular-progress-container-rotate 1568.2352941176ms linear infinite}.mdc-circular-progress__determinate-circle-graphic,.mdc-circular-progress__indeterminate-circle-graphic{fill:rgba(0,0,0,0)}.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:var(--mdc-circular-progress-active-indicator-color, var(--mat-sys-primary))}@media(forced-colors: active){.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mdc-circular-progress__determinate-circle{transition:stroke-dashoffset 500ms cubic-bezier(0, 0, 0.2, 1)}.mdc-circular-progress__gap-patch{position:absolute;top:0;left:47.5%;box-sizing:border-box;width:5%;height:100%;overflow:hidden}.mdc-circular-progress__gap-patch .mdc-circular-progress__indeterminate-circle-graphic{left:-900%;width:2000%;transform:rotate(180deg)}.mdc-circular-progress__circle-clipper .mdc-circular-progress__indeterminate-circle-graphic{width:200%}.mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{left:-100%}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-left .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress__circle-clipper{display:inline-flex;position:relative;width:50%;height:100%;overflow:hidden}.mdc-circular-progress--indeterminate .mdc-circular-progress__spinner-layer{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}@keyframes mdc-circular-progress-container-rotate{to{transform:rotate(360deg)}}@keyframes mdc-circular-progress-spinner-layer-rotate{12.5%{transform:rotate(135deg)}25%{transform:rotate(270deg)}37.5%{transform:rotate(405deg)}50%{transform:rotate(540deg)}62.5%{transform:rotate(675deg)}75%{transform:rotate(810deg)}87.5%{transform:rotate(945deg)}100%{transform:rotate(1080deg)}}@keyframes mdc-circular-progress-left-spin{from{transform:rotate(265deg)}50%{transform:rotate(130deg)}to{transform:rotate(265deg)}}@keyframes mdc-circular-progress-right-spin{from{transform:rotate(-265deg)}50%{transform:rotate(-130deg)}to{transform:rotate(-265deg)}}\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n return MatProgressSpinner;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * @deprecated Import Progress Spinner instead. Note that the\n * `mat-spinner` selector isn't deprecated.\n * @breaking-change 16.0.0\n */\n// tslint:disable-next-line:variable-name\nconst MatSpinner = MatProgressSpinner;\nlet MatProgressSpinnerModule = /*#__PURE__*/(() => {\n class MatProgressSpinnerModule {\n static ɵfac = function MatProgressSpinnerModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatProgressSpinnerModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: MatProgressSpinnerModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [MatCommonModule]\n });\n }\n return MatProgressSpinnerModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { MAT_PROGRESS_SPINNER_DEFAULT_OPTIONS, MAT_PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY, MatProgressSpinner, MatProgressSpinnerModule, MatSpinner };\n","import { Component, OnDestroy, OnInit } from '@angular/core';\nimport { Router } from '@angular/router';\nimport { Subscription } from 'rxjs';\nimport { getLocalStorage } from '../utils/getLocalStorage';\nimport { AuthService } from './';\n\n@Component({\n selector: 'lib-logout',\n template: '',\n styles: [\n `\n :host {\n display: flex;\n align-items: center;\n justify-content: center;\n height: calc(100vh - 4rem);\n }\n `,\n ],\n standalone: false\n})\nexport class LogoutComponent implements OnInit, OnDestroy {\n subscriptions: Subscription[] = [];\n\n constructor(\n private auth: AuthService,\n private router: Router,\n ) {}\n\n ngOnInit() {\n if (this.auth.isLoggedIn()) {\n // User explicitly wants to log out. Remove all traces.\n this.auth\n .logout()\n .then(() => getLocalStorage().removeItem('user'))\n .finally(() => this.router.navigate(['/']));\n } else {\n this.router.navigate(['/']);\n }\n }\n\n ngOnDestroy(): void {\n this.subscriptions.forEach(sub => sub.unsubscribe());\n }\n}\n","import { Injectable, inject } from '@angular/core';\nimport { Router, UrlTree } from '@angular/router';\nimport { Observable, firstValueFrom } from 'rxjs';\nimport { AuthService } from '.';\nimport { getEnv } from '../utils';\n\n@Injectable({ providedIn: 'root' })\nexport class AuthGuard {\n auth = inject(AuthService);\n router = inject(Router);\n\n canActivate(): Observable | Promise | boolean | UrlTree {\n return this.handleAuthState();\n }\n\n canLoad(): boolean | UrlTree | Observable | Promise {\n return this.handleAuthState();\n }\n\n async handleAuthState() {\n const params = new URLSearchParams(window.location.search);\n let returnTo = (params.has('returnTo') ? params.get('returnTo') : location.href) || undefined;\n if (['login', 'callback', 'logout'].some(s => returnTo?.includes(s))) returnTo = undefined;\n if ('Cypress' in window) return true;\n const isLoggedIn = await firstValueFrom(this.auth.isLoggedIn$);\n if (isLoggedIn) {\n return true;\n } else if (getEnv('customLogin') !== true) {\n this.auth.login({ returnTo });\n return false;\n } else {\n return this.router.createUrlTree(['/login'], { queryParams: { returnTo } });\n }\n }\n}\n","/**\n * @license Angular v19.0.3\n * (c) 2010-2024 Google LLC. https://angular.io/\n * License: MIT\n */\n\nimport { assertInInjectionContext, inject, DestroyRef, ɵRuntimeError, ɵgetOutputDestroyRef, Injector, effect, untracked, ɵmicrotaskEffect, assertNotInReactiveContext, signal, computed, PendingTasks, resource } from '@angular/core';\nimport { Observable, ReplaySubject, Subject } from 'rxjs';\nimport { takeUntil, take } from 'rxjs/operators';\n\n/**\n * Operator which completes the Observable when the calling context (component, directive, service,\n * etc) is destroyed.\n *\n * @param destroyRef optionally, the `DestroyRef` representing the current context. This can be\n * passed explicitly to use `takeUntilDestroyed` outside of an [injection\n * context](guide/di/dependency-injection-context). Otherwise, the current `DestroyRef` is injected.\n *\n * @publicApi\n */\nfunction takeUntilDestroyed(destroyRef) {\n if (!destroyRef) {\n assertInInjectionContext(takeUntilDestroyed);\n destroyRef = inject(DestroyRef);\n }\n const destroyed$ = new Observable(observer => {\n const unregisterFn = destroyRef.onDestroy(observer.next.bind(observer));\n return unregisterFn;\n });\n return source => {\n return source.pipe(takeUntil(destroyed$));\n };\n}\n\n/**\n * Implementation of `OutputRef` that emits values from\n * an RxJS observable source.\n *\n * @internal\n */\nclass OutputFromObservableRef {\n source;\n destroyed = false;\n destroyRef = /*#__PURE__*/inject(DestroyRef);\n constructor(source) {\n this.source = source;\n this.destroyRef.onDestroy(() => {\n this.destroyed = true;\n });\n }\n subscribe(callbackFn) {\n if (this.destroyed) {\n throw new ɵRuntimeError(953 /* ɵRuntimeErrorCode.OUTPUT_REF_DESTROYED */, ngDevMode && 'Unexpected subscription to destroyed `OutputRef`. ' + 'The owning directive/component is destroyed.');\n }\n // Stop yielding more values when the directive/component is already destroyed.\n const subscription = this.source.pipe(takeUntilDestroyed(this.destroyRef)).subscribe({\n next: value => callbackFn(value)\n });\n return {\n unsubscribe: () => subscription.unsubscribe()\n };\n }\n}\n/**\n * Declares an Angular output that is using an RxJS observable as a source\n * for events dispatched to parent subscribers.\n *\n * The behavior for an observable as source is defined as followed:\n * 1. New values are forwarded to the Angular output (next notifications).\n * 2. Errors notifications are not handled by Angular. You need to handle these manually.\n * For example by using `catchError`.\n * 3. Completion notifications stop the output from emitting new values.\n *\n * @usageNotes\n * Initialize an output in your directive by declaring a\n * class field and initializing it with the `outputFromObservable()` function.\n *\n * ```ts\n * @Directive({..})\n * export class MyDir {\n * nameChange$ = ;\n * nameChange = outputFromObservable(this.nameChange$);\n * }\n * ```\n *\n * @publicApi\n */\nfunction outputFromObservable(observable, opts) {\n ngDevMode && assertInInjectionContext(outputFromObservable);\n return new OutputFromObservableRef(observable);\n}\n\n/**\n * Converts an Angular output declared via `output()` or `outputFromObservable()`\n * to an observable.\n *\n * You can subscribe to the output via `Observable.subscribe` then.\n *\n * @publicApi\n */\nfunction outputToObservable(ref) {\n const destroyRef = ɵgetOutputDestroyRef(ref);\n return new Observable(observer => {\n // Complete the observable upon directive/component destroy.\n // Note: May be `undefined` if an `EventEmitter` is declared outside\n // of an injection context.\n destroyRef?.onDestroy(() => observer.complete());\n const subscription = ref.subscribe(v => observer.next(v));\n return () => subscription.unsubscribe();\n });\n}\n\n/**\n * Exposes the value of an Angular `Signal` as an RxJS `Observable`.\n *\n * The signal's value will be propagated into the `Observable`'s subscribers using an `effect`.\n *\n * `toObservable` must be called in an injection context unless an injector is provided via options.\n *\n * @developerPreview\n */\nfunction toObservable(source, options) {\n !options?.injector && assertInInjectionContext(toObservable);\n const injector = options?.injector ?? inject(Injector);\n const subject = new ReplaySubject(1);\n const watcher = effect(() => {\n let value;\n try {\n value = source();\n } catch (err) {\n untracked(() => subject.error(err));\n return;\n }\n untracked(() => subject.next(value));\n }, {\n injector,\n manualCleanup: true\n });\n injector.get(DestroyRef).onDestroy(() => {\n watcher.destroy();\n subject.complete();\n });\n return subject.asObservable();\n}\nfunction toObservableMicrotask(source, options) {\n !options?.injector && assertInInjectionContext(toObservable);\n const injector = options?.injector ?? inject(Injector);\n const subject = new ReplaySubject(1);\n const watcher = ɵmicrotaskEffect(() => {\n let value;\n try {\n value = source();\n } catch (err) {\n untracked(() => subject.error(err));\n return;\n }\n untracked(() => subject.next(value));\n }, {\n injector,\n manualCleanup: true\n });\n injector.get(DestroyRef).onDestroy(() => {\n watcher.destroy();\n subject.complete();\n });\n return subject.asObservable();\n}\n\n/**\n * Get the current value of an `Observable` as a reactive `Signal`.\n *\n * `toSignal` returns a `Signal` which provides synchronous reactive access to values produced\n * by the given `Observable`, by subscribing to that `Observable`. The returned `Signal` will always\n * have the most recent value emitted by the subscription, and will throw an error if the\n * `Observable` errors.\n *\n * With `requireSync` set to `true`, `toSignal` will assert that the `Observable` produces a value\n * immediately upon subscription. No `initialValue` is needed in this case, and the returned signal\n * does not include an `undefined` type.\n *\n * By default, the subscription will be automatically cleaned up when the current [injection\n * context](guide/di/dependency-injection-context) is destroyed. For example, when `toSignal` is\n * called during the construction of a component, the subscription will be cleaned up when the\n * component is destroyed. If an injection context is not available, an explicit `Injector` can be\n * passed instead.\n *\n * If the subscription should persist until the `Observable` itself completes, the `manualCleanup`\n * option can be specified instead, which disables the automatic subscription teardown. No injection\n * context is needed in this configuration as well.\n *\n * @developerPreview\n */\nfunction toSignal(source, options) {\n ngDevMode && assertNotInReactiveContext(toSignal, 'Invoking `toSignal` causes new subscriptions every time. ' + 'Consider moving `toSignal` outside of the reactive context and read the signal value where needed.');\n const requiresCleanup = !options?.manualCleanup;\n requiresCleanup && !options?.injector && assertInInjectionContext(toSignal);\n const cleanupRef = requiresCleanup ? options?.injector?.get(DestroyRef) ?? inject(DestroyRef) : null;\n const equal = makeToSignalEqual(options?.equal);\n // Note: T is the Observable value type, and U is the initial value type. They don't have to be\n // the same - the returned signal gives values of type `T`.\n let state;\n if (options?.requireSync) {\n // Initially the signal is in a `NoValue` state.\n state = signal({\n kind: 0 /* StateKind.NoValue */\n }, {\n equal\n });\n } else {\n // If an initial value was passed, use it. Otherwise, use `undefined` as the initial value.\n state = signal({\n kind: 1 /* StateKind.Value */,\n value: options?.initialValue\n }, {\n equal\n });\n }\n // Note: This code cannot run inside a reactive context (see assertion above). If we'd support\n // this, we would subscribe to the observable outside of the current reactive context, avoiding\n // that side-effect signal reads/writes are attribute to the current consumer. The current\n // consumer only needs to be notified when the `state` signal changes through the observable\n // subscription. Additional context (related to async pipe):\n // https://github.com/angular/angular/pull/50522.\n const sub = source.subscribe({\n next: value => state.set({\n kind: 1 /* StateKind.Value */,\n value\n }),\n error: error => {\n if (options?.rejectErrors) {\n // Kick the error back to RxJS. It will be caught and rethrown in a macrotask, which causes\n // the error to end up as an uncaught exception.\n throw error;\n }\n state.set({\n kind: 2 /* StateKind.Error */,\n error\n });\n }\n // Completion of the Observable is meaningless to the signal. Signals don't have a concept of\n // \"complete\".\n });\n if (options?.requireSync && state().kind === 0 /* StateKind.NoValue */) {\n throw new ɵRuntimeError(601 /* ɵRuntimeErrorCode.REQUIRE_SYNC_WITHOUT_SYNC_EMIT */, (typeof ngDevMode === 'undefined' || ngDevMode) && '`toSignal()` called with `requireSync` but `Observable` did not emit synchronously.');\n }\n // Unsubscribe when the current context is destroyed, if requested.\n cleanupRef?.onDestroy(sub.unsubscribe.bind(sub));\n // The actual returned signal is a `computed` of the `State` signal, which maps the various states\n // to either values or errors.\n return computed(() => {\n const current = state();\n switch (current.kind) {\n case 1 /* StateKind.Value */:\n return current.value;\n case 2 /* StateKind.Error */:\n throw current.error;\n case 0 /* StateKind.NoValue */:\n // This shouldn't really happen because the error is thrown on creation.\n throw new ɵRuntimeError(601 /* ɵRuntimeErrorCode.REQUIRE_SYNC_WITHOUT_SYNC_EMIT */, (typeof ngDevMode === 'undefined' || ngDevMode) && '`toSignal()` called with `requireSync` but `Observable` did not emit synchronously.');\n }\n }, {\n equal: options?.equal\n });\n}\nfunction makeToSignalEqual(userEquality = Object.is) {\n return (a, b) => a.kind === 1 /* StateKind.Value */ && b.kind === 1 /* StateKind.Value */ && userEquality(a.value, b.value);\n}\n\n/**\n * Operator which makes the application unstable until the observable emits, complets, errors, or is unsubscribed.\n *\n * Use this operator in observables whose subscriptions are important for rendering and should be included in SSR serialization.\n *\n * @param injector The `Injector` to use during creation. If this is not provided, the current injection context will be used instead (via `inject`).\n *\n * @experimental\n */\nfunction pendingUntilEvent(injector) {\n if (injector === undefined) {\n assertInInjectionContext(pendingUntilEvent);\n injector = inject(Injector);\n }\n const taskService = injector.get(PendingTasks);\n return sourceObservable => {\n return new Observable(originalSubscriber => {\n // create a new task on subscription\n const removeTask = taskService.add();\n let cleanedUp = false;\n function cleanupTask() {\n if (cleanedUp) {\n return;\n }\n removeTask();\n cleanedUp = true;\n }\n const innerSubscription = sourceObservable.subscribe({\n next: v => {\n originalSubscriber.next(v);\n cleanupTask();\n },\n complete: () => {\n originalSubscriber.complete();\n cleanupTask();\n },\n error: e => {\n originalSubscriber.error(e);\n cleanupTask();\n }\n });\n innerSubscription.add(() => {\n originalSubscriber.unsubscribe();\n cleanupTask();\n });\n return innerSubscription;\n });\n };\n}\n\n/**\n * Like `resource` but uses an RxJS based `loader` which maps the request to an `Observable` of the\n * resource's value. Like `firstValueFrom`, only the first emission of the Observable is considered.\n *\n * @experimental\n */\nfunction rxResource(opts) {\n opts?.injector || assertInInjectionContext(rxResource);\n return resource({\n ...opts,\n loader: params => {\n const cancelled = new Subject();\n params.abortSignal.addEventListener('abort', () => cancelled.next());\n // Note: this is identical to `firstValueFrom` which we can't use,\n // because at the time of writing, `core` still supports rxjs 6.x.\n return new Promise((resolve, reject) => {\n opts.loader(params).pipe(take(1), takeUntil(cancelled)).subscribe({\n next: resolve,\n error: reject,\n complete: () => reject(new Error('Resource completed before producing a value'))\n });\n });\n }\n });\n}\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { outputFromObservable, outputToObservable, pendingUntilEvent, rxResource, takeUntilDestroyed, toObservable, toSignal, toObservableMicrotask as ɵtoObservableMicrotask };\n","export enum AuthState {\n /** Initial state before app initialization */\n NOT_ACTIVE,\n\n /** App is starting up */\n INITIALIZING,\n\n /** Discovery document has been loaded */\n INITIALIZED,\n\n /** Validating or refreshing existing token */\n PROCESSING,\n\n /** Token processed (refreshed, missing, or expired) */\n PROCESSED,\n\n /** Authentication required */\n NEEDS_LOGIN,\n\n /** User successfully authenticated */\n AUTHENTICATED,\n}\n","import { AuthConfig } from 'angular-oauth2-oidc';\nimport { AUTH_ENV } from './auth.token';\n\nexport interface AuthConfigExtended extends AuthConfig {\n responseMode?: string;\n}\n\nexport function createAuthConfig(authToken: AUTH_ENV, isDev: boolean): AuthConfigExtended {\n return {\n issuer: `${authToken.issuer}${authToken.tenantId || ''}`,\n redirectUri: window.location.origin + authToken.redirectUri,\n clientId: authToken.clientId,\n responseType: 'code',\n scope: 'openid profile email offline_access',\n showDebugInformation: isDev,\n ...(authToken.custom ? { customQueryParams: authToken.custom } : {}),\n\n // Allows time for token processing.\n waitForTokenInMsec: 500,\n\n responseMode: 'query',\n\n // Enables background token refresh.\n useSilentRefresh: true,\n\n // Prevents login loop due to session change events.\n sessionChecksEnabled: false,\n\n silentRefreshRedirectUri: window.location.origin + '/assets/silent-refresh.html',\n\n // Improves compatibility with some Identity Providers.\n strictDiscoveryDocumentValidation: false,\n\n // Ensures compatibility with Azure AD.\n skipIssuerCheck: true,\n };\n}\n","import * as i0 from '@angular/core';\nimport { Injectable, Optional, Inject, makeEnvironmentProviders, NgModule, InjectionToken } from '@angular/core';\nimport { DOCUMENT, CommonModule } from '@angular/common';\nimport * as i1 from '@angular/common/http';\nimport { HttpHeaders, HttpParams, HTTP_INTERCEPTORS } from '@angular/common/http';\nimport { Subject, of, from, race, throwError, combineLatest, merge } from 'rxjs';\nimport { filter, tap, debounceTime, delay, map, switchMap, first, catchError, take, mergeMap, timeout } from 'rxjs/operators';\n\n/**\n * A validation handler that isn't validating nothing.\n * Can be used to skip validation (at your own risk).\n */\nclass NullValidationHandler {\n validateSignature(validationParams) {\n return Promise.resolve(null);\n }\n validateAtHash(validationParams) {\n return Promise.resolve(true);\n }\n}\nclass OAuthModuleConfig {}\nclass OAuthResourceServerConfig {}\nclass DateTimeProvider {}\nlet SystemDateTimeProvider = /*#__PURE__*/(() => {\n class SystemDateTimeProvider extends DateTimeProvider {\n now() {\n return Date.now();\n }\n new() {\n return new Date();\n }\n static {\n this.ɵfac = /* @__PURE__ */(() => {\n let ɵSystemDateTimeProvider_BaseFactory;\n return function SystemDateTimeProvider_Factory(__ngFactoryType__) {\n return (ɵSystemDateTimeProvider_BaseFactory || (ɵSystemDateTimeProvider_BaseFactory = i0.ɵɵgetInheritedFactory(SystemDateTimeProvider)))(__ngFactoryType__ || SystemDateTimeProvider);\n };\n })();\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SystemDateTimeProvider,\n factory: SystemDateTimeProvider.ɵfac\n });\n }\n }\n return SystemDateTimeProvider;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Additional options that can be passed to tryLogin.\n */\nclass LoginOptions {\n constructor() {\n /**\n * Set this to true to disable the nonce\n * check which is used to avoid\n * replay attacks.\n * This flag should never be true in\n * production environments.\n */\n this.disableNonceCheck = false;\n /**\n * Normally, you want to clear your hash fragment after\n * the lib read the token(s) so that they are not displayed\n * anymore in the url. If not, set this to true. For code flow\n * this controls removing query string values.\n */\n this.preventClearHashAfterLogin = false;\n }\n}\n/**\n * Defines the logging interface the OAuthService uses\n * internally. Is compatible with the `console` object,\n * but you can provide your own implementation as well\n * through dependency injection.\n */\nclass OAuthLogger {}\n/**\n * Defines a simple storage that can be used for\n * storing the tokens at client side.\n * Is compatible to localStorage and sessionStorage,\n * but you can also create your own implementations.\n */\nclass OAuthStorage {}\nlet MemoryStorage = /*#__PURE__*/(() => {\n class MemoryStorage {\n constructor() {\n this.data = new Map();\n }\n getItem(key) {\n return this.data.get(key);\n }\n removeItem(key) {\n this.data.delete(key);\n }\n setItem(key, data) {\n this.data.set(key, data);\n }\n static {\n this.ɵfac = function MemoryStorage_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MemoryStorage)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: MemoryStorage,\n factory: MemoryStorage.ɵfac\n });\n }\n }\n return MemoryStorage;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Represents the received tokens, the received state\n * and the parsed claims from the id-token.\n */\nclass ReceivedTokens {}\nclass OAuthEvent {\n constructor(type) {\n this.type = type;\n }\n}\nclass OAuthSuccessEvent extends OAuthEvent {\n constructor(type, info = null) {\n super(type);\n this.info = info;\n }\n}\nclass OAuthInfoEvent extends OAuthEvent {\n constructor(type, info = null) {\n super(type);\n this.info = info;\n }\n}\nclass OAuthErrorEvent extends OAuthEvent {\n constructor(type, reason, params = null) {\n super(type);\n this.reason = reason;\n this.params = params;\n }\n}\n\n// see: https://developer.mozilla.org/en-US/docs/Web/API/WindowBase64/Base64_encoding_and_decoding#The_.22Unicode_Problem.22\nfunction b64DecodeUnicode(str) {\n const base64 = str.replace(/-/g, '+').replace(/_/g, '/');\n return decodeURIComponent(atob(base64).split('').map(function (c) {\n return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);\n }).join(''));\n}\nfunction base64UrlEncode(str) {\n const base64 = btoa(str);\n return base64.replace(/\\+/g, '-').replace(/\\//g, '_').replace(/=/g, '');\n}\nclass AuthConfig {\n constructor(json) {\n /**\n * The client's id as registered with the auth server\n */\n this.clientId = '';\n /**\n * The client's redirectUri as registered with the auth server\n */\n this.redirectUri = '';\n /**\n * An optional second redirectUri where the auth server\n * redirects the user to after logging out.\n */\n this.postLogoutRedirectUri = '';\n /**\n * Defines whether to use 'redirectUri' as a replacement\n * of 'postLogoutRedirectUri' if the latter is not set.\n */\n this.redirectUriAsPostLogoutRedirectUriFallback = true;\n /**\n * The auth server's endpoint that allows to log\n * the user in when using implicit flow.\n */\n this.loginUrl = '';\n /**\n * The requested scopes\n */\n this.scope = 'openid profile';\n this.resource = '';\n this.rngUrl = '';\n /**\n * Defines whether to use OpenId Connect during\n * implicit flow.\n */\n this.oidc = true;\n /**\n * Defines whether to request an access token during\n * implicit flow.\n */\n this.requestAccessToken = true;\n this.options = null;\n /**\n * The issuer's uri.\n */\n this.issuer = '';\n /**\n * The logout url.\n */\n this.logoutUrl = '';\n /**\n * Defines whether to clear the hash fragment after logging in.\n */\n this.clearHashAfterLogin = true;\n /**\n * Url of the token endpoint as defined by OpenId Connect and OAuth 2.\n */\n this.tokenEndpoint = null;\n /**\n * Url of the revocation endpoint as defined by OpenId Connect and OAuth 2.\n */\n this.revocationEndpoint = null;\n /**\n * Names of known parameters sent out in the TokenResponse. https://tools.ietf.org/html/rfc6749#section-5.1\n */\n this.customTokenParameters = [];\n /**\n * Url of the userinfo endpoint as defined by OpenId Connect.\n */\n this.userinfoEndpoint = null;\n this.responseType = '';\n /**\n * Defines whether additional debug information should\n * be shown at the console. Note that in certain browsers\n * the verbosity of the console needs to be explicitly set\n * to include Debug level messages.\n */\n this.showDebugInformation = false;\n /**\n * The redirect uri used when doing silent refresh.\n */\n this.silentRefreshRedirectUri = '';\n this.silentRefreshMessagePrefix = '';\n /**\n * Set this to true to display the iframe used for\n * silent refresh for debugging.\n */\n this.silentRefreshShowIFrame = false;\n /**\n * Timeout for silent refresh.\n * @internal\n * @deprecated use silentRefreshTimeout\n */\n this.siletRefreshTimeout = 1000 * 20;\n /**\n * Timeout for silent refresh.\n */\n this.silentRefreshTimeout = 1000 * 20;\n /**\n * Some auth servers don't allow using password flow\n * w/o a client secret while the standards do not\n * demand for it. In this case, you can set a password\n * here. As this password is exposed to the public\n * it does not bring additional security and is therefore\n * as good as using no password.\n */\n this.dummyClientSecret = '';\n /**\n * Defines whether https is required.\n * The default value is remoteOnly which only allows\n * http for localhost, while every other domains need\n * to be used with https.\n */\n this.requireHttps = 'remoteOnly';\n /**\n * Defines whether every url provided by the discovery\n * document has to start with the issuer's url.\n */\n this.strictDiscoveryDocumentValidation = true;\n /**\n * JSON Web Key Set (https://tools.ietf.org/html/rfc7517)\n * with keys used to validate received id_tokens.\n * This is taken out of the disovery document. Can be set manually too.\n */\n this.jwks = null;\n /**\n * Map with additional query parameter that are appended to\n * the request when initializing implicit flow.\n */\n this.customQueryParams = null;\n this.silentRefreshIFrameName = 'angular-oauth-oidc-silent-refresh-iframe';\n /**\n * Defines when the token_timeout event should be raised.\n * If you set this to the default value 0.75, the event\n * is triggered after 75% of the token's life time.\n */\n this.timeoutFactor = 0.75;\n /**\n * If true, the lib will try to check whether the user\n * is still logged in on a regular basis as described\n * in http://openid.net/specs/openid-connect-session-1_0.html#ChangeNotification\n */\n this.sessionChecksEnabled = false;\n /**\n * Interval in msec for checking the session\n * according to http://openid.net/specs/openid-connect-session-1_0.html#ChangeNotification\n */\n this.sessionCheckIntervall = 3 * 1000;\n /**\n * Url for the iframe used for session checks\n */\n this.sessionCheckIFrameUrl = null;\n /**\n * Name of the iframe to use for session checks\n */\n this.sessionCheckIFrameName = 'angular-oauth-oidc-check-session-iframe';\n /**\n * This property has been introduced to disable at_hash checks\n * and is indented for Identity Provider that does not deliver\n * an at_hash EVEN THOUGH its recommended by the OIDC specs.\n * Of course, when disabling these checks then we are bypassing\n * a security check which means we are more vulnerable.\n */\n this.disableAtHashCheck = false;\n /**\n * Defines wether to check the subject of a refreshed token after silent refresh.\n * Normally, it should be the same as before.\n */\n this.skipSubjectCheck = false;\n this.useIdTokenHintForSilentRefresh = false;\n /**\n * Defined whether to skip the validation of the issuer in the discovery document.\n * Normally, the discovey document's url starts with the url of the issuer.\n */\n this.skipIssuerCheck = false;\n /**\n * final state sent to issuer is built as follows:\n * state = nonce + nonceStateSeparator + additional state\n * Default separator is ';' (encoded %3B).\n * In rare cases, this character might be forbidden or inconvenient to use by the issuer so it can be customized.\n */\n this.nonceStateSeparator = ';';\n /**\n * Set this to true to use HTTP BASIC auth for AJAX calls\n */\n this.useHttpBasicAuth = false;\n /**\n * Decreases the Expiration time of tokens by this number of seconds\n */\n this.decreaseExpirationBySec = 0;\n /**\n * The interceptors waits this time span if there is no token\n */\n this.waitForTokenInMsec = 0;\n /**\n * Code Flow is by defauld used together with PKCI which is also higly recommented.\n * You can disbale it here by setting this flag to true.\n * https://tools.ietf.org/html/rfc7636#section-1.1\n */\n this.disablePKCE = false;\n /**\n * Set this to true to preserve the requested route including query parameters after code flow login.\n * This setting enables deep linking for the code flow.\n */\n this.preserveRequestedRoute = false;\n /**\n * Allows to disable the timer for the id_token used\n * for token refresh\n */\n this.disableIdTokenTimer = false;\n /**\n * Blocks other origins requesting a silent refresh\n */\n this.checkOrigin = false;\n /**\n * This property allows you to override the method that is used to open the login url,\n * allowing a way for implementations to specify their own method of routing to new\n * urls.\n */\n this.openUri = uri => {\n location.href = uri;\n };\n if (json) {\n Object.assign(this, json);\n }\n }\n}\n\n/**\n * This custom encoder allows charactes like +, % and / to be used in passwords\n */\nclass WebHttpUrlEncodingCodec {\n encodeKey(k) {\n return encodeURIComponent(k);\n }\n encodeValue(v) {\n return encodeURIComponent(v);\n }\n decodeKey(k) {\n return decodeURIComponent(k);\n }\n decodeValue(v) {\n return decodeURIComponent(v);\n }\n}\n\n/**\n * Interface for Handlers that are hooked in to\n * validate tokens.\n */\nclass ValidationHandler {}\n/**\n * This abstract implementation of ValidationHandler already implements\n * the method validateAtHash. However, to make use of it,\n * you have to override the method calcHash.\n */\nclass AbstractValidationHandler {\n /**\n * Validates the at_hash in an id_token against the received access_token.\n */\n async validateAtHash(params) {\n const hashAlg = this.inferHashAlgorithm(params.idTokenHeader);\n const tokenHash = await this.calcHash(params.accessToken, hashAlg); // sha256(accessToken, { asString: true });\n const leftMostHalf = tokenHash.substr(0, tokenHash.length / 2);\n const atHash = base64UrlEncode(leftMostHalf);\n const claimsAtHash = params.idTokenClaims['at_hash'].replace(/=/g, '');\n if (atHash !== claimsAtHash) {\n console.error('exptected at_hash: ' + atHash);\n console.error('actual at_hash: ' + claimsAtHash);\n }\n return atHash === claimsAtHash;\n }\n /**\n * Infers the name of the hash algorithm to use\n * from the alg field of an id_token.\n *\n * @param jwtHeader the id_token's parsed header\n */\n inferHashAlgorithm(jwtHeader) {\n const alg = jwtHeader['alg'];\n if (!alg.match(/^.S[0-9]{3}$/)) {\n throw new Error('Algorithm not supported: ' + alg);\n }\n return 'sha-' + alg.substr(2);\n }\n}\nlet UrlHelperService = /*#__PURE__*/(() => {\n class UrlHelperService {\n getHashFragmentParams(customHashFragment) {\n let hash = customHashFragment || window.location.hash;\n hash = decodeURIComponent(hash);\n if (hash.indexOf('#') !== 0) {\n return {};\n }\n const questionMarkPosition = hash.indexOf('?');\n if (questionMarkPosition > -1) {\n hash = hash.substr(questionMarkPosition + 1);\n } else {\n hash = hash.substr(1);\n }\n return this.parseQueryString(hash);\n }\n parseQueryString(queryString) {\n const data = {};\n let pair, separatorIndex, escapedKey, escapedValue, key, value;\n if (queryString === null) {\n return data;\n }\n const pairs = queryString.split('&');\n for (let i = 0; i < pairs.length; i++) {\n pair = pairs[i];\n separatorIndex = pair.indexOf('=');\n if (separatorIndex === -1) {\n escapedKey = pair;\n escapedValue = null;\n } else {\n escapedKey = pair.substr(0, separatorIndex);\n escapedValue = pair.substr(separatorIndex + 1);\n }\n key = decodeURIComponent(escapedKey);\n value = decodeURIComponent(escapedValue);\n if (key.substr(0, 1) === '/') {\n key = key.substr(1);\n }\n data[key] = value;\n }\n return data;\n }\n static {\n this.ɵfac = function UrlHelperService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || UrlHelperService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: UrlHelperService,\n factory: UrlHelperService.ɵfac\n });\n }\n }\n return UrlHelperService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// Credits: https://github.com/dchest/fast-sha256-js/tree/master/src\n// We add this lib directly b/c the published version of fast-sha256-js\n// is commonjs and hence leads to a warning about tree-shakability emitted\n// by the Angular CLI\n// SHA-256 (+ HMAC and PBKDF2) for JavaScript.\n//\n// Written in 2014-2016 by Dmitry Chestnykh.\n// Public domain, no warranty.\n//\n// Functions (accept and return Uint8Arrays):\n//\n// sha256(message) -> hash\n// sha256.hmac(key, message) -> mac\n// sha256.pbkdf2(password, salt, rounds, dkLen) -> dk\n//\n// Classes:\n//\n// new sha256.Hash()\n// new sha256.HMAC(key)\n//\nconst digestLength = 32;\nconst blockSize = 64;\n// SHA-256 constants\nconst K = new Uint32Array([0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da, 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070, 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3, 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2]);\nfunction hashBlocks(w, v, p, pos, len) {\n let a, b, c, d, e, f, g, h, u, i, j, t1, t2;\n while (len >= 64) {\n a = v[0];\n b = v[1];\n c = v[2];\n d = v[3];\n e = v[4];\n f = v[5];\n g = v[6];\n h = v[7];\n for (i = 0; i < 16; i++) {\n j = pos + i * 4;\n w[i] = (p[j] & 0xff) << 24 | (p[j + 1] & 0xff) << 16 | (p[j + 2] & 0xff) << 8 | p[j + 3] & 0xff;\n }\n for (i = 16; i < 64; i++) {\n u = w[i - 2];\n t1 = (u >>> 17 | u << 32 - 17) ^ (u >>> 19 | u << 32 - 19) ^ u >>> 10;\n u = w[i - 15];\n t2 = (u >>> 7 | u << 32 - 7) ^ (u >>> 18 | u << 32 - 18) ^ u >>> 3;\n w[i] = (t1 + w[i - 7] | 0) + (t2 + w[i - 16] | 0);\n }\n for (i = 0; i < 64; i++) {\n t1 = (((e >>> 6 | e << 32 - 6) ^ (e >>> 11 | e << 32 - 11) ^ (e >>> 25 | e << 32 - 25)) + (e & f ^ ~e & g) | 0) + (h + (K[i] + w[i] | 0) | 0) | 0;\n t2 = ((a >>> 2 | a << 32 - 2) ^ (a >>> 13 | a << 32 - 13) ^ (a >>> 22 | a << 32 - 22)) + (a & b ^ a & c ^ b & c) | 0;\n h = g;\n g = f;\n f = e;\n e = d + t1 | 0;\n d = c;\n c = b;\n b = a;\n a = t1 + t2 | 0;\n }\n v[0] += a;\n v[1] += b;\n v[2] += c;\n v[3] += d;\n v[4] += e;\n v[5] += f;\n v[6] += g;\n v[7] += h;\n pos += 64;\n len -= 64;\n }\n return pos;\n}\n// Hash implements SHA256 hash algorithm.\nclass Hash {\n constructor() {\n this.digestLength = digestLength;\n this.blockSize = blockSize;\n // Note: Int32Array is used instead of Uint32Array for performance reasons.\n this.state = new Int32Array(8); // hash state\n this.temp = new Int32Array(64); // temporary state\n this.buffer = new Uint8Array(128); // buffer for data to hash\n this.bufferLength = 0; // number of bytes in buffer\n this.bytesHashed = 0; // number of total bytes hashed\n this.finished = false; // indicates whether the hash was finalized\n this.reset();\n }\n // Resets hash state making it possible\n // to re-use this instance to hash other data.\n reset() {\n this.state[0] = 0x6a09e667;\n this.state[1] = 0xbb67ae85;\n this.state[2] = 0x3c6ef372;\n this.state[3] = 0xa54ff53a;\n this.state[4] = 0x510e527f;\n this.state[5] = 0x9b05688c;\n this.state[6] = 0x1f83d9ab;\n this.state[7] = 0x5be0cd19;\n this.bufferLength = 0;\n this.bytesHashed = 0;\n this.finished = false;\n return this;\n }\n // Cleans internal buffers and re-initializes hash state.\n clean() {\n for (let i = 0; i < this.buffer.length; i++) {\n this.buffer[i] = 0;\n }\n for (let i = 0; i < this.temp.length; i++) {\n this.temp[i] = 0;\n }\n this.reset();\n }\n // Updates hash state with the given data.\n //\n // Optionally, length of the data can be specified to hash\n // fewer bytes than data.length.\n //\n // Throws error when trying to update already finalized hash:\n // instance must be reset to use it again.\n update(data, dataLength = data.length) {\n if (this.finished) {\n throw new Error(\"SHA256: can't update because hash was finished.\");\n }\n let dataPos = 0;\n this.bytesHashed += dataLength;\n if (this.bufferLength > 0) {\n while (this.bufferLength < 64 && dataLength > 0) {\n this.buffer[this.bufferLength++] = data[dataPos++];\n dataLength--;\n }\n if (this.bufferLength === 64) {\n hashBlocks(this.temp, this.state, this.buffer, 0, 64);\n this.bufferLength = 0;\n }\n }\n if (dataLength >= 64) {\n dataPos = hashBlocks(this.temp, this.state, data, dataPos, dataLength);\n dataLength %= 64;\n }\n while (dataLength > 0) {\n this.buffer[this.bufferLength++] = data[dataPos++];\n dataLength--;\n }\n return this;\n }\n // Finalizes hash state and puts hash into out.\n //\n // If hash was already finalized, puts the same value.\n finish(out) {\n if (!this.finished) {\n const bytesHashed = this.bytesHashed;\n const left = this.bufferLength;\n const bitLenHi = bytesHashed / 0x20000000 | 0;\n const bitLenLo = bytesHashed << 3;\n const padLength = bytesHashed % 64 < 56 ? 64 : 128;\n this.buffer[left] = 0x80;\n for (let i = left + 1; i < padLength - 8; i++) {\n this.buffer[i] = 0;\n }\n this.buffer[padLength - 8] = bitLenHi >>> 24 & 0xff;\n this.buffer[padLength - 7] = bitLenHi >>> 16 & 0xff;\n this.buffer[padLength - 6] = bitLenHi >>> 8 & 0xff;\n this.buffer[padLength - 5] = bitLenHi >>> 0 & 0xff;\n this.buffer[padLength - 4] = bitLenLo >>> 24 & 0xff;\n this.buffer[padLength - 3] = bitLenLo >>> 16 & 0xff;\n this.buffer[padLength - 2] = bitLenLo >>> 8 & 0xff;\n this.buffer[padLength - 1] = bitLenLo >>> 0 & 0xff;\n hashBlocks(this.temp, this.state, this.buffer, 0, padLength);\n this.finished = true;\n }\n for (let i = 0; i < 8; i++) {\n out[i * 4 + 0] = this.state[i] >>> 24 & 0xff;\n out[i * 4 + 1] = this.state[i] >>> 16 & 0xff;\n out[i * 4 + 2] = this.state[i] >>> 8 & 0xff;\n out[i * 4 + 3] = this.state[i] >>> 0 & 0xff;\n }\n return this;\n }\n // Returns the final hash digest.\n digest() {\n const out = new Uint8Array(this.digestLength);\n this.finish(out);\n return out;\n }\n // Internal function for use in HMAC for optimization.\n _saveState(out) {\n for (let i = 0; i < this.state.length; i++) {\n out[i] = this.state[i];\n }\n }\n // Internal function for use in HMAC for optimization.\n _restoreState(from, bytesHashed) {\n for (let i = 0; i < this.state.length; i++) {\n this.state[i] = from[i];\n }\n this.bytesHashed = bytesHashed;\n this.finished = false;\n this.bufferLength = 0;\n }\n}\n// HMAC implements HMAC-SHA256 message authentication algorithm.\nclass HMAC {\n constructor(key) {\n this.inner = new Hash();\n this.outer = new Hash();\n this.blockSize = this.inner.blockSize;\n this.digestLength = this.inner.digestLength;\n const pad = new Uint8Array(this.blockSize);\n if (key.length > this.blockSize) {\n new Hash().update(key).finish(pad).clean();\n } else {\n for (let i = 0; i < key.length; i++) {\n pad[i] = key[i];\n }\n }\n for (let i = 0; i < pad.length; i++) {\n pad[i] ^= 0x36;\n }\n this.inner.update(pad);\n for (let i = 0; i < pad.length; i++) {\n pad[i] ^= 0x36 ^ 0x5c;\n }\n this.outer.update(pad);\n this.istate = new Uint32Array(8);\n this.ostate = new Uint32Array(8);\n this.inner._saveState(this.istate);\n this.outer._saveState(this.ostate);\n for (let i = 0; i < pad.length; i++) {\n pad[i] = 0;\n }\n }\n // Returns HMAC state to the state initialized with key\n // to make it possible to run HMAC over the other data with the same\n // key without creating a new instance.\n reset() {\n this.inner._restoreState(this.istate, this.inner.blockSize);\n this.outer._restoreState(this.ostate, this.outer.blockSize);\n return this;\n }\n // Cleans HMAC state.\n clean() {\n for (let i = 0; i < this.istate.length; i++) {\n this.ostate[i] = this.istate[i] = 0;\n }\n this.inner.clean();\n this.outer.clean();\n }\n // Updates state with provided data.\n update(data) {\n this.inner.update(data);\n return this;\n }\n // Finalizes HMAC and puts the result in out.\n finish(out) {\n if (this.outer.finished) {\n this.outer.finish(out);\n } else {\n this.inner.finish(out);\n this.outer.update(out, this.digestLength).finish(out);\n }\n return this;\n }\n // Returns message authentication code.\n digest() {\n const out = new Uint8Array(this.digestLength);\n this.finish(out);\n return out;\n }\n}\n// Returns SHA256 hash of data.\nfunction hash(data) {\n const h = new Hash().update(data);\n const digest = h.digest();\n h.clean();\n return digest;\n}\n// Returns HMAC-SHA256 of data under the key.\nfunction hmac(key, data) {\n const h = new HMAC(key).update(data);\n const digest = h.digest();\n h.clean();\n return digest;\n}\n// Fills hkdf buffer like this:\n// T(1) = HMAC-Hash(PRK, T(0) | info | 0x01)\nfunction fillBuffer(buffer, hmac, info, counter) {\n // Counter is a byte value: check if it overflowed.\n const num = counter[0];\n if (num === 0) {\n throw new Error('hkdf: cannot expand more');\n }\n // Prepare HMAC instance for new data with old key.\n hmac.reset();\n // Hash in previous output if it was generated\n // (i.e. counter is greater than 1).\n if (num > 1) {\n hmac.update(buffer);\n }\n // Hash in info if it exists.\n if (info) {\n hmac.update(info);\n }\n // Hash in the counter.\n hmac.update(counter);\n // Output result to buffer and clean HMAC instance.\n hmac.finish(buffer);\n // Increment counter inside typed array, this works properly.\n counter[0]++;\n}\nconst hkdfSalt = new Uint8Array(digestLength); // Filled with zeroes.\nfunction hkdf(key, salt = hkdfSalt, info, length = 32) {\n const counter = new Uint8Array([1]);\n // HKDF-Extract uses salt as HMAC key, and key as data.\n const okm = hmac(salt, key);\n // Initialize HMAC for expanding with extracted key.\n // Ensure no collisions with `hmac` function.\n const hmac_ = new HMAC(okm);\n // Allocate buffer.\n const buffer = new Uint8Array(hmac_.digestLength);\n let bufpos = buffer.length;\n const out = new Uint8Array(length);\n for (let i = 0; i < length; i++) {\n if (bufpos === buffer.length) {\n fillBuffer(buffer, hmac_, info, counter);\n bufpos = 0;\n }\n out[i] = buffer[bufpos++];\n }\n hmac_.clean();\n buffer.fill(0);\n counter.fill(0);\n return out;\n}\n// Derives a key from password and salt using PBKDF2-HMAC-SHA256\n// with the given number of iterations.\n//\n// The number of bytes returned is equal to dkLen.\n//\n// (For better security, avoid dkLen greater than hash length - 32 bytes).\nfunction pbkdf2(password, salt, iterations, dkLen) {\n const prf = new HMAC(password);\n const len = prf.digestLength;\n const ctr = new Uint8Array(4);\n const t = new Uint8Array(len);\n const u = new Uint8Array(len);\n const dk = new Uint8Array(dkLen);\n for (let i = 0; i * len < dkLen; i++) {\n const c = i + 1;\n ctr[0] = c >>> 24 & 0xff;\n ctr[1] = c >>> 16 & 0xff;\n ctr[2] = c >>> 8 & 0xff;\n ctr[3] = c >>> 0 & 0xff;\n prf.reset();\n prf.update(salt);\n prf.update(ctr);\n prf.finish(u);\n for (let j = 0; j < len; j++) {\n t[j] = u[j];\n }\n for (let j = 2; j <= iterations; j++) {\n prf.reset();\n prf.update(u).finish(u);\n for (let k = 0; k < len; k++) {\n t[k] ^= u[k];\n }\n }\n for (let j = 0; j < len && i * len + j < dkLen; j++) {\n dk[i * len + j] = t[j];\n }\n }\n for (let i = 0; i < len; i++) {\n t[i] = u[i] = 0;\n }\n for (let i = 0; i < 4; i++) {\n ctr[i] = 0;\n }\n prf.clean();\n return dk;\n}\n\n/**\n * Abstraction for crypto algorithms\n */\nclass HashHandler {}\nfunction decodeUTF8(s) {\n if (typeof s !== 'string') throw new TypeError('expected string');\n const d = s,\n b = new Uint8Array(d.length);\n for (let i = 0; i < d.length; i++) b[i] = d.charCodeAt(i);\n return b;\n}\nfunction encodeUTF8(arr) {\n const s = [];\n for (let i = 0; i < arr.length; i++) s.push(String.fromCharCode(arr[i]));\n return s.join('');\n}\nlet DefaultHashHandler = /*#__PURE__*/(() => {\n class DefaultHashHandler {\n async calcHash(valueToHash, algorithm) {\n // const encoder = new TextEncoder();\n // const hashArray = await window.crypto.subtle.digest(algorithm, data);\n // const data = encoder.encode(valueToHash);\n // const fhash = fsha256(valueToHash);\n const candHash = encodeUTF8(hash(decodeUTF8(valueToHash)));\n // const hashArray = (sha256 as any).array(valueToHash);\n // // const hashString = this.toHashString(hashArray);\n // const hashString = this.toHashString2(hashArray);\n // console.debug('hash orig - cand', candHash, hashString);\n // alert(1);\n return candHash;\n }\n toHashString2(byteArray) {\n let result = '';\n for (const e of byteArray) {\n result += String.fromCharCode(e);\n }\n return result;\n }\n toHashString(buffer) {\n const byteArray = new Uint8Array(buffer);\n let result = '';\n for (const e of byteArray) {\n result += String.fromCharCode(e);\n }\n return result;\n }\n static {\n this.ɵfac = function DefaultHashHandler_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DefaultHashHandler)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: DefaultHashHandler,\n factory: DefaultHashHandler.ɵfac\n });\n }\n }\n return DefaultHashHandler;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Service for logging in and logging out with\n * OIDC and OAuth2. Supports implicit flow and\n * password flow.\n */\nlet OAuthService = /*#__PURE__*/(() => {\n class OAuthService extends AuthConfig {\n constructor(ngZone, http, storage, tokenValidationHandler, config, urlHelper, logger, crypto, document, dateTimeService) {\n super();\n this.ngZone = ngZone;\n this.http = http;\n this.config = config;\n this.urlHelper = urlHelper;\n this.logger = logger;\n this.crypto = crypto;\n this.dateTimeService = dateTimeService;\n /**\n * @internal\n * Deprecated: use property events instead\n */\n this.discoveryDocumentLoaded = false;\n /**\n * The received (passed around) state, when logging\n * in with implicit flow.\n */\n this.state = '';\n this.eventsSubject = new Subject();\n this.discoveryDocumentLoadedSubject = new Subject();\n this.grantTypesSupported = [];\n this.inImplicitFlow = false;\n this.saveNoncesInLocalStorage = false;\n this.debug('angular-oauth2-oidc v10');\n // See https://github.com/manfredsteyer/angular-oauth2-oidc/issues/773 for why this is needed\n this.document = document;\n if (!config) {\n config = {};\n }\n this.discoveryDocumentLoaded$ = this.discoveryDocumentLoadedSubject.asObservable();\n this.events = this.eventsSubject.asObservable();\n if (tokenValidationHandler) {\n this.tokenValidationHandler = tokenValidationHandler;\n }\n if (config) {\n this.configure(config);\n }\n try {\n if (storage) {\n this.setStorage(storage);\n } else if (typeof sessionStorage !== 'undefined') {\n this.setStorage(sessionStorage);\n }\n } catch (e) {\n console.error('No OAuthStorage provided and cannot access default (sessionStorage).' + 'Consider providing a custom OAuthStorage implementation in your module.', e);\n }\n // in IE, sessionStorage does not always survive a redirect\n if (this.checkLocalStorageAccessable()) {\n const ua = window?.navigator?.userAgent;\n const msie = ua?.includes('MSIE ') || ua?.includes('Trident');\n if (msie) {\n this.saveNoncesInLocalStorage = true;\n }\n }\n this.setupRefreshTimer();\n }\n checkLocalStorageAccessable() {\n if (typeof window === 'undefined') return false;\n const test = 'test';\n try {\n if (typeof window['localStorage'] === 'undefined') return false;\n localStorage.setItem(test, test);\n localStorage.removeItem(test);\n return true;\n } catch (e) {\n return false;\n }\n }\n /**\n * Use this method to configure the service\n * @param config the configuration\n */\n configure(config) {\n // For the sake of downward compatibility with\n // original configuration API\n Object.assign(this, new AuthConfig(), config);\n this.config = Object.assign({}, new AuthConfig(), config);\n if (this.sessionChecksEnabled) {\n this.setupSessionCheck();\n }\n this.configChanged();\n }\n configChanged() {\n this.setupRefreshTimer();\n }\n restartSessionChecksIfStillLoggedIn() {\n if (this.hasValidIdToken()) {\n this.initSessionCheck();\n }\n }\n restartRefreshTimerIfStillLoggedIn() {\n this.setupExpirationTimers();\n }\n setupSessionCheck() {\n this.events.pipe(filter(e => e.type === 'token_received')).subscribe(() => {\n this.initSessionCheck();\n });\n }\n /**\n * Will setup up silent refreshing for when the token is\n * about to expire. When the user is logged out via this.logOut method, the\n * silent refreshing will pause and not refresh the tokens until the user is\n * logged back in via receiving a new token.\n * @param params Additional parameter to pass\n * @param listenTo Setup automatic refresh of a specific token type\n */\n setupAutomaticSilentRefresh(params = {}, listenTo, noPrompt = true) {\n let shouldRunSilentRefresh = true;\n this.clearAutomaticRefreshTimer();\n this.automaticRefreshSubscription = this.events.pipe(tap(e => {\n if (e.type === 'token_received') {\n shouldRunSilentRefresh = true;\n } else if (e.type === 'logout') {\n shouldRunSilentRefresh = false;\n }\n }), filter(e => e.type === 'token_expires' && (listenTo == null || listenTo === 'any' || e.info === listenTo)), debounceTime(1000)).subscribe(() => {\n if (shouldRunSilentRefresh) {\n // this.silentRefresh(params, noPrompt).catch(_ => {\n this.refreshInternal(params, noPrompt).catch(() => {\n this.debug('Automatic silent refresh did not work');\n });\n }\n });\n this.restartRefreshTimerIfStillLoggedIn();\n }\n refreshInternal(params, noPrompt) {\n if (!this.useSilentRefresh && this.responseType === 'code') {\n return this.refreshToken();\n } else {\n return this.silentRefresh(params, noPrompt);\n }\n }\n /**\n * Convenience method that first calls `loadDiscoveryDocument(...)` and\n * directly chains using the `then(...)` part of the promise to call\n * the `tryLogin(...)` method.\n *\n * @param options LoginOptions to pass through to `tryLogin(...)`\n */\n loadDiscoveryDocumentAndTryLogin(options = null) {\n return this.loadDiscoveryDocument().then(() => {\n return this.tryLogin(options);\n });\n }\n /**\n * Convenience method that first calls `loadDiscoveryDocumentAndTryLogin(...)`\n * and if then chains to `initLoginFlow()`, but only if there is no valid\n * IdToken or no valid AccessToken.\n *\n * @param options LoginOptions to pass through to `tryLogin(...)`\n */\n loadDiscoveryDocumentAndLogin(options = null) {\n options = options || {};\n return this.loadDiscoveryDocumentAndTryLogin(options).then(() => {\n if (!this.hasValidIdToken() || !this.hasValidAccessToken()) {\n const state = typeof options.state === 'string' ? options.state : '';\n this.initLoginFlow(state);\n return false;\n } else {\n return true;\n }\n });\n }\n debug(...args) {\n if (this.showDebugInformation) {\n this.logger.debug(...args);\n }\n }\n validateUrlFromDiscoveryDocument(url) {\n const errors = [];\n const httpsCheck = this.validateUrlForHttps(url);\n const issuerCheck = this.validateUrlAgainstIssuer(url);\n if (!httpsCheck) {\n errors.push('https for all urls required. Also for urls received by discovery.');\n }\n if (!issuerCheck) {\n errors.push('Every url in discovery document has to start with the issuer url.' + 'Also see property strictDiscoveryDocumentValidation.');\n }\n return errors;\n }\n validateUrlForHttps(url) {\n if (!url) {\n return true;\n }\n const lcUrl = url.toLowerCase();\n if (this.requireHttps === false) {\n return true;\n }\n if ((lcUrl.match(/^http:\\/\\/localhost($|[:/])/) || lcUrl.match(/^http:\\/\\/localhost($|[:/])/)) && this.requireHttps === 'remoteOnly') {\n return true;\n }\n return lcUrl.startsWith('https://');\n }\n assertUrlNotNullAndCorrectProtocol(url, description) {\n if (!url) {\n throw new Error(`'${description}' should not be null`);\n }\n if (!this.validateUrlForHttps(url)) {\n throw new Error(`'${description}' must use HTTPS (with TLS), or config value for property 'requireHttps' must be set to 'false' and allow HTTP (without TLS).`);\n }\n }\n validateUrlAgainstIssuer(url) {\n if (!this.strictDiscoveryDocumentValidation) {\n return true;\n }\n if (!url) {\n return true;\n }\n return url.toLowerCase().startsWith(this.issuer.toLowerCase());\n }\n setupRefreshTimer() {\n if (typeof window === 'undefined') {\n this.debug('timer not supported on this plattform');\n return;\n }\n if (this.hasValidIdToken() || this.hasValidAccessToken()) {\n this.clearAccessTokenTimer();\n this.clearIdTokenTimer();\n this.setupExpirationTimers();\n }\n if (this.tokenReceivedSubscription) this.tokenReceivedSubscription.unsubscribe();\n this.tokenReceivedSubscription = this.events.pipe(filter(e => e.type === 'token_received')).subscribe(() => {\n this.clearAccessTokenTimer();\n this.clearIdTokenTimer();\n this.setupExpirationTimers();\n });\n }\n setupExpirationTimers() {\n if (this.hasValidAccessToken()) {\n this.setupAccessTokenTimer();\n }\n if (!this.disableIdTokenTimer && this.hasValidIdToken()) {\n this.setupIdTokenTimer();\n }\n }\n setupAccessTokenTimer() {\n const expiration = this.getAccessTokenExpiration();\n const storedAt = this.getAccessTokenStoredAt();\n const timeout = this.calcTimeout(storedAt, expiration);\n this.ngZone.runOutsideAngular(() => {\n this.accessTokenTimeoutSubscription = of(new OAuthInfoEvent('token_expires', 'access_token')).pipe(delay(timeout)).subscribe(e => {\n this.ngZone.run(() => {\n this.eventsSubject.next(e);\n });\n });\n });\n }\n setupIdTokenTimer() {\n const expiration = this.getIdTokenExpiration();\n const storedAt = this.getIdTokenStoredAt();\n const timeout = this.calcTimeout(storedAt, expiration);\n this.ngZone.runOutsideAngular(() => {\n this.idTokenTimeoutSubscription = of(new OAuthInfoEvent('token_expires', 'id_token')).pipe(delay(timeout)).subscribe(e => {\n this.ngZone.run(() => {\n this.eventsSubject.next(e);\n });\n });\n });\n }\n /**\n * Stops timers for automatic refresh.\n * To restart it, call setupAutomaticSilentRefresh again.\n */\n stopAutomaticRefresh() {\n this.clearAccessTokenTimer();\n this.clearIdTokenTimer();\n this.clearAutomaticRefreshTimer();\n }\n clearAccessTokenTimer() {\n if (this.accessTokenTimeoutSubscription) {\n this.accessTokenTimeoutSubscription.unsubscribe();\n }\n }\n clearIdTokenTimer() {\n if (this.idTokenTimeoutSubscription) {\n this.idTokenTimeoutSubscription.unsubscribe();\n }\n }\n clearAutomaticRefreshTimer() {\n if (this.automaticRefreshSubscription) {\n this.automaticRefreshSubscription.unsubscribe();\n }\n }\n calcTimeout(storedAt, expiration) {\n const now = this.dateTimeService.now();\n const delta = (expiration - storedAt) * this.timeoutFactor - (now - storedAt);\n const duration = Math.max(0, delta);\n const maxTimeoutValue = 2147483647;\n return duration > maxTimeoutValue ? maxTimeoutValue : duration;\n }\n /**\n * DEPRECATED. Use a provider for OAuthStorage instead:\n *\n * { provide: OAuthStorage, useFactory: oAuthStorageFactory }\n * export function oAuthStorageFactory(): OAuthStorage { return localStorage; }\n * Sets a custom storage used to store the received\n * tokens on client side. By default, the browser's\n * sessionStorage is used.\n * @ignore\n *\n * @param storage\n */\n setStorage(storage) {\n this._storage = storage;\n this.configChanged();\n }\n /**\n * Loads the discovery document to configure most\n * properties of this service. The url of the discovery\n * document is infered from the issuer's url according\n * to the OpenId Connect spec. To use another url you\n * can pass it to to optional parameter fullUrl.\n *\n * @param fullUrl\n */\n loadDiscoveryDocument(fullUrl = null) {\n return new Promise((resolve, reject) => {\n if (!fullUrl) {\n fullUrl = this.issuer || '';\n if (!fullUrl.endsWith('/')) {\n fullUrl += '/';\n }\n fullUrl += '.well-known/openid-configuration';\n }\n if (!this.validateUrlForHttps(fullUrl)) {\n reject(\"issuer must use HTTPS (with TLS), or config value for property 'requireHttps' must be set to 'false' and allow HTTP (without TLS).\");\n return;\n }\n this.http.get(fullUrl).subscribe(doc => {\n if (!this.validateDiscoveryDocument(doc)) {\n this.eventsSubject.next(new OAuthErrorEvent('discovery_document_validation_error', null));\n reject('discovery_document_validation_error');\n return;\n }\n this.loginUrl = doc.authorization_endpoint;\n this.logoutUrl = doc.end_session_endpoint || this.logoutUrl;\n this.grantTypesSupported = doc.grant_types_supported;\n this.issuer = doc.issuer;\n this.tokenEndpoint = doc.token_endpoint;\n this.userinfoEndpoint = doc.userinfo_endpoint || this.userinfoEndpoint;\n this.jwksUri = doc.jwks_uri;\n this.sessionCheckIFrameUrl = doc.check_session_iframe || this.sessionCheckIFrameUrl;\n this.discoveryDocumentLoaded = true;\n this.discoveryDocumentLoadedSubject.next(doc);\n this.revocationEndpoint = doc.revocation_endpoint || this.revocationEndpoint;\n if (this.sessionChecksEnabled) {\n this.restartSessionChecksIfStillLoggedIn();\n }\n this.loadJwks().then(jwks => {\n const result = {\n discoveryDocument: doc,\n jwks: jwks\n };\n const event = new OAuthSuccessEvent('discovery_document_loaded', result);\n this.eventsSubject.next(event);\n resolve(event);\n return;\n }).catch(err => {\n this.eventsSubject.next(new OAuthErrorEvent('discovery_document_load_error', err));\n reject(err);\n return;\n });\n }, err => {\n this.logger.error('error loading discovery document', err);\n this.eventsSubject.next(new OAuthErrorEvent('discovery_document_load_error', err));\n reject(err);\n });\n });\n }\n loadJwks() {\n return new Promise((resolve, reject) => {\n if (this.jwksUri) {\n this.http.get(this.jwksUri).subscribe(jwks => {\n this.jwks = jwks;\n // this.eventsSubject.next(\n // new OAuthSuccessEvent('discovery_document_loaded')\n // );\n resolve(jwks);\n }, err => {\n this.logger.error('error loading jwks', err);\n this.eventsSubject.next(new OAuthErrorEvent('jwks_load_error', err));\n reject(err);\n });\n } else {\n resolve(null);\n }\n });\n }\n validateDiscoveryDocument(doc) {\n let errors;\n if (!this.skipIssuerCheck && doc.issuer !== this.issuer) {\n this.logger.error('invalid issuer in discovery document', 'expected: ' + this.issuer, 'current: ' + doc.issuer);\n return false;\n }\n errors = this.validateUrlFromDiscoveryDocument(doc.authorization_endpoint);\n if (errors.length > 0) {\n this.logger.error('error validating authorization_endpoint in discovery document', errors);\n return false;\n }\n errors = this.validateUrlFromDiscoveryDocument(doc.end_session_endpoint);\n if (errors.length > 0) {\n this.logger.error('error validating end_session_endpoint in discovery document', errors);\n return false;\n }\n errors = this.validateUrlFromDiscoveryDocument(doc.token_endpoint);\n if (errors.length > 0) {\n this.logger.error('error validating token_endpoint in discovery document', errors);\n }\n errors = this.validateUrlFromDiscoveryDocument(doc.revocation_endpoint);\n if (errors.length > 0) {\n this.logger.error('error validating revocation_endpoint in discovery document', errors);\n }\n errors = this.validateUrlFromDiscoveryDocument(doc.userinfo_endpoint);\n if (errors.length > 0) {\n this.logger.error('error validating userinfo_endpoint in discovery document', errors);\n return false;\n }\n errors = this.validateUrlFromDiscoveryDocument(doc.jwks_uri);\n if (errors.length > 0) {\n this.logger.error('error validating jwks_uri in discovery document', errors);\n return false;\n }\n if (this.sessionChecksEnabled && !doc.check_session_iframe) {\n this.logger.warn('sessionChecksEnabled is activated but discovery document' + ' does not contain a check_session_iframe field');\n }\n return true;\n }\n /**\n * Uses password flow to exchange userName and password for an\n * access_token. After receiving the access_token, this method\n * uses it to query the userinfo endpoint in order to get information\n * about the user in question.\n *\n * When using this, make sure that the property oidc is set to false.\n * Otherwise stricter validations take place that make this operation\n * fail.\n *\n * @param userName\n * @param password\n * @param headers Optional additional http-headers.\n */\n fetchTokenUsingPasswordFlowAndLoadUserProfile(userName, password, headers = new HttpHeaders()) {\n return this.fetchTokenUsingPasswordFlow(userName, password, headers).then(() => this.loadUserProfile());\n }\n /**\n * Loads the user profile by accessing the user info endpoint defined by OpenId Connect.\n *\n * When using this with OAuth2 password flow, make sure that the property oidc is set to false.\n * Otherwise stricter validations take place that make this operation fail.\n */\n loadUserProfile() {\n if (!this.hasValidAccessToken()) {\n throw new Error('Can not load User Profile without access_token');\n }\n if (!this.validateUrlForHttps(this.userinfoEndpoint)) {\n throw new Error(\"userinfoEndpoint must use HTTPS (with TLS), or config value for property 'requireHttps' must be set to 'false' and allow HTTP (without TLS).\");\n }\n return new Promise((resolve, reject) => {\n const headers = new HttpHeaders().set('Authorization', 'Bearer ' + this.getAccessToken());\n this.http.get(this.userinfoEndpoint, {\n headers,\n observe: 'response',\n responseType: 'text'\n }).subscribe(response => {\n this.debug('userinfo received', JSON.stringify(response));\n if (response.headers.get('content-type').startsWith('application/json')) {\n let info = JSON.parse(response.body);\n const existingClaims = this.getIdentityClaims() || {};\n if (!this.skipSubjectCheck) {\n if (this.oidc && (!existingClaims['sub'] || info.sub !== existingClaims['sub'])) {\n const err = 'if property oidc is true, the received user-id (sub) has to be the user-id ' + 'of the user that has logged in with oidc.\\n' + 'if you are not using oidc but just oauth2 password flow set oidc to false';\n reject(err);\n return;\n }\n }\n info = Object.assign({}, existingClaims, info);\n this._storage.setItem('id_token_claims_obj', JSON.stringify(info));\n this.eventsSubject.next(new OAuthSuccessEvent('user_profile_loaded'));\n resolve({\n info\n });\n } else {\n this.debug('userinfo is not JSON, treating it as JWE/JWS');\n this.eventsSubject.next(new OAuthSuccessEvent('user_profile_loaded'));\n resolve(JSON.parse(response.body));\n }\n }, err => {\n this.logger.error('error loading user info', err);\n this.eventsSubject.next(new OAuthErrorEvent('user_profile_load_error', err));\n reject(err);\n });\n });\n }\n /**\n * Uses password flow to exchange userName and password for an access_token.\n * @param userName\n * @param password\n * @param headers Optional additional http-headers.\n */\n fetchTokenUsingPasswordFlow(userName, password, headers = new HttpHeaders()) {\n const parameters = {\n username: userName,\n password: password\n };\n return this.fetchTokenUsingGrant('password', parameters, headers);\n }\n /**\n * Uses a custom grant type to retrieve tokens.\n * @param grantType Grant type.\n * @param parameters Parameters to pass.\n * @param headers Optional additional HTTP headers.\n */\n fetchTokenUsingGrant(grantType, parameters, headers = new HttpHeaders()) {\n this.assertUrlNotNullAndCorrectProtocol(this.tokenEndpoint, 'tokenEndpoint');\n /**\n * A `HttpParameterCodec` that uses `encodeURIComponent` and `decodeURIComponent` to\n * serialize and parse URL parameter keys and values.\n *\n * @stable\n */\n let params = new HttpParams({\n encoder: new WebHttpUrlEncodingCodec()\n }).set('grant_type', grantType).set('scope', this.scope);\n if (this.useHttpBasicAuth) {\n const header = btoa(`${this.clientId}:${this.dummyClientSecret}`);\n headers = headers.set('Authorization', 'Basic ' + header);\n }\n if (!this.useHttpBasicAuth) {\n params = params.set('client_id', this.clientId);\n }\n if (!this.useHttpBasicAuth && this.dummyClientSecret) {\n params = params.set('client_secret', this.dummyClientSecret);\n }\n if (this.customQueryParams) {\n for (const key of Object.getOwnPropertyNames(this.customQueryParams)) {\n params = params.set(key, this.customQueryParams[key]);\n }\n }\n // set explicit parameters last, to allow overwriting\n for (const key of Object.keys(parameters)) {\n params = params.set(key, parameters[key]);\n }\n headers = headers.set('Content-Type', 'application/x-www-form-urlencoded');\n return new Promise((resolve, reject) => {\n this.http.post(this.tokenEndpoint, params, {\n headers\n }).subscribe(tokenResponse => {\n this.debug('tokenResponse', tokenResponse);\n this.storeAccessTokenResponse(tokenResponse.access_token, tokenResponse.refresh_token, tokenResponse.expires_in || this.fallbackAccessTokenExpirationTimeInSec, tokenResponse.scope, this.extractRecognizedCustomParameters(tokenResponse));\n if (this.oidc && tokenResponse.id_token) {\n this.processIdToken(tokenResponse.id_token, tokenResponse.access_token).then(result => {\n this.storeIdToken(result);\n resolve(tokenResponse);\n });\n }\n this.eventsSubject.next(new OAuthSuccessEvent('token_received'));\n resolve(tokenResponse);\n }, err => {\n this.logger.error('Error performing ${grantType} flow', err);\n this.eventsSubject.next(new OAuthErrorEvent('token_error', err));\n reject(err);\n });\n });\n }\n /**\n * Refreshes the token using a refresh_token.\n * This does not work for implicit flow, b/c\n * there is no refresh_token in this flow.\n * A solution for this is provided by the\n * method silentRefresh.\n */\n refreshToken() {\n this.assertUrlNotNullAndCorrectProtocol(this.tokenEndpoint, 'tokenEndpoint');\n return new Promise((resolve, reject) => {\n let params = new HttpParams({\n encoder: new WebHttpUrlEncodingCodec()\n }).set('grant_type', 'refresh_token').set('scope', this.scope).set('refresh_token', this._storage.getItem('refresh_token'));\n let headers = new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded');\n if (this.useHttpBasicAuth) {\n const header = btoa(`${this.clientId}:${this.dummyClientSecret}`);\n headers = headers.set('Authorization', 'Basic ' + header);\n }\n if (!this.useHttpBasicAuth) {\n params = params.set('client_id', this.clientId);\n }\n if (!this.useHttpBasicAuth && this.dummyClientSecret) {\n params = params.set('client_secret', this.dummyClientSecret);\n }\n if (this.customQueryParams) {\n for (const key of Object.getOwnPropertyNames(this.customQueryParams)) {\n params = params.set(key, this.customQueryParams[key]);\n }\n }\n this.http.post(this.tokenEndpoint, params, {\n headers\n }).pipe(switchMap(tokenResponse => {\n if (this.oidc && tokenResponse.id_token) {\n return from(this.processIdToken(tokenResponse.id_token, tokenResponse.access_token, true)).pipe(tap(result => this.storeIdToken(result)), map(() => tokenResponse));\n } else {\n return of(tokenResponse);\n }\n })).subscribe(tokenResponse => {\n this.debug('refresh tokenResponse', tokenResponse);\n this.storeAccessTokenResponse(tokenResponse.access_token, tokenResponse.refresh_token, tokenResponse.expires_in || this.fallbackAccessTokenExpirationTimeInSec, tokenResponse.scope, this.extractRecognizedCustomParameters(tokenResponse));\n this.eventsSubject.next(new OAuthSuccessEvent('token_received'));\n this.eventsSubject.next(new OAuthSuccessEvent('token_refreshed'));\n resolve(tokenResponse);\n }, err => {\n this.logger.error('Error refreshing token', err);\n this.eventsSubject.next(new OAuthErrorEvent('token_refresh_error', err));\n reject(err);\n });\n });\n }\n removeSilentRefreshEventListener() {\n if (this.silentRefreshPostMessageEventListener) {\n window.removeEventListener('message', this.silentRefreshPostMessageEventListener);\n this.silentRefreshPostMessageEventListener = null;\n }\n }\n setupSilentRefreshEventListener() {\n this.removeSilentRefreshEventListener();\n this.silentRefreshPostMessageEventListener = e => {\n const message = this.processMessageEventMessage(e);\n if (this.checkOrigin && e.origin !== location.origin) {\n console.error('wrong origin requested silent refresh!');\n }\n this.tryLogin({\n customHashFragment: message,\n preventClearHashAfterLogin: true,\n customRedirectUri: this.silentRefreshRedirectUri || this.redirectUri\n }).catch(err => this.debug('tryLogin during silent refresh failed', err));\n };\n window.addEventListener('message', this.silentRefreshPostMessageEventListener);\n }\n /**\n * Performs a silent refresh for implicit flow.\n * Use this method to get new tokens when/before\n * the existing tokens expire.\n */\n silentRefresh(params = {}, noPrompt = true) {\n const claims = this.getIdentityClaims() || {};\n if (this.useIdTokenHintForSilentRefresh && this.hasValidIdToken()) {\n params['id_token_hint'] = this.getIdToken();\n }\n if (!this.validateUrlForHttps(this.loginUrl)) {\n throw new Error(\"loginUrl must use HTTPS (with TLS), or config value for property 'requireHttps' must be set to 'false' and allow HTTP (without TLS).\");\n }\n if (typeof this.document === 'undefined') {\n throw new Error('silent refresh is not supported on this platform');\n }\n const existingIframe = this.document.getElementById(this.silentRefreshIFrameName);\n if (existingIframe) {\n this.document.body.removeChild(existingIframe);\n }\n this.silentRefreshSubject = claims['sub'];\n const iframe = this.document.createElement('iframe');\n iframe.id = this.silentRefreshIFrameName;\n this.setupSilentRefreshEventListener();\n const redirectUri = this.silentRefreshRedirectUri || this.redirectUri;\n this.createLoginUrl(null, null, redirectUri, noPrompt, params).then(url => {\n iframe.setAttribute('src', url);\n if (!this.silentRefreshShowIFrame) {\n iframe.style['display'] = 'none';\n }\n this.document.body.appendChild(iframe);\n });\n const errors = this.events.pipe(filter(e => e instanceof OAuthErrorEvent), first());\n const success = this.events.pipe(filter(e => e.type === 'token_received'), first());\n const timeout = of(new OAuthErrorEvent('silent_refresh_timeout', null)).pipe(delay(this.silentRefreshTimeout));\n return race([errors, success, timeout]).pipe(map(e => {\n if (e instanceof OAuthErrorEvent) {\n if (e.type === 'silent_refresh_timeout') {\n this.eventsSubject.next(e);\n } else {\n e = new OAuthErrorEvent('silent_refresh_error', e);\n this.eventsSubject.next(e);\n }\n throw e;\n } else if (e.type === 'token_received') {\n e = new OAuthSuccessEvent('silently_refreshed');\n this.eventsSubject.next(e);\n }\n return e;\n })).toPromise();\n }\n /**\n * This method exists for backwards compatibility.\n * {@link OAuthService#initLoginFlowInPopup} handles both code\n * and implicit flows.\n */\n initImplicitFlowInPopup(options) {\n return this.initLoginFlowInPopup(options);\n }\n initLoginFlowInPopup(options) {\n options = options || {};\n return this.createLoginUrl(null, null, this.silentRefreshRedirectUri, false, {\n display: 'popup'\n }).then(url => {\n return new Promise((resolve, reject) => {\n /**\n * Error handling section\n */\n const checkForPopupClosedInterval = 500;\n let windowRef = null;\n // If we got no window reference we open a window\n // else we are using the window already opened\n if (!options.windowRef) {\n windowRef = window.open(url, 'ngx-oauth2-oidc-login', this.calculatePopupFeatures(options));\n } else if (options.windowRef && !options.windowRef.closed) {\n windowRef = options.windowRef;\n windowRef.location.href = url;\n }\n let checkForPopupClosedTimer;\n const tryLogin = hash => {\n this.tryLogin({\n customHashFragment: hash,\n preventClearHashAfterLogin: true,\n customRedirectUri: this.silentRefreshRedirectUri\n }).then(() => {\n cleanup();\n resolve(true);\n }, err => {\n cleanup();\n reject(err);\n });\n };\n const checkForPopupClosed = () => {\n if (!windowRef || windowRef.closed) {\n cleanup();\n reject(new OAuthErrorEvent('popup_closed', {}));\n }\n };\n if (!windowRef) {\n reject(new OAuthErrorEvent('popup_blocked', {}));\n } else {\n checkForPopupClosedTimer = window.setInterval(checkForPopupClosed, checkForPopupClosedInterval);\n }\n const cleanup = () => {\n window.clearInterval(checkForPopupClosedTimer);\n window.removeEventListener('storage', storageListener);\n window.removeEventListener('message', listener);\n if (windowRef !== null) {\n windowRef.close();\n }\n windowRef = null;\n };\n const listener = e => {\n const message = this.processMessageEventMessage(e);\n if (message && message !== null) {\n window.removeEventListener('storage', storageListener);\n tryLogin(message);\n } else {\n console.log('false event firing');\n }\n };\n const storageListener = event => {\n if (event.key === 'auth_hash') {\n window.removeEventListener('message', listener);\n tryLogin(event.newValue);\n }\n };\n window.addEventListener('message', listener);\n window.addEventListener('storage', storageListener);\n });\n });\n }\n calculatePopupFeatures(options) {\n // Specify an static height and width and calculate centered position\n const height = options.height || 470;\n const width = options.width || 500;\n const left = window.screenLeft + (window.outerWidth - width) / 2;\n const top = window.screenTop + (window.outerHeight - height) / 2;\n return `location=no,toolbar=no,width=${width},height=${height},top=${top},left=${left}`;\n }\n processMessageEventMessage(e) {\n let expectedPrefix = '#';\n if (this.silentRefreshMessagePrefix) {\n expectedPrefix += this.silentRefreshMessagePrefix;\n }\n if (!e || !e.data || typeof e.data !== 'string') {\n return;\n }\n const prefixedMessage = e.data;\n if (!prefixedMessage.startsWith(expectedPrefix)) {\n return;\n }\n return '#' + prefixedMessage.substr(expectedPrefix.length);\n }\n canPerformSessionCheck() {\n if (!this.sessionChecksEnabled) {\n return false;\n }\n if (!this.sessionCheckIFrameUrl) {\n console.warn('sessionChecksEnabled is activated but there is no sessionCheckIFrameUrl');\n return false;\n }\n const sessionState = this.getSessionState();\n if (!sessionState) {\n console.warn('sessionChecksEnabled is activated but there is no session_state');\n return false;\n }\n if (typeof this.document === 'undefined') {\n return false;\n }\n return true;\n }\n setupSessionCheckEventListener() {\n this.removeSessionCheckEventListener();\n this.sessionCheckEventListener = e => {\n const origin = e.origin.toLowerCase();\n const issuer = this.issuer.toLowerCase();\n this.debug('sessionCheckEventListener');\n if (!issuer.startsWith(origin)) {\n this.debug('sessionCheckEventListener', 'wrong origin', origin, 'expected', issuer, 'event', e);\n return;\n }\n // only run in Angular zone if it is 'changed' or 'error'\n switch (e.data) {\n case 'unchanged':\n this.ngZone.run(() => {\n this.handleSessionUnchanged();\n });\n break;\n case 'changed':\n this.ngZone.run(() => {\n this.handleSessionChange();\n });\n break;\n case 'error':\n this.ngZone.run(() => {\n this.handleSessionError();\n });\n break;\n }\n this.debug('got info from session check inframe', e);\n };\n // prevent Angular from refreshing the view on every message (runs in intervals)\n this.ngZone.runOutsideAngular(() => {\n window.addEventListener('message', this.sessionCheckEventListener);\n });\n }\n handleSessionUnchanged() {\n this.debug('session check', 'session unchanged');\n this.eventsSubject.next(new OAuthInfoEvent('session_unchanged'));\n }\n handleSessionChange() {\n this.eventsSubject.next(new OAuthInfoEvent('session_changed'));\n this.stopSessionCheckTimer();\n if (!this.useSilentRefresh && this.responseType === 'code') {\n this.refreshToken().then(() => {\n this.debug('token refresh after session change worked');\n }).catch(() => {\n this.debug('token refresh did not work after session changed');\n this.eventsSubject.next(new OAuthInfoEvent('session_terminated'));\n this.logOut(true);\n });\n } else if (this.silentRefreshRedirectUri) {\n this.silentRefresh().catch(() => this.debug('silent refresh failed after session changed'));\n this.waitForSilentRefreshAfterSessionChange();\n } else {\n this.eventsSubject.next(new OAuthInfoEvent('session_terminated'));\n this.logOut(true);\n }\n }\n waitForSilentRefreshAfterSessionChange() {\n this.events.pipe(filter(e => e.type === 'silently_refreshed' || e.type === 'silent_refresh_timeout' || e.type === 'silent_refresh_error'), first()).subscribe(e => {\n if (e.type !== 'silently_refreshed') {\n this.debug('silent refresh did not work after session changed');\n this.eventsSubject.next(new OAuthInfoEvent('session_terminated'));\n this.logOut(true);\n }\n });\n }\n handleSessionError() {\n this.stopSessionCheckTimer();\n this.eventsSubject.next(new OAuthInfoEvent('session_error'));\n }\n removeSessionCheckEventListener() {\n if (this.sessionCheckEventListener) {\n window.removeEventListener('message', this.sessionCheckEventListener);\n this.sessionCheckEventListener = null;\n }\n }\n initSessionCheck() {\n if (!this.canPerformSessionCheck()) {\n return;\n }\n const existingIframe = this.document.getElementById(this.sessionCheckIFrameName);\n if (existingIframe) {\n this.document.body.removeChild(existingIframe);\n }\n const iframe = this.document.createElement('iframe');\n iframe.id = this.sessionCheckIFrameName;\n this.setupSessionCheckEventListener();\n const url = this.sessionCheckIFrameUrl;\n iframe.setAttribute('src', url);\n iframe.style.display = 'none';\n this.document.body.appendChild(iframe);\n this.startSessionCheckTimer();\n }\n startSessionCheckTimer() {\n this.stopSessionCheckTimer();\n this.ngZone.runOutsideAngular(() => {\n this.sessionCheckTimer = setInterval(this.checkSession.bind(this), this.sessionCheckIntervall);\n });\n }\n stopSessionCheckTimer() {\n if (this.sessionCheckTimer) {\n clearInterval(this.sessionCheckTimer);\n this.sessionCheckTimer = null;\n }\n }\n checkSession() {\n const iframe = this.document.getElementById(this.sessionCheckIFrameName);\n if (!iframe) {\n this.logger.warn('checkSession did not find iframe', this.sessionCheckIFrameName);\n }\n const sessionState = this.getSessionState();\n if (!sessionState) {\n this.stopSessionCheckTimer();\n }\n const message = this.clientId + ' ' + sessionState;\n iframe.contentWindow.postMessage(message, this.issuer);\n }\n async createLoginUrl(state = '', loginHint = '', customRedirectUri = '', noPrompt = false, params = {}) {\n const that = this; // eslint-disable-line @typescript-eslint/no-this-alias\n let redirectUri;\n if (customRedirectUri) {\n redirectUri = customRedirectUri;\n } else {\n redirectUri = this.redirectUri;\n }\n const nonce = await this.createAndSaveNonce();\n if (state) {\n state = nonce + this.config.nonceStateSeparator + encodeURIComponent(state);\n } else {\n state = nonce;\n }\n if (!this.requestAccessToken && !this.oidc) {\n throw new Error('Either requestAccessToken or oidc or both must be true');\n }\n if (this.config.responseType) {\n this.responseType = this.config.responseType;\n } else {\n if (this.oidc && this.requestAccessToken) {\n this.responseType = 'id_token token';\n } else if (this.oidc && !this.requestAccessToken) {\n this.responseType = 'id_token';\n } else {\n this.responseType = 'token';\n }\n }\n const seperationChar = that.loginUrl.indexOf('?') > -1 ? '&' : '?';\n let scope = that.scope;\n if (this.oidc && !scope.match(/(^|\\s)openid($|\\s)/)) {\n scope = 'openid ' + scope;\n }\n let url = that.loginUrl + seperationChar + 'response_type=' + encodeURIComponent(that.responseType) + '&client_id=' + encodeURIComponent(that.clientId) + '&state=' + encodeURIComponent(state) + '&redirect_uri=' + encodeURIComponent(redirectUri) + '&scope=' + encodeURIComponent(scope);\n if (this.responseType.includes('code') && !this.disablePKCE) {\n const [challenge, verifier] = await this.createChallangeVerifierPairForPKCE();\n if (this.saveNoncesInLocalStorage && typeof window['localStorage'] !== 'undefined') {\n localStorage.setItem('PKCE_verifier', verifier);\n } else {\n this._storage.setItem('PKCE_verifier', verifier);\n }\n url += '&code_challenge=' + challenge;\n url += '&code_challenge_method=S256';\n }\n if (loginHint) {\n url += '&login_hint=' + encodeURIComponent(loginHint);\n }\n if (that.resource) {\n url += '&resource=' + encodeURIComponent(that.resource);\n }\n if (that.oidc) {\n url += '&nonce=' + encodeURIComponent(nonce);\n }\n if (noPrompt) {\n url += '&prompt=none';\n }\n for (const key of Object.keys(params)) {\n url += '&' + encodeURIComponent(key) + '=' + encodeURIComponent(params[key]);\n }\n if (this.customQueryParams) {\n for (const key of Object.getOwnPropertyNames(this.customQueryParams)) {\n url += '&' + key + '=' + encodeURIComponent(this.customQueryParams[key]);\n }\n }\n return url;\n }\n initImplicitFlowInternal(additionalState = '', params = '') {\n if (this.inImplicitFlow) {\n return;\n }\n this.inImplicitFlow = true;\n if (!this.validateUrlForHttps(this.loginUrl)) {\n throw new Error(\"loginUrl must use HTTPS (with TLS), or config value for property 'requireHttps' must be set to 'false' and allow HTTP (without TLS).\");\n }\n let addParams = {};\n let loginHint = null;\n if (typeof params === 'string') {\n loginHint = params;\n } else if (typeof params === 'object') {\n addParams = params;\n }\n this.createLoginUrl(additionalState, loginHint, null, false, addParams).then(this.config.openUri).catch(error => {\n console.error('Error in initImplicitFlow', error);\n this.inImplicitFlow = false;\n });\n }\n /**\n * Starts the implicit flow and redirects to user to\n * the auth servers' login url.\n *\n * @param additionalState Optional state that is passed around.\n * You'll find this state in the property `state` after `tryLogin` logged in the user.\n * @param params Hash with additional parameter. If it is a string, it is used for the\n * parameter loginHint (for the sake of compatibility with former versions)\n */\n initImplicitFlow(additionalState = '', params = '') {\n if (this.loginUrl !== '') {\n this.initImplicitFlowInternal(additionalState, params);\n } else {\n this.events.pipe(filter(e => e.type === 'discovery_document_loaded')).subscribe(() => this.initImplicitFlowInternal(additionalState, params));\n }\n }\n /**\n * Reset current implicit flow\n *\n * @description This method allows resetting the current implict flow in order to be initialized again.\n */\n resetImplicitFlow() {\n this.inImplicitFlow = false;\n }\n callOnTokenReceivedIfExists(options) {\n const that = this; // eslint-disable-line @typescript-eslint/no-this-alias\n if (options.onTokenReceived) {\n const tokenParams = {\n idClaims: that.getIdentityClaims(),\n idToken: that.getIdToken(),\n accessToken: that.getAccessToken(),\n state: that.state\n };\n options.onTokenReceived(tokenParams);\n }\n }\n storeAccessTokenResponse(accessToken, refreshToken, expiresIn, grantedScopes, customParameters) {\n this._storage.setItem('access_token', accessToken);\n if (grantedScopes && !Array.isArray(grantedScopes)) {\n this._storage.setItem('granted_scopes', JSON.stringify(grantedScopes.split(' ')));\n } else if (grantedScopes && Array.isArray(grantedScopes)) {\n this._storage.setItem('granted_scopes', JSON.stringify(grantedScopes));\n }\n this._storage.setItem('access_token_stored_at', '' + this.dateTimeService.now());\n if (expiresIn) {\n const expiresInMilliSeconds = expiresIn * 1000;\n const now = this.dateTimeService.new();\n const expiresAt = now.getTime() + expiresInMilliSeconds;\n this._storage.setItem('expires_at', '' + expiresAt);\n }\n if (refreshToken) {\n this._storage.setItem('refresh_token', refreshToken);\n }\n if (customParameters) {\n customParameters.forEach((value, key) => {\n this._storage.setItem(key, value);\n });\n }\n }\n /**\n * Delegates to tryLoginImplicitFlow for the sake of competability\n * @param options Optional options.\n */\n tryLogin(options = null) {\n if (this.config.responseType === 'code') {\n return this.tryLoginCodeFlow(options).then(() => true);\n } else {\n return this.tryLoginImplicitFlow(options);\n }\n }\n parseQueryString(queryString) {\n if (!queryString || queryString.length === 0) {\n return {};\n }\n if (queryString.charAt(0) === '?') {\n queryString = queryString.substr(1);\n }\n return this.urlHelper.parseQueryString(queryString);\n }\n async tryLoginCodeFlow(options = null) {\n options = options || {};\n const querySource = options.customHashFragment ? options.customHashFragment.substring(1) : window.location.search;\n const parts = this.getCodePartsFromUrl(querySource);\n const code = parts['code'];\n const state = parts['state'];\n const sessionState = parts['session_state'];\n if (!options.preventClearHashAfterLogin) {\n const href = location.origin + location.pathname + location.search.replace(/code=[^&$]*/, '').replace(/scope=[^&$]*/, '').replace(/state=[^&$]*/, '').replace(/session_state=[^&$]*/, '').replace(/^\\?&/, '?').replace(/&$/, '').replace(/^\\?$/, '').replace(/&+/g, '&').replace(/\\?&/, '?').replace(/\\?$/, '') + location.hash;\n history.replaceState(null, window.name, href);\n }\n const [nonceInState, userState] = this.parseState(state);\n this.state = userState;\n if (parts['error']) {\n this.debug('error trying to login');\n this.handleLoginError(options, parts);\n const err = new OAuthErrorEvent('code_error', {}, parts);\n this.eventsSubject.next(err);\n return Promise.reject(err);\n }\n if (!options.disableNonceCheck) {\n if (!nonceInState) {\n this.saveRequestedRoute();\n return Promise.resolve();\n }\n if (!options.disableOAuth2StateCheck) {\n const success = this.validateNonce(nonceInState);\n if (!success) {\n const event = new OAuthErrorEvent('invalid_nonce_in_state', null);\n this.eventsSubject.next(event);\n return Promise.reject(event);\n }\n }\n }\n this.storeSessionState(sessionState);\n if (code) {\n await this.getTokenFromCode(code, options);\n this.restoreRequestedRoute();\n return Promise.resolve();\n } else {\n return Promise.resolve();\n }\n }\n saveRequestedRoute() {\n if (this.config.preserveRequestedRoute) {\n this._storage.setItem('requested_route', window.location.pathname + window.location.search);\n }\n }\n restoreRequestedRoute() {\n const requestedRoute = this._storage.getItem('requested_route');\n if (requestedRoute) {\n history.replaceState(null, '', window.location.origin + requestedRoute);\n }\n }\n /**\n * Retrieve the returned auth code from the redirect uri that has been called.\n * If required also check hash, as we could use hash location strategy.\n */\n getCodePartsFromUrl(queryString) {\n if (!queryString || queryString.length === 0) {\n return this.urlHelper.getHashFragmentParams();\n }\n // normalize query string\n if (queryString.charAt(0) === '?') {\n queryString = queryString.substr(1);\n }\n return this.urlHelper.parseQueryString(queryString);\n }\n /**\n * Get token using an intermediate code. Works for the Authorization Code flow.\n */\n getTokenFromCode(code, options) {\n let params = new HttpParams({\n encoder: new WebHttpUrlEncodingCodec()\n }).set('grant_type', 'authorization_code').set('code', code).set('redirect_uri', options.customRedirectUri || this.redirectUri);\n if (!this.disablePKCE) {\n let PKCEVerifier;\n if (this.saveNoncesInLocalStorage && typeof window['localStorage'] !== 'undefined') {\n PKCEVerifier = localStorage.getItem('PKCE_verifier');\n } else {\n PKCEVerifier = this._storage.getItem('PKCE_verifier');\n }\n if (!PKCEVerifier) {\n console.warn('No PKCE verifier found in oauth storage!');\n } else {\n params = params.set('code_verifier', PKCEVerifier);\n }\n }\n return this.fetchAndProcessToken(params, options);\n }\n fetchAndProcessToken(params, options) {\n options = options || {};\n this.assertUrlNotNullAndCorrectProtocol(this.tokenEndpoint, 'tokenEndpoint');\n let headers = new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded');\n if (this.useHttpBasicAuth) {\n const header = btoa(`${this.clientId}:${this.dummyClientSecret}`);\n headers = headers.set('Authorization', 'Basic ' + header);\n }\n if (!this.useHttpBasicAuth) {\n params = params.set('client_id', this.clientId);\n }\n if (!this.useHttpBasicAuth && this.dummyClientSecret) {\n params = params.set('client_secret', this.dummyClientSecret);\n }\n return new Promise((resolve, reject) => {\n if (this.customQueryParams) {\n for (const key of Object.getOwnPropertyNames(this.customQueryParams)) {\n params = params.set(key, this.customQueryParams[key]);\n }\n }\n this.http.post(this.tokenEndpoint, params, {\n headers\n }).subscribe(tokenResponse => {\n this.debug('refresh tokenResponse', tokenResponse);\n this.storeAccessTokenResponse(tokenResponse.access_token, tokenResponse.refresh_token, tokenResponse.expires_in || this.fallbackAccessTokenExpirationTimeInSec, tokenResponse.scope, this.extractRecognizedCustomParameters(tokenResponse));\n if (this.oidc && tokenResponse.id_token) {\n this.processIdToken(tokenResponse.id_token, tokenResponse.access_token, options.disableNonceCheck).then(result => {\n this.storeIdToken(result);\n this.eventsSubject.next(new OAuthSuccessEvent('token_received'));\n this.eventsSubject.next(new OAuthSuccessEvent('token_refreshed'));\n resolve(tokenResponse);\n }).catch(reason => {\n this.eventsSubject.next(new OAuthErrorEvent('token_validation_error', reason));\n console.error('Error validating tokens');\n console.error(reason);\n reject(reason);\n });\n } else {\n this.eventsSubject.next(new OAuthSuccessEvent('token_received'));\n this.eventsSubject.next(new OAuthSuccessEvent('token_refreshed'));\n resolve(tokenResponse);\n }\n }, err => {\n console.error('Error getting token', err);\n this.eventsSubject.next(new OAuthErrorEvent('token_refresh_error', err));\n reject(err);\n });\n });\n }\n /**\n * Checks whether there are tokens in the hash fragment\n * as a result of the implicit flow. These tokens are\n * parsed, validated and used to sign the user in to the\n * current client.\n *\n * @param options Optional options.\n */\n tryLoginImplicitFlow(options = null) {\n options = options || {};\n let parts;\n if (options.customHashFragment) {\n parts = this.urlHelper.getHashFragmentParams(options.customHashFragment);\n } else {\n parts = this.urlHelper.getHashFragmentParams();\n }\n this.debug('parsed url', parts);\n const state = parts['state'];\n const [nonceInState, userState] = this.parseState(state);\n this.state = userState;\n if (parts['error']) {\n this.debug('error trying to login');\n this.handleLoginError(options, parts);\n const err = new OAuthErrorEvent('token_error', {}, parts);\n this.eventsSubject.next(err);\n return Promise.reject(err);\n }\n const accessToken = parts['access_token'];\n const idToken = parts['id_token'];\n const sessionState = parts['session_state'];\n const grantedScopes = parts['scope'];\n if (!this.requestAccessToken && !this.oidc) {\n return Promise.reject('Either requestAccessToken or oidc (or both) must be true.');\n }\n if (this.requestAccessToken && !accessToken) {\n return Promise.resolve(false);\n }\n if (this.requestAccessToken && !options.disableOAuth2StateCheck && !state) {\n return Promise.resolve(false);\n }\n if (this.oidc && !idToken) {\n return Promise.resolve(false);\n }\n if (this.sessionChecksEnabled && !sessionState) {\n this.logger.warn('session checks (Session Status Change Notification) ' + 'were activated in the configuration but the id_token ' + 'does not contain a session_state claim');\n }\n if (this.requestAccessToken && !options.disableNonceCheck) {\n const success = this.validateNonce(nonceInState);\n if (!success) {\n const event = new OAuthErrorEvent('invalid_nonce_in_state', null);\n this.eventsSubject.next(event);\n return Promise.reject(event);\n }\n }\n if (this.requestAccessToken) {\n this.storeAccessTokenResponse(accessToken, null, parts['expires_in'] || this.fallbackAccessTokenExpirationTimeInSec, grantedScopes);\n }\n if (!this.oidc) {\n this.eventsSubject.next(new OAuthSuccessEvent('token_received'));\n if (this.clearHashAfterLogin && !options.preventClearHashAfterLogin) {\n this.clearLocationHash();\n }\n this.callOnTokenReceivedIfExists(options);\n return Promise.resolve(true);\n }\n return this.processIdToken(idToken, accessToken, options.disableNonceCheck).then(result => {\n if (options.validationHandler) {\n return options.validationHandler({\n accessToken: accessToken,\n idClaims: result.idTokenClaims,\n idToken: result.idToken,\n state: state\n }).then(() => result);\n }\n return result;\n }).then(result => {\n this.storeIdToken(result);\n this.storeSessionState(sessionState);\n if (this.clearHashAfterLogin && !options.preventClearHashAfterLogin) {\n this.clearLocationHash();\n }\n this.eventsSubject.next(new OAuthSuccessEvent('token_received'));\n this.callOnTokenReceivedIfExists(options);\n this.inImplicitFlow = false;\n return true;\n }).catch(reason => {\n this.eventsSubject.next(new OAuthErrorEvent('token_validation_error', reason));\n this.logger.error('Error validating tokens');\n this.logger.error(reason);\n return Promise.reject(reason);\n });\n }\n parseState(state) {\n let nonce = state;\n let userState = '';\n if (state) {\n const idx = state.indexOf(this.config.nonceStateSeparator);\n if (idx > -1) {\n nonce = state.substr(0, idx);\n userState = state.substr(idx + this.config.nonceStateSeparator.length);\n }\n }\n return [nonce, userState];\n }\n validateNonce(nonceInState) {\n let savedNonce;\n if (this.saveNoncesInLocalStorage && typeof window['localStorage'] !== 'undefined') {\n savedNonce = localStorage.getItem('nonce');\n } else {\n savedNonce = this._storage.getItem('nonce');\n }\n if (savedNonce !== nonceInState) {\n const err = 'Validating access_token failed, wrong state/nonce.';\n console.error(err, savedNonce, nonceInState);\n return false;\n }\n return true;\n }\n storeIdToken(idToken) {\n this._storage.setItem('id_token', idToken.idToken);\n this._storage.setItem('id_token_claims_obj', idToken.idTokenClaimsJson);\n this._storage.setItem('id_token_expires_at', '' + idToken.idTokenExpiresAt);\n this._storage.setItem('id_token_stored_at', '' + this.dateTimeService.now());\n }\n storeSessionState(sessionState) {\n this._storage.setItem('session_state', sessionState);\n }\n getSessionState() {\n return this._storage.getItem('session_state');\n }\n handleLoginError(options, parts) {\n if (options.onLoginError) {\n options.onLoginError(parts);\n }\n if (this.clearHashAfterLogin && !options.preventClearHashAfterLogin) {\n this.clearLocationHash();\n }\n }\n getClockSkewInMsec(defaultSkewMsc = 600000) {\n if (!this.clockSkewInSec && this.clockSkewInSec !== 0) {\n return defaultSkewMsc;\n }\n return this.clockSkewInSec * 1000;\n }\n /**\n * @ignore\n */\n processIdToken(idToken, accessToken, skipNonceCheck = false) {\n const tokenParts = idToken.split('.');\n const headerBase64 = this.padBase64(tokenParts[0]);\n const headerJson = b64DecodeUnicode(headerBase64);\n const header = JSON.parse(headerJson);\n const claimsBase64 = this.padBase64(tokenParts[1]);\n const claimsJson = b64DecodeUnicode(claimsBase64);\n const claims = JSON.parse(claimsJson);\n let savedNonce;\n if (this.saveNoncesInLocalStorage && typeof window['localStorage'] !== 'undefined') {\n savedNonce = localStorage.getItem('nonce');\n } else {\n savedNonce = this._storage.getItem('nonce');\n }\n if (Array.isArray(claims.aud)) {\n if (claims.aud.every(v => v !== this.clientId)) {\n const err = 'Wrong audience: ' + claims.aud.join(',');\n this.logger.warn(err);\n return Promise.reject(err);\n }\n } else {\n if (claims.aud !== this.clientId) {\n const err = 'Wrong audience: ' + claims.aud;\n this.logger.warn(err);\n return Promise.reject(err);\n }\n }\n if (!claims.sub) {\n const err = 'No sub claim in id_token';\n this.logger.warn(err);\n return Promise.reject(err);\n }\n /* For now, we only check whether the sub against\n * silentRefreshSubject when sessionChecksEnabled is on\n * We will reconsider in a later version to do this\n * in every other case too.\n */\n if (this.sessionChecksEnabled && this.silentRefreshSubject && this.silentRefreshSubject !== claims['sub']) {\n const err = 'After refreshing, we got an id_token for another user (sub). ' + `Expected sub: ${this.silentRefreshSubject}, received sub: ${claims['sub']}`;\n this.logger.warn(err);\n return Promise.reject(err);\n }\n if (!claims.iat) {\n const err = 'No iat claim in id_token';\n this.logger.warn(err);\n return Promise.reject(err);\n }\n if (!this.skipIssuerCheck && claims.iss !== this.issuer) {\n const err = 'Wrong issuer: ' + claims.iss;\n this.logger.warn(err);\n return Promise.reject(err);\n }\n if (!skipNonceCheck && claims.nonce !== savedNonce) {\n const err = 'Wrong nonce: ' + claims.nonce;\n this.logger.warn(err);\n return Promise.reject(err);\n }\n // at_hash is not applicable to authorization code flow\n // addressing https://github.com/manfredsteyer/angular-oauth2-oidc/issues/661\n // i.e. Based on spec the at_hash check is only true for implicit code flow on Ping Federate\n // https://www.pingidentity.com/developer/en/resources/openid-connect-developers-guide.html\n if (Object.prototype.hasOwnProperty.call(this, 'responseType') && (this.responseType === 'code' || this.responseType === 'id_token')) {\n this.disableAtHashCheck = true;\n }\n if (!this.disableAtHashCheck && this.requestAccessToken && !claims['at_hash']) {\n const err = 'An at_hash is needed!';\n this.logger.warn(err);\n return Promise.reject(err);\n }\n const now = this.dateTimeService.now();\n const issuedAtMSec = claims.iat * 1000;\n const expiresAtMSec = claims.exp * 1000;\n const clockSkewInMSec = this.getClockSkewInMsec(); // (this.getClockSkewInMsec() || 600) * 1000;\n if (issuedAtMSec - clockSkewInMSec >= now || expiresAtMSec + clockSkewInMSec - this.decreaseExpirationBySec <= now) {\n const err = 'Token has expired';\n console.error(err);\n console.error({\n now: now,\n issuedAtMSec: issuedAtMSec,\n expiresAtMSec: expiresAtMSec\n });\n return Promise.reject(err);\n }\n const validationParams = {\n accessToken: accessToken,\n idToken: idToken,\n jwks: this.jwks,\n idTokenClaims: claims,\n idTokenHeader: header,\n loadKeys: () => this.loadJwks()\n };\n if (this.disableAtHashCheck) {\n return this.checkSignature(validationParams).then(() => {\n const result = {\n idToken: idToken,\n idTokenClaims: claims,\n idTokenClaimsJson: claimsJson,\n idTokenHeader: header,\n idTokenHeaderJson: headerJson,\n idTokenExpiresAt: expiresAtMSec\n };\n return result;\n });\n }\n return this.checkAtHash(validationParams).then(atHashValid => {\n if (!this.disableAtHashCheck && this.requestAccessToken && !atHashValid) {\n const err = 'Wrong at_hash';\n this.logger.warn(err);\n return Promise.reject(err);\n }\n return this.checkSignature(validationParams).then(() => {\n const atHashCheckEnabled = !this.disableAtHashCheck;\n const result = {\n idToken: idToken,\n idTokenClaims: claims,\n idTokenClaimsJson: claimsJson,\n idTokenHeader: header,\n idTokenHeaderJson: headerJson,\n idTokenExpiresAt: expiresAtMSec\n };\n if (atHashCheckEnabled) {\n return this.checkAtHash(validationParams).then(atHashValid => {\n if (this.requestAccessToken && !atHashValid) {\n const err = 'Wrong at_hash';\n this.logger.warn(err);\n return Promise.reject(err);\n } else {\n return result;\n }\n });\n } else {\n return result;\n }\n });\n });\n }\n /**\n * Returns the received claims about the user.\n */\n getIdentityClaims() {\n const claims = this._storage.getItem('id_token_claims_obj');\n if (!claims) {\n return null;\n }\n return JSON.parse(claims);\n }\n /**\n * Returns the granted scopes from the server.\n */\n getGrantedScopes() {\n const scopes = this._storage.getItem('granted_scopes');\n if (!scopes) {\n return null;\n }\n return JSON.parse(scopes);\n }\n /**\n * Returns the current id_token.\n */\n getIdToken() {\n return this._storage ? this._storage.getItem('id_token') : null;\n }\n padBase64(base64data) {\n while (base64data.length % 4 !== 0) {\n base64data += '=';\n }\n return base64data;\n }\n /**\n * Returns the current access_token.\n */\n getAccessToken() {\n return this._storage ? this._storage.getItem('access_token') : null;\n }\n getRefreshToken() {\n return this._storage ? this._storage.getItem('refresh_token') : null;\n }\n /**\n * Returns the expiration date of the access_token\n * as milliseconds since 1970.\n */\n getAccessTokenExpiration() {\n if (!this._storage.getItem('expires_at')) {\n return null;\n }\n return parseInt(this._storage.getItem('expires_at'), 10);\n }\n getAccessTokenStoredAt() {\n return parseInt(this._storage.getItem('access_token_stored_at'), 10);\n }\n getIdTokenStoredAt() {\n return parseInt(this._storage.getItem('id_token_stored_at'), 10);\n }\n /**\n * Returns the expiration date of the id_token\n * as milliseconds since 1970.\n */\n getIdTokenExpiration() {\n if (!this._storage.getItem('id_token_expires_at')) {\n return null;\n }\n return parseInt(this._storage.getItem('id_token_expires_at'), 10);\n }\n /**\n * Checkes, whether there is a valid access_token.\n */\n hasValidAccessToken() {\n if (this.getAccessToken()) {\n const expiresAt = this._storage.getItem('expires_at');\n const now = this.dateTimeService.new();\n if (expiresAt && parseInt(expiresAt, 10) - this.decreaseExpirationBySec < now.getTime() - this.getClockSkewInMsec()) {\n return false;\n }\n return true;\n }\n return false;\n }\n /**\n * Checks whether there is a valid id_token.\n */\n hasValidIdToken() {\n if (this.getIdToken()) {\n const expiresAt = this._storage.getItem('id_token_expires_at');\n const now = this.dateTimeService.new();\n if (expiresAt && parseInt(expiresAt, 10) - this.decreaseExpirationBySec < now.getTime() - this.getClockSkewInMsec()) {\n return false;\n }\n return true;\n }\n return false;\n }\n /**\n * Retrieve a saved custom property of the TokenReponse object. Only if predefined in authconfig.\n */\n getCustomTokenResponseProperty(requestedProperty) {\n return this._storage && this.config.customTokenParameters && this.config.customTokenParameters.indexOf(requestedProperty) >= 0 && this._storage.getItem(requestedProperty) !== null ? JSON.parse(this._storage.getItem(requestedProperty)) : null;\n }\n /**\n * Returns the auth-header that can be used\n * to transmit the access_token to a service\n */\n authorizationHeader() {\n return 'Bearer ' + this.getAccessToken();\n }\n logOut(customParameters = {}, state = '') {\n let noRedirectToLogoutUrl = false;\n if (typeof customParameters === 'boolean') {\n noRedirectToLogoutUrl = customParameters;\n customParameters = {};\n }\n const id_token = this.getIdToken();\n this._storage.removeItem('access_token');\n this._storage.removeItem('id_token');\n this._storage.removeItem('refresh_token');\n if (this.saveNoncesInLocalStorage) {\n localStorage.removeItem('nonce');\n localStorage.removeItem('PKCE_verifier');\n } else {\n this._storage.removeItem('nonce');\n this._storage.removeItem('PKCE_verifier');\n }\n this._storage.removeItem('expires_at');\n this._storage.removeItem('id_token_claims_obj');\n this._storage.removeItem('id_token_expires_at');\n this._storage.removeItem('id_token_stored_at');\n this._storage.removeItem('access_token_stored_at');\n this._storage.removeItem('granted_scopes');\n this._storage.removeItem('session_state');\n if (this.config.customTokenParameters) {\n this.config.customTokenParameters.forEach(customParam => this._storage.removeItem(customParam));\n }\n this.silentRefreshSubject = null;\n this.eventsSubject.next(new OAuthInfoEvent('logout'));\n if (!this.logoutUrl) {\n return;\n }\n if (noRedirectToLogoutUrl) {\n return;\n }\n // if (!id_token && !this.postLogoutRedirectUri) {\n // return;\n // }\n let logoutUrl;\n if (!this.validateUrlForHttps(this.logoutUrl)) {\n throw new Error(\"logoutUrl must use HTTPS (with TLS), or config value for property 'requireHttps' must be set to 'false' and allow HTTP (without TLS).\");\n }\n // For backward compatibility\n if (this.logoutUrl.indexOf('{{') > -1) {\n logoutUrl = this.logoutUrl.replace(/\\{\\{id_token\\}\\}/, encodeURIComponent(id_token)).replace(/\\{\\{client_id\\}\\}/, encodeURIComponent(this.clientId));\n } else {\n let params = new HttpParams({\n encoder: new WebHttpUrlEncodingCodec()\n });\n if (id_token) {\n params = params.set('id_token_hint', id_token);\n }\n const postLogoutUrl = this.postLogoutRedirectUri || this.redirectUriAsPostLogoutRedirectUriFallback && this.redirectUri || '';\n if (postLogoutUrl) {\n params = params.set('post_logout_redirect_uri', postLogoutUrl);\n if (state) {\n params = params.set('state', state);\n }\n }\n for (const key in customParameters) {\n params = params.set(key, customParameters[key]);\n }\n logoutUrl = this.logoutUrl + (this.logoutUrl.indexOf('?') > -1 ? '&' : '?') + params.toString();\n }\n this.config.openUri(logoutUrl);\n }\n /**\n * @ignore\n */\n createAndSaveNonce() {\n const that = this; // eslint-disable-line @typescript-eslint/no-this-alias\n return this.createNonce().then(function (nonce) {\n // Use localStorage for nonce if possible\n // localStorage is the only storage who survives a\n // redirect in ALL browsers (also IE)\n // Otherwiese we'd force teams who have to support\n // IE into using localStorage for everything\n if (that.saveNoncesInLocalStorage && typeof window['localStorage'] !== 'undefined') {\n localStorage.setItem('nonce', nonce);\n } else {\n that._storage.setItem('nonce', nonce);\n }\n return nonce;\n });\n }\n /**\n * @ignore\n */\n ngOnDestroy() {\n this.clearAccessTokenTimer();\n this.clearIdTokenTimer();\n this.removeSilentRefreshEventListener();\n const silentRefreshFrame = this.document.getElementById(this.silentRefreshIFrameName);\n if (silentRefreshFrame) {\n silentRefreshFrame.remove();\n }\n this.stopSessionCheckTimer();\n this.removeSessionCheckEventListener();\n const sessionCheckFrame = this.document.getElementById(this.sessionCheckIFrameName);\n if (sessionCheckFrame) {\n sessionCheckFrame.remove();\n }\n }\n createNonce() {\n return new Promise(resolve => {\n if (this.rngUrl) {\n throw new Error('createNonce with rng-web-api has not been implemented so far');\n }\n /*\n * This alphabet is from:\n * https://tools.ietf.org/html/rfc7636#section-4.1\n *\n * [A-Z] / [a-z] / [0-9] / \"-\" / \".\" / \"_\" / \"~\"\n */\n const unreserved = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~';\n let size = 45;\n let id = '';\n const crypto = typeof self === 'undefined' ? null : self.crypto || self['msCrypto'];\n if (crypto) {\n let bytes = new Uint8Array(size);\n crypto.getRandomValues(bytes);\n // Needed for IE\n if (!bytes.map) {\n bytes.map = Array.prototype.map;\n }\n bytes = bytes.map(x => unreserved.charCodeAt(x % unreserved.length));\n id = String.fromCharCode.apply(null, bytes);\n } else {\n while (0 < size--) {\n id += unreserved[Math.random() * unreserved.length | 0];\n }\n }\n resolve(base64UrlEncode(id));\n });\n }\n async checkAtHash(params) {\n if (!this.tokenValidationHandler) {\n this.logger.warn('No tokenValidationHandler configured. Cannot check at_hash.');\n return true;\n }\n return this.tokenValidationHandler.validateAtHash(params);\n }\n checkSignature(params) {\n if (!this.tokenValidationHandler) {\n this.logger.warn('No tokenValidationHandler configured. Cannot check signature.');\n return Promise.resolve(null);\n }\n return this.tokenValidationHandler.validateSignature(params);\n }\n /**\n * Start the implicit flow or the code flow,\n * depending on your configuration.\n */\n initLoginFlow(additionalState = '', params = {}) {\n if (this.responseType === 'code') {\n return this.initCodeFlow(additionalState, params);\n } else {\n return this.initImplicitFlow(additionalState, params);\n }\n }\n /**\n * Starts the authorization code flow and redirects to user to\n * the auth servers login url.\n */\n initCodeFlow(additionalState = '', params = {}) {\n if (this.loginUrl !== '') {\n this.initCodeFlowInternal(additionalState, params);\n } else {\n this.events.pipe(filter(e => e.type === 'discovery_document_loaded')).subscribe(() => this.initCodeFlowInternal(additionalState, params));\n }\n }\n initCodeFlowInternal(additionalState = '', params = {}) {\n if (!this.validateUrlForHttps(this.loginUrl)) {\n throw new Error(\"loginUrl must use HTTPS (with TLS), or config value for property 'requireHttps' must be set to 'false' and allow HTTP (without TLS).\");\n }\n let addParams = {};\n let loginHint = null;\n if (typeof params === 'string') {\n loginHint = params;\n } else if (typeof params === 'object') {\n addParams = params;\n }\n this.createLoginUrl(additionalState, loginHint, null, false, addParams).then(this.config.openUri).catch(error => {\n console.error('Error in initAuthorizationCodeFlow');\n console.error(error);\n });\n }\n async createChallangeVerifierPairForPKCE() {\n if (!this.crypto) {\n throw new Error('PKCE support for code flow needs a CryptoHander. Did you import the OAuthModule using forRoot() ?');\n }\n const verifier = await this.createNonce();\n const challengeRaw = await this.crypto.calcHash(verifier, 'sha-256');\n const challenge = base64UrlEncode(challengeRaw);\n return [challenge, verifier];\n }\n extractRecognizedCustomParameters(tokenResponse) {\n const foundParameters = new Map();\n if (!this.config.customTokenParameters) {\n return foundParameters;\n }\n this.config.customTokenParameters.forEach(recognizedParameter => {\n if (tokenResponse[recognizedParameter]) {\n foundParameters.set(recognizedParameter, JSON.stringify(tokenResponse[recognizedParameter]));\n }\n });\n return foundParameters;\n }\n /**\n * Revokes the auth token to secure the vulnarability\n * of the token issued allowing the authorization server to clean\n * up any security credentials associated with the authorization\n */\n revokeTokenAndLogout(customParameters = {}, ignoreCorsIssues = false) {\n const revokeEndpoint = this.revocationEndpoint;\n const accessToken = this.getAccessToken();\n const refreshToken = this.getRefreshToken();\n if (!accessToken) {\n return Promise.resolve();\n }\n let params = new HttpParams({\n encoder: new WebHttpUrlEncodingCodec()\n });\n let headers = new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded');\n if (this.useHttpBasicAuth) {\n const header = btoa(`${this.clientId}:${this.dummyClientSecret}`);\n headers = headers.set('Authorization', 'Basic ' + header);\n }\n if (!this.useHttpBasicAuth) {\n params = params.set('client_id', this.clientId);\n }\n if (!this.useHttpBasicAuth && this.dummyClientSecret) {\n params = params.set('client_secret', this.dummyClientSecret);\n }\n if (this.customQueryParams) {\n for (const key of Object.getOwnPropertyNames(this.customQueryParams)) {\n params = params.set(key, this.customQueryParams[key]);\n }\n }\n return new Promise((resolve, reject) => {\n let revokeAccessToken;\n let revokeRefreshToken;\n if (accessToken) {\n const revokationParams = params.set('token', accessToken).set('token_type_hint', 'access_token');\n revokeAccessToken = this.http.post(revokeEndpoint, revokationParams, {\n headers\n });\n } else {\n revokeAccessToken = of(null);\n }\n if (refreshToken) {\n const revokationParams = params.set('token', refreshToken).set('token_type_hint', 'refresh_token');\n revokeRefreshToken = this.http.post(revokeEndpoint, revokationParams, {\n headers\n });\n } else {\n revokeRefreshToken = of(null);\n }\n if (ignoreCorsIssues) {\n revokeAccessToken = revokeAccessToken.pipe(catchError(err => {\n if (err.status === 0) {\n return of(null);\n }\n return throwError(err);\n }));\n revokeRefreshToken = revokeRefreshToken.pipe(catchError(err => {\n if (err.status === 0) {\n return of(null);\n }\n return throwError(err);\n }));\n }\n combineLatest([revokeAccessToken, revokeRefreshToken]).subscribe(res => {\n this.logOut(customParameters);\n resolve(res);\n this.logger.info('Token successfully revoked');\n }, err => {\n this.logger.error('Error revoking token', err);\n this.eventsSubject.next(new OAuthErrorEvent('token_revoke_error', err));\n reject(err);\n });\n });\n }\n /**\n * Clear location.hash if it's present\n */\n clearLocationHash() {\n // Checking for empty hash is necessary for Firefox\n // as setting an empty hash to an empty string adds # to the URL\n if (location.hash != '') {\n location.hash = '';\n }\n }\n static {\n this.ɵfac = function OAuthService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || OAuthService)(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(OAuthStorage, 8), i0.ɵɵinject(ValidationHandler, 8), i0.ɵɵinject(AuthConfig, 8), i0.ɵɵinject(UrlHelperService), i0.ɵɵinject(OAuthLogger), i0.ɵɵinject(HashHandler, 8), i0.ɵɵinject(DOCUMENT), i0.ɵɵinject(DateTimeProvider));\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: OAuthService,\n factory: OAuthService.ɵfac\n });\n }\n }\n return OAuthService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nclass OAuthResourceServerErrorHandler {}\nclass OAuthNoopResourceServerErrorHandler {\n handleError(err) {\n return throwError(err);\n }\n}\nlet DefaultOAuthInterceptor = /*#__PURE__*/(() => {\n class DefaultOAuthInterceptor {\n constructor(oAuthService, errorHandler, moduleConfig) {\n this.oAuthService = oAuthService;\n this.errorHandler = errorHandler;\n this.moduleConfig = moduleConfig;\n }\n checkUrl(url) {\n if (this.moduleConfig.resourceServer.customUrlValidation) {\n return this.moduleConfig.resourceServer.customUrlValidation(url);\n }\n if (this.moduleConfig.resourceServer.allowedUrls) {\n return !!this.moduleConfig.resourceServer.allowedUrls.find(u => url.toLowerCase().startsWith(u.toLowerCase()));\n }\n return true;\n }\n intercept(req, next) {\n const url = req.url.toLowerCase();\n if (!this.moduleConfig || !this.moduleConfig.resourceServer || !this.checkUrl(url)) {\n return next.handle(req);\n }\n const sendAccessToken = this.moduleConfig.resourceServer.sendAccessToken;\n if (!sendAccessToken) {\n return next.handle(req).pipe(catchError(err => this.errorHandler.handleError(err)));\n }\n return merge(of(this.oAuthService.getAccessToken()).pipe(filter(token => !!token)), this.oAuthService.events.pipe(filter(e => e.type === 'token_received'), timeout(this.oAuthService.waitForTokenInMsec || 0), catchError(() => of(null)),\n // timeout is not an error\n map(() => this.oAuthService.getAccessToken()))).pipe(take(1), mergeMap(token => {\n if (token) {\n const header = 'Bearer ' + token;\n const headers = req.headers.set('Authorization', header);\n req = req.clone({\n headers\n });\n }\n return next.handle(req).pipe(catchError(err => this.errorHandler.handleError(err)));\n }));\n }\n static {\n this.ɵfac = function DefaultOAuthInterceptor_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DefaultOAuthInterceptor)(i0.ɵɵinject(OAuthService), i0.ɵɵinject(OAuthResourceServerErrorHandler), i0.ɵɵinject(OAuthModuleConfig, 8));\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: DefaultOAuthInterceptor,\n factory: DefaultOAuthInterceptor.ɵfac\n });\n }\n }\n return DefaultOAuthInterceptor;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nfunction createDefaultLogger() {\n return console;\n}\nfunction createDefaultStorage() {\n return typeof sessionStorage !== 'undefined' ? sessionStorage : new MemoryStorage();\n}\nfunction provideOAuthClient(config = null, validationHandlerClass = NullValidationHandler) {\n return makeEnvironmentProviders([OAuthService, UrlHelperService, {\n provide: OAuthLogger,\n useFactory: createDefaultLogger\n }, {\n provide: OAuthStorage,\n useFactory: createDefaultStorage\n }, {\n provide: ValidationHandler,\n useClass: validationHandlerClass\n }, {\n provide: HashHandler,\n useClass: DefaultHashHandler\n }, {\n provide: OAuthResourceServerErrorHandler,\n useClass: OAuthNoopResourceServerErrorHandler\n }, {\n provide: OAuthModuleConfig,\n useValue: config\n }, {\n provide: HTTP_INTERCEPTORS,\n useClass: DefaultOAuthInterceptor,\n multi: true\n }, {\n provide: DateTimeProvider,\n useClass: SystemDateTimeProvider\n }]);\n}\nlet OAuthModule = /*#__PURE__*/(() => {\n class OAuthModule {\n static forRoot(config = null, validationHandlerClass = NullValidationHandler) {\n return {\n ngModule: OAuthModule,\n providers: [provideOAuthClient(config, validationHandlerClass)]\n };\n }\n static {\n this.ɵfac = function OAuthModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || OAuthModule)();\n };\n }\n static {\n this.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: OAuthModule\n });\n }\n static {\n this.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [CommonModule]\n });\n }\n }\n return OAuthModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst err = `PLEASE READ THIS CAREFULLY:\n\nBeginning with angular-oauth2-oidc version 9, the JwksValidationHandler\nhas been moved to an library of its own. If you need it for implementing\nOAuth2/OIDC **implicit flow**, please install it using npm:\n\n npm i angular-oauth2-oidc-jwks --save\n\nAfter that, you can import it into your application:\n\n import { JwksValidationHandler } from 'angular-oauth2-oidc-jwks';\n\nPlease note, that this dependency is not needed for the **code flow**,\nwhich is nowadays the **recommented** one for single page applications.\nThis also results in smaller bundle sizes.\n`;\n/**\n * This is just a dummy of the JwksValidationHandler\n * telling the users that the real one has been moved\n * to an library of its own, namely angular-oauth2-oidc-utils\n */\nclass JwksValidationHandler extends NullValidationHandler {\n constructor() {\n super();\n console.error(err);\n }\n}\nconst AUTH_CONFIG = new InjectionToken('AUTH_CONFIG');\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { AUTH_CONFIG, AbstractValidationHandler, AuthConfig, DateTimeProvider, DefaultHashHandler, DefaultOAuthInterceptor, HashHandler, JwksValidationHandler, LoginOptions, MemoryStorage, NullValidationHandler, OAuthErrorEvent, OAuthEvent, OAuthInfoEvent, OAuthLogger, OAuthModule, OAuthModuleConfig, OAuthNoopResourceServerErrorHandler, OAuthResourceServerConfig, OAuthResourceServerErrorHandler, OAuthService, OAuthStorage, OAuthSuccessEvent, ReceivedTokens, SystemDateTimeProvider, UrlHelperService, ValidationHandler, provideOAuthClient };\n","import { Injectable } from '@angular/core';\n\nconst ALL_ENVIRONMENTS = ['dev', 'test', 'prod'];\ntype EnvironmentTuple = typeof ALL_ENVIRONMENTS;\nexport type Environment = EnvironmentTuple[number];\n\n/**\n * Service for accessing environment variables stored in window.__env.\n *\n * To add a new environment variable:\n * 1. Update nginx.conf:\n * - Add variable under \"Fetch environment variables\".\n * - Add variable under \"Returns secrets to the client\".\n * 2. In fetch.js:\n * - Add function to return the new variable.\n * - Add the function to the list of default exports.\n * 3. In WA-LogicRoot-Dev Azure Resource:\n * - Navigate to Settings > Environment variables.\n * - Add the new variable with the same name as in the code.\n * 4. In this service:\n * - Add the appropriate typesafe variables.\n * - Add a method to get the variable.\n * - Add a method to validate the variable.\n */\n@Injectable({ providedIn: 'root' })\nexport class EnvService {\n isDev(): boolean {\n return this.getEnv() === 'dev' || location.href.includes('localhost');\n }\n\n getEnv(): Environment {\n const env = this.getEnvironmentVariable('env');\n\n return this.isValidEnvironment(env) ? env : 'dev';\n }\n\n private isValidEnvironment(env: Environment | null): env is Environment {\n return ALL_ENVIRONMENTS.includes(env as Environment);\n }\n\n private getEnvironmentVariable(key: string): T | null {\n try {\n return ((window as any).__env?.[key] as T) ?? null;\n } catch (err) {\n console.error(`Could not get ${key} from environment variables.`, 'EnvService', err);\n return null;\n }\n }\n}\n","import { inject, Injectable } from '@angular/core';\nimport { Environment, EnvService } from '@logic-suite/shared/env/env.service';\n\ntype LogLevel = 'DEBUG' | 'INFO' | 'WARN' | 'ERROR';\n\n@Injectable({ providedIn: 'root' })\nexport class Logger {\n private envService = inject(EnvService);\n\n private logLevelColors: Record = {\n DEBUG: '#95a5a6',\n INFO: '#3498db',\n WARN: '#e67e22',\n ERROR: '#e74c3c',\n };\n\n private activeLogLevels: Set;\n\n constructor() {\n this.activeLogLevels = this.getActiveLogLevels(this.envService.getEnv());\n }\n\n private getActiveLogLevels(env: Environment): Set {\n switch (env) {\n case 'dev':\n return new Set(['DEBUG', 'INFO', 'WARN', 'ERROR']);\n case 'test':\n return new Set(['INFO', 'WARN', 'ERROR']);\n case 'prod':\n return new Set(['WARN', 'ERROR']);\n default:\n return new Set(['ERROR']);\n }\n }\n\n private log(level: LogLevel, message: string, source?: string, ...args: any[]): void {\n if (!this.activeLogLevels.has(level)) {\n return;\n }\n\n const color = this.logLevelColors[level];\n const prefix = `%c${level}`;\n const style = `background: ${color}; color: white; padding: 2px 4px; border-radius: 2px;`;\n\n const sourcePrefix = source ? `[${source}] ` : '';\n console.log(prefix, style, `${sourcePrefix}${message}`, ...args);\n }\n\n debug(message: string, source?: string, ...args: any[]): void {\n this.log('DEBUG', message, source, ...args);\n }\n\n info(message: string, source?: string, ...args: any[]): void {\n this.log('INFO', message, source, ...args);\n }\n\n warn(message: string, source?: string, ...args: any[]): void {\n this.log('WARN', message, source, ...args);\n }\n\n error(message: string, source?: string, ...args: any[]): void {\n this.log('ERROR', message, source, ...args);\n }\n}\n","import { inject, Injectable } from '@angular/core';\nimport { OAuthService, TokenResponse } from 'angular-oauth2-oidc';\nimport { AuthConfigExtended } from '@logic-suite/shared/auth/auth.config';\nimport { OAuthSuccessEvent } from 'angular-oauth2-oidc/events';\nimport { defer, Observable } from 'rxjs';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class OAuthWrapperService {\n private readonly oauthService = inject(OAuthService);\n\n configure(authConfig: AuthConfigExtended): void {\n this.oauthService.configure(authConfig);\n }\n\n loadDiscoveryDocument(): Promise {\n return this.oauthService.loadDiscoveryDocument();\n }\n\n loadDiscoveryDocument$(): Observable {\n return defer(() => this.oauthService.loadDiscoveryDocument());\n }\n\n tryLoginCodeFlow(): Promise {\n return this.oauthService.tryLoginCodeFlow();\n }\n\n tryLoginCodeFlow$(): Observable {\n return defer(() => this.oauthService.tryLoginCodeFlow());\n }\n\n hasValidAccessToken(): boolean {\n return this.oauthService.hasValidAccessToken();\n }\n\n getAccessToken(): string {\n return this.oauthService.getAccessToken();\n }\n\n initCodeFlow(returnTo?: string, additionalParams?: {}): void {\n this.oauthService.initCodeFlow(returnTo, additionalParams);\n }\n\n revokeTokenAndLogout(customParameters?: boolean): Promise {\n return this.oauthService.revokeTokenAndLogout(customParameters);\n }\n\n revokeTokenAndLogout$(customParameters?: boolean): Observable {\n return defer(() => this.oauthService.revokeTokenAndLogout(customParameters));\n }\n\n logOut(customParameters: boolean | object): void {\n this.oauthService.logOut(customParameters);\n }\n\n setupAutomaticSilentRefresh(): void {\n this.oauthService.setupAutomaticSilentRefresh();\n }\n\n refreshToken(): Promise {\n return this.oauthService.refreshToken();\n }\n\n refreshToken$(): Observable {\n return defer(() => this.oauthService.refreshToken());\n }\n\n getRefreshToken(): string | null {\n return this.oauthService.getRefreshToken();\n }\n\n get state(): string | undefined {\n return this.oauthService.state;\n }\n\n get events() {\n return this.oauthService.events;\n }\n}\n","import { computed, inject, Injectable, signal } from '@angular/core';\nimport { OAuthErrorEvent, OAuthEvent, OAuthInfoEvent, OAuthSuccessEvent } from 'angular-oauth2-oidc';\nimport { catchError, EMPTY, filter, Observable, share } from 'rxjs';\nimport { takeUntilDestroyed } from '@angular/core/rxjs-interop';\nimport { Logger } from '@logic-suite/shared/logger/logger.service';\nimport { tap } from 'rxjs/operators';\nimport { OAuthWrapperService } from '@logic-suite/shared/auth/o-auth-wrapper/o-auth-wrapper.service';\n\ninterface OAuthEventState {\n events: OAuthEvent[];\n lastInfoEvent: OAuthInfoEvent | null;\n lastSuccessEvent: OAuthSuccessEvent | null;\n lastErrorEvent: OAuthErrorEvent | null;\n}\n\n// Maximum number of events to store.\nconst MAX_EVENTS = 100;\n\n/**\n * Wrapper for event stream provided by [OAuthService].\n *\n * Maintains internal state of latest events using signals,\n * ensuring event tracking even without active subscriptions.\n */\n@Injectable({ providedIn: 'root' })\nexport class OAuthEventService {\n private readonly logger = inject(Logger);\n private readonly oAuthWrapperService = inject(OAuthWrapperService);\n\n // sources\n event$ = this.oAuthWrapperService.events.pipe(\n catchError((error) => {\n this.logger.error('Unexpected error in OAuth event stream', 'OAuthEventService', error);\n return EMPTY;\n }),\n share(), // Don't create multiple subscriptions.\n );\n\n infoEvent$: Observable = this.event$.pipe(\n filter((event): event is OAuthInfoEvent => event instanceof OAuthInfoEvent),\n tap((event) => this.logOauthInfoEvent(event)),\n );\n\n successEvent$: Observable = this.event$.pipe(\n filter((event): event is OAuthSuccessEvent => event instanceof OAuthSuccessEvent),\n tap((event) => this.logOAuthSuccessEvent(event)),\n );\n\n errorEvent$: Observable = this.event$.pipe(\n filter((event): event is OAuthErrorEvent => event instanceof OAuthErrorEvent),\n tap((event) => this.logOAuthErrorEvent(event)),\n );\n\n // state\n private state = signal({\n events: [],\n lastInfoEvent: null,\n lastSuccessEvent: null,\n lastErrorEvent: null,\n });\n\n // selectors\n\n events = computed(() => this.state().events);\n lastInfoEvent = computed(() => this.state().lastInfoEvent);\n lastSuccessEvent = computed(() => this.state().lastSuccessEvent);\n lastErrorEvent = computed(() => this.state().lastErrorEvent);\n\n constructor() {\n // reducers\n this.event$.pipe(takeUntilDestroyed()).subscribe((event) =>\n this.state.update((state) => ({\n ...state,\n events: [event, ...state.events.slice(0, MAX_EVENTS - 1)],\n })),\n );\n\n this.infoEvent$\n .pipe(takeUntilDestroyed())\n .subscribe((event) => this.state.update((state) => ({ ...state, lastInfoEvent: event })));\n\n this.successEvent$\n .pipe(takeUntilDestroyed())\n .subscribe((event) => this.state.update((state) => ({ ...state, lastSuccessEvent: event })));\n\n this.errorEvent$\n .pipe(takeUntilDestroyed())\n .subscribe((event) => this.state.update((state) => ({ ...state, lastErrorEvent: event })));\n }\n\n private logOauthInfoEvent(event: OAuthInfoEvent): void {\n this.logger.debug('OAuth info event received.', 'OAuthEventService', event);\n }\n\n private logOAuthSuccessEvent(event: OAuthSuccessEvent): void {\n this.logger.debug('OAuth success event received.', 'OAuthEventService', event);\n }\n\n private logOAuthErrorEvent(event: OAuthErrorEvent): void {\n this.logger.warn('OAuth error event received.', 'OAuthEventService', event);\n }\n}\n","import { computed, effect, Inject, inject, Injectable, signal } from '@angular/core';\nimport { takeUntilDestroyed } from '@angular/core/rxjs-interop';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { Router } from '@angular/router';\nimport { AuthState } from '@logic-suite/shared/auth/auth-state.enum';\nimport { createAuthConfig } from '@logic-suite/shared/auth/auth.config';\nimport { OAuthEventService } from '@logic-suite/shared/auth/o-auth-event/o-auth-event.service';\nimport { OAuthWrapperService } from '@logic-suite/shared/auth/o-auth-wrapper/o-auth-wrapper.service';\nimport { EnvService } from '@logic-suite/shared/env/env.service';\nimport { Logger } from '@logic-suite/shared/logger/logger.service';\nimport { TokenResponse } from 'angular-oauth2-oidc';\nimport {\n BehaviorSubject,\n catchError,\n filter,\n finalize,\n firstValueFrom,\n from,\n map,\n Observable,\n of,\n shareReplay,\n take,\n throwError,\n} from 'rxjs';\nimport { tap } from 'rxjs/operators';\nimport { clearCacheOnly, clearSWOnly, errorToString, titleCase } from '../utils';\nimport { getLocalStorage } from '../utils/getLocalStorage';\nimport { AUTH_ENV, AUTH_TOKEN } from './auth.token';\n\nconst e2eTest = 'Cypress' in window;\n\ninterface LoginOptions {\n returnTo?: string;\n idp?: string;\n login?: string;\n}\n\ninterface KCLoginOptions {\n kc_idp_hint?: string;\n login_hint?: string;\n}\n\ninterface AuthUser {\n email: string;\n family_name: string;\n given_name: string;\n name: string;\n roles: string[];\n}\n\ninterface AuthServiceState {\n authState: AuthState;\n}\n\n/**\n * Service bridge between our application and the OIDC library\n */\n@Injectable({ providedIn: 'root' })\nexport class AuthService {\n private readonly oAuthWrapperService = inject(OAuthWrapperService);\n private readonly oAuthEventService = inject(OAuthEventService);\n private readonly envService = inject(EnvService);\n private readonly logger = inject(Logger);\n private readonly router = inject(Router);\n private readonly snack = inject(MatSnackBar);\n\n // sources\n // TODO(bjhandeland): Change to regular Subject when dependencies use authState signal instead.\n authState$ = new BehaviorSubject(AuthState.NOT_ACTIVE);\n\n // state\n private state = signal({\n authState: AuthState.NOT_ACTIVE,\n });\n\n // selectors\n authState = computed(() => this.state().authState);\n isLoggedIn = computed(() => this.authState() === AuthState.AUTHENTICATED);\n\n isLoggedIn$ = this.authState$.pipe(\n filter((state) => state >= AuthState.NEEDS_LOGIN),\n map(() => {\n if (e2eTest) return true;\n return this.oAuthWrapperService.hasValidAccessToken();\n }),\n );\n\n // Used by silent refresh\n private tokenFetch$?: Observable;\n\n private handleLoginRequired$ = this.oAuthEventService.errorEvent$.pipe(\n filter((event) => (event.params as any)?.error === 'login_required'),\n tap(() => {\n if (getLocalStorage().getItem('disableRefresh') !== 'true') {\n firstValueFrom(this.getTokenSilently$(true)).then(() => {\n if (!this.oAuthWrapperService.hasValidAccessToken()) {\n this.router.navigate(['/logout']);\n }\n });\n }\n }),\n );\n\n private handleSilentRefreshTimeout$ = this.oAuthEventService.errorEvent$.pipe(\n filter((event) => event.type === 'silent_refresh_timeout'),\n tap(() => {\n firstValueFrom(this.getTokenSilently$(true));\n }),\n );\n\n constructor(@Inject(AUTH_TOKEN) private authToken: AUTH_ENV) {\n this.authState$.pipe(takeUntilDestroyed()).subscribe((authState) => {\n this.state.update((state) => ({\n ...state,\n authState: authState,\n }));\n });\n\n effect(() => {\n this.logger.debug(`AuthState: ${AuthState[this.authState()]}`, 'AuthService');\n });\n\n this.handleLoginRequired$.pipe(takeUntilDestroyed()).subscribe();\n this.handleSilentRefreshTimeout$.pipe(takeUntilDestroyed()).subscribe();\n }\n\n /**\n * Parse user info from token\n * @returns\n */\n getUser(): AuthUser {\n const token = this.oAuthWrapperService.getAccessToken();\n const access = !token ? {} : JSON.parse(atob(token.split('.')[1]));\n return {\n email: access.email,\n family_name: access.family_name,\n given_name: access.given_name,\n name: access.name,\n roles: access.realm_access?.roles ?? [],\n };\n }\n\n /**\n * @param roles\n * @returns true if access token contains any of the given roles\n */\n hasRoles(roles: string[]) {\n const userRoles = this.getUser()?.roles;\n return userRoles?.some((r: string) => roles.some((gr) => r.toLowerCase().includes(gr.toLowerCase())));\n }\n\n async initAuth(): Promise {\n // Make sure we only initialize once\n if (this.authState() > AuthState.INITIALIZING) return firstValueFrom(this.isLoggedIn$);\n\n // Support for E2E testing with Cypress. Must mock all api calls for this to work.\n if (e2eTest) {\n this.authState$.next(AuthState.AUTHENTICATED);\n return Promise.resolve(true);\n }\n\n // Set initial state\n this.authState$.next(AuthState.INITIALIZING);\n\n // Configure auth service and initialize\n const authConfig = createAuthConfig(this.authToken, this.envService.isDev());\n this.oAuthWrapperService.configure(authConfig);\n\n // Setup automatic silent refresh\n this.oAuthWrapperService.setupAutomaticSilentRefresh();\n\n /*\n * Try to load the discovery document and login.\n * If loading the discovery document fails, it will retry a maximum of 4 times.\n * - First time: just reload the page.\n * - Second time: Clear SW cache and reload page.\n * - Third time: Unregister SW and reload page.\n * - Fourth time: Present info to user and die!\n */\n const KEY = 'login_retries';\n try {\n // Load discovery document\n const success = await this.oAuthWrapperService.loadDiscoveryDocument();\n if (!success) throw new Error('Failed to load discovery document');\n this.authState$.next(AuthState.INITIALIZED);\n\n // We have a discovery document. Try to login\n this.authState$.next(AuthState.PROCESSING);\n await this.oAuthWrapperService.tryLoginCodeFlow();\n this.authState$.next(AuthState.PROCESSED);\n\n // Get or refresh the access token if we have a valid session\n await firstValueFrom(this.getTokenSilently$());\n\n // Check if we are logged in\n if (this.oAuthWrapperService.hasValidAccessToken()) {\n // Decode token and store logged in user\n const token = this.oAuthWrapperService.getAccessToken();\n const { email } = JSON.parse(atob(token.split('.')[1]));\n if (email) getLocalStorage().setItem('user', email);\n\n // We are logged in!\n this.authState$.next(AuthState.AUTHENTICATED);\n\n // If we have previous state before login, redirect to that url\n if (this.oAuthWrapperService.state) {\n const url = decodeURIComponent(this.oAuthWrapperService.state);\n setTimeout(() => location.replace(url));\n }\n } else {\n // We are not logged in. Redirect to login page\n this.authState$.next(AuthState.NEEDS_LOGIN);\n this.router.navigate(['/logout']);\n }\n\n // We are done!\n sessionStorage.removeItem(KEY);\n return Promise.resolve(true);\n } catch (ex) {\n const times = Number(sessionStorage.getItem(KEY) || 0);\n if (times > 3) {\n // Tried more than 3 times. Give up. :-(\n this.snack.open('Failed to login. Please try again later.', 'Ok', { duration: 15000 });\n sessionStorage.removeItem(KEY);\n return Promise.resolve(false);\n }\n if (times >= 1) {\n // Clear service worker cache if first reload did not pan out.\n clearCacheOnly();\n }\n if (times >= 2) {\n // If still faulty, unregister the entire service worker\n // It will be reinstalled automatically on next reload\n clearSWOnly();\n }\n\n // Count the times this has crashed and reload the page\n sessionStorage.setItem(KEY, `${times + 1}`);\n const url = location.href;\n setTimeout(() => (location.href = url), 1000 * times);\n return Promise.resolve(false);\n }\n }\n\n /**\n * Called by the login component when the user clicks the login button.\n *\n * @param options\n * @returns\n */\n async login(options: LoginOptions = {}): Promise {\n if (e2eTest) {\n this.authState$.next(AuthState.AUTHENTICATED);\n return Promise.resolve(true);\n }\n\n if (this.authState() < AuthState.INITIALIZED) {\n try {\n return await this.initAuth();\n } catch (ex) {\n this.snack.open(errorToString(ex), 'Ok', { duration: 5000 });\n return Promise.resolve(false);\n }\n }\n\n const loginOptions = this.processLoginOptions(options);\n const kcLoginOptions = this.loginOptionsToKCLoginOptions(loginOptions);\n try {\n this.oAuthWrapperService.initCodeFlow(loginOptions?.returnTo ?? undefined, kcLoginOptions);\n return Promise.resolve(true);\n } catch (ex) {\n this.snack.open(errorToString(ex), 'Ok', { duration: 5000 });\n return Promise.resolve(false);\n }\n }\n\n /**\n * This can be called by the user during an active logout,\n * it can be called by the application when the token is\n * no longer valid or it can be called when backend responds\n * with a 401 message.\n *\n * In the latter case, the client and backend are out of sync\n * and we need to re-login to get a new token.\n * @returns\n */\n async logout(): Promise {\n if (e2eTest) return true;\n\n try {\n await this.oAuthWrapperService.revokeTokenAndLogout(true);\n this.logger.info('Logged out.', 'AuthService');\n } catch (ex) {\n this.oAuthWrapperService.logOut(true);\n }\n this.authState$.next(AuthState.NEEDS_LOGIN);\n return this.isLoggedIn();\n }\n\n /**\n * If traces of last logged in user is found in localStorage, try to do a silent login.\n * This is a workaround for the login issue we have with KeyCloak.\n *\n * The response from this process can be null if the IDP responds with an error. In that\n * case logout.\n *\n * @returns a faux token response\n */\n tryAutoLoginLastUser() {\n const lastUser = getLocalStorage().getItem('user') ?? undefined;\n if (lastUser) {\n const domain = lastUser.split('@')[1].split('.')[0].toLowerCase();\n return firstValueFrom(\n from(this.login({ idp: `${titleCase(domain)}AD`, login: lastUser })).pipe(\n catchError(() => {\n this.logout();\n return throwError(() => ({ access_token: null }) as unknown as TokenResponse);\n }),\n map(() => ({ access_token: this.oAuthWrapperService.getAccessToken() }) as unknown as TokenResponse),\n ),\n );\n }\n return Promise.resolve({ access_token: null } as unknown as TokenResponse);\n }\n\n private processLoginOptions(options: LoginOptions = {}): LoginOptions {\n if (!options.login) {\n options.login = getLocalStorage().getItem('user') || undefined;\n }\n if (options.login && !options.idp) {\n options.idp = `${titleCase(options.login.split('@')[1].split('.')[0].toLowerCase())}AD`;\n }\n return options;\n }\n\n private loginOptionsToKCLoginOptions(options: LoginOptions): KCLoginOptions {\n return {\n ...(options.idp && { kc_idp_hint: options.idp }),\n ...(options.login && { login_hint: options.login }),\n };\n }\n\n /**\n * Check access token expiry. If we are close to expiry, the\n * automatic silent refresh has not done it's job and we need to\n * manually refresh.\n *\n * @returns The access token\n */\n getTokenSilently$(refresh = false): Observable {\n if (!this.tokenFetch$) {\n const token = this.oAuthWrapperService.getAccessToken();\n if (e2eTest) return of('NOT_A_TOKEN');\n\n // A valid token must 1) not be expired and 2) belong to the correct issuer\n let hasValidToken = false;\n if (token != null) {\n const access = !token ? {} : JSON.parse(atob(token.split('.')[1]));\n hasValidToken =\n this.oAuthWrapperService.hasValidAccessToken() === true &&\n access.iss === `${this.authToken.issuer}${this.authToken.tenantId}`;\n }\n if (!hasValidToken || refresh === true) {\n // Token is invalid, about to expire or we are forcing a refresh.\n // Try to refresh the token or autologin the last user if the refresh token is also missing.\n const hasRefreshToken = this.oAuthWrapperService.getRefreshToken() != null;\n this.logger.debug(\n hasRefreshToken ? 'Token is about to expire. Refreshing...' : 'Not logged in. Trying autologin...',\n 'AuthService',\n );\n this.tokenFetch$ = (\n hasRefreshToken\n ? from(this.oAuthWrapperService.refreshToken()).pipe(\n shareReplay(1),\n catchError(() => from(this.tryAutoLoginLastUser())),\n )\n : from(this.tryAutoLoginLastUser())\n ).pipe(\n map((e) => e.access_token),\n take(1),\n );\n } else {\n // Token is valid. Return it.\n this.tokenFetch$ = of(token);\n }\n }\n return this.tokenFetch$.pipe(finalize(() => (this.tokenFetch$ = undefined)));\n }\n}\n","import { InjectionToken } from '@angular/core';\n\nexport interface STATUS_REDIRECT {\n statusCode: number;\n redirectTo: string[];\n}\n\n/**\n * Injection token for configuring redirects based on http response status codes.\n * I.E. If a request responds with 401, go to /login (this is built in by the way).\n *\n * #USAGE\n * @NgModule({\n * providers: [\n * { provide: HTTP_STATUS_REDIRECT, useValue: [{ statusCode: 403, redirectTo: ['/customer'] }] }\n * ]\n * })\n */\nexport const HTTP_STATUS_REDIRECT = new InjectionToken('http.status.redirect');\n","import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { Router } from '@angular/router';\nimport { TokenResponse } from 'angular-oauth2-oidc';\nimport { Observable, from, of, retry, switchMap, throwError } from 'rxjs';\nimport { AuthService } from '.';\nimport { HTTP_STATUS_REDIRECT, STATUS_REDIRECT } from './status-redirect.token';\n\n/**\n * Custom implementation of the `DefaultOAuthInterceptor` from angular-oauth2-oidc\n */\n@Injectable()\nexport class AuthInterceptor implements HttpInterceptor {\n constructor(\n private auth: AuthService,\n private router: Router,\n @Optional() @Inject(HTTP_STATUS_REDIRECT) private statusRedirect?: STATUS_REDIRECT[],\n ) {}\n\n public intercept(req: HttpRequest, next: HttpHandler): Observable> {\n const url = req.url?.toLowerCase() ?? '';\n\n const skip = req.headers.get('NoAuth') === 'true';\n if (req.headers.has('NoAuth')) {\n const newHeaders = req.headers.delete('NoAuth');\n req = req.clone({ headers: newHeaders });\n }\n if (skip) return next.handle(req);\n if (!url.startsWith('/api') || url.endsWith('/api/env.js')) return next.handle(req);\n\n return this.auth.getTokenSilently$().pipe(\n switchMap(token => {\n req = req.clone({\n headers: req.headers\n .set('X-Client-TimezoneOffset', `${-new Date().getTimezoneOffset() / 60}`)\n .set('X-Client-Timezone', `${Intl.DateTimeFormat().resolvedOptions().timeZone}`)\n .set('Authorization', `Bearer ${token}`),\n });\n return next.handle(req);\n }),\n retry({\n count: 1, // Only retry once\n delay: (err: any) => {\n if (err.status === 401) {\n // Try to login the last user or redirect to the login page if failed\n return from(this.auth.tryAutoLoginLastUser()).pipe(\n switchMap((token: TokenResponse) => {\n if (!token) {\n this.logout();\n return throwError(() => err);\n }\n return of(token.access_token);\n }),\n );\n }\n\n if (this.statusRedirect?.length) {\n const match = this.statusRedirect.find(m => m.statusCode === err.status);\n if (match) this.router.navigate(match.redirectTo);\n }\n return throwError(() => err);\n },\n }),\n );\n }\n\n /**\n * Logout and redirect to the current page. This will bring up the login dialog\n * before the navigation is completed.\n */\n logout() {\n const url = location.pathname + location.search;\n return this.auth.logout().then(() =>\n this.router.navigateByUrl(url).then(isNavigated => {\n if (!isNavigated) {\n location.href = url;\n }\n }),\n );\n }\n}\n","import { Component, OnDestroy, signal } from '@angular/core';\nimport { NavigationEnd, Router, Scroll } from '@angular/router';\nimport { Subscription, timer } from 'rxjs';\nimport { resetClient } from '../utils';\nimport { takeUntilDestroyed } from '@angular/core/rxjs-interop';\n\n@Component({\n selector: 'lib-callback',\n template: `\n \n @if (shouldDisplay()) {\n \n }\n `,\n styles: [\n `\n @keyframes fadeIn {\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n }\n\n :host {\n display: flex;\n align-items: center;\n justify-content: center;\n height: 100%;\n gap: 2rem;\n\n button {\n animation: fadeIn 0.5s ease-in-out;\n margin-bottom: -3.53rem;\n }\n\n .button-label {\n display: flex;\n place-items: center;\n gap: 0.5rem;\n }\n }\n `,\n ],\n standalone: false\n})\nexport class CallbackComponent implements OnDestroy {\n subscriptions: Subscription[] = [];\n shouldDisplay = signal(false);\n\n constructor(private router: Router) {\n this.router.events.pipe(takeUntilDestroyed()).subscribe((event) => {\n let routerEvent: NavigationEnd;\n\n if (event instanceof Scroll) {\n routerEvent = event.routerEvent as NavigationEnd;\n } else if (event instanceof NavigationEnd) {\n routerEvent = event;\n } else {\n return;\n }\n\n if (routerEvent.urlAfterRedirects.startsWith('/callback')) {\n this.router.navigate(['/']);\n }\n });\n\n this.subscriptions.push(timer(8000).subscribe(() => this.shouldDisplay.set(true)));\n }\n\n ngOnDestroy() {\n this.subscriptions.forEach((sub) => sub.unsubscribe());\n }\n\n async hardReload() {\n resetClient().then(() => {\n // Reload\n const url = location.href;\n location.href = url.substring(0, url.indexOf('/callback') > -1 ? url.indexOf('/callback') : url.length);\n });\n }\n}\n","import { BehaviorSubject, Observable, Subject } from 'rxjs';\nimport { deepMerge } from '../utils';\n\nexport abstract class AbstractStorage {\n values: Record = {};\n private listeners = new Map>();\n\n hasItem(identifier: string): boolean {\n try {\n const value =\n identifier.indexOf('.') > -1\n ? identifier.split('.').reduce((acc: any, key: string) => acc[key], this.values)\n : this.values[identifier];\n return value != null;\n } catch (ex) {\n return false;\n }\n }\n\n /**\n * Get an item from storage\n *\n * @param identifier can be a json path\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n getItem(identifier: string, defaultVal: any = ''): any {\n const value =\n identifier.indexOf('.') > -1\n ? identifier.split('.').reduce((acc, key, idx, arr) => {\n if (idx >= arr.length - 1 && defaultVal && acc[key] != null && typeof defaultVal !== typeof acc[key]) {\n // Stored value is not of expected type. Remove it.\n acc[key] = undefined;\n }\n return acc[key] != null ? acc[key] : idx < arr.length - 1 ? {} : defaultVal;\n }, this.values)\n : this.values[identifier] != null\n ? this.values[identifier]\n : defaultVal;\n // if (!value) console.error('Value could not be returned');\n return value;\n }\n\n /**\n * Watch for changes in a particular identifier and react.\n */\n getItemChanges(identifier: string, defaultVal: any = ''): Observable {\n if (this.listeners.has(identifier)) {\n return this.listeners.get(identifier)?.asObservable() as Observable;\n }\n const initial = this.getItem(identifier, defaultVal);\n const subj = new BehaviorSubject(initial);\n this.listeners.set(identifier, subj);\n return subj;\n }\n\n /**\n * Stores an item in our storage object in sessionStorage.\n *\n * @param identifier can be a json path\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n setItem(identifier: string, value: any) {\n if (identifier.indexOf('.') > -1) {\n // Identifier is a json path. Value must be deepmerged\n const obj: Record = {};\n const keys = identifier.split('.');\n keys.reduce((acc: any, key: string, idx: number, arr: string[]) => {\n acc[key] = idx < arr.length - 1 ? {} : value;\n return acc[key];\n }, obj);\n this.values = deepMerge(this.values, obj) as Record;\n } else if (['string', 'number', 'boolean'].includes(typeof value) || Array.isArray(value)) {\n // Single property identifier, and value is a primitive or array.\n this.values[identifier] = value;\n } else {\n // Single property identifier, and value is an object.\n this.values[identifier] = Object.assign(this.getItem(identifier, {}), value);\n }\n if (this.listeners.has(identifier)) {\n // Fire listeners if anybody is interested\n this.listeners.get(identifier)?.next(value);\n }\n this.storeCurrent();\n }\n\n /**\n * Remove a value from storage\n *\n * @param identifier can be a json path\n */\n removeItem(identifier: string, acc = this.values) {\n if (identifier.indexOf('.') > -1) {\n const keys = identifier.split('.');\n // One or more keys exist in this bucket.\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n this.removeItem(keys.slice(1).join('.'), (acc as any)[keys[0]]);\n // if (Object.keys(acc).length <= 1) {\n // delete acc[keys[0]];\n // }\n } else {\n delete acc[identifier];\n }\n if (this.listeners.has(identifier)) {\n this.listeners.get(identifier)?.next(null);\n }\n this.storeCurrent();\n }\n\n replaceItem(identifier: string, value: any, acc = this.values) {\n this.removeItem(identifier, acc);\n this.setItem(identifier, value);\n this.storeCurrent();\n }\n\n protected abstract storeCurrent(): void;\n\n abstract reset(): void;\n}\n","import { Injectable, OnDestroy } from '@angular/core';\nimport { Subscription } from 'rxjs';\nimport { objToString } from '../utils';\nimport { getEnv } from '../utils/getEnv';\nimport { getLocalStorage } from '../utils/getLocalStorage';\nimport { AbstractStorage } from './abstract-storage';\n\nconst storageKey = getEnv('storageKey', 'mySuite');\nconst EOF = ';';\n\n@Injectable({ providedIn: 'root' })\nexport class ApplicationStorageService extends AbstractStorage implements OnDestroy {\n private subscriptions: Subscription[] = [];\n private storage?: Storage;\n\n constructor() {\n super();\n\n // Load and decode personal settings\n this.values = collectValuesFromStorage(this.getStorage());\n\n // Deprecation fix\n this._replaceProp('customer.onlyActive', 'customer.onlyActiveMeters');\n }\n\n ngOnDestroy() {\n this.subscriptions.forEach((s) => s.unsubscribe());\n }\n\n /**\n * Used to deprecate a value.\n *\n * @param prop - the property holding the deprecated value\n * @param withProp - the property which should contain the value\n */\n private _replaceProp(prop: string, withProp: string) {\n if (this.hasItem(prop)) {\n this.setItem(withProp, this.getItem(prop));\n this.removeItem(prop);\n }\n }\n\n getStorage() {\n if (!this.storage) {\n this.storage = getLocalStorage();\n }\n return this.storage;\n }\n\n /**\n * Encode and store values\n */\n protected storeCurrent() {\n try {\n // Remove previous buffer from storage to reduce overflowing\n const storage = this.getStorage();\n const keys: string[] = [];\n for (let j = 0; j < storage.length; j++) {\n storage.key(j)?.includes(storageKey) && keys.push(String(storage.key(j)));\n }\n keys.forEach((k) => storage.removeItem(k));\n\n const valueStr = window.btoa(encodeURIComponent(objToString(this.values))) + EOF;\n // Split into chunks so that we avoid hitting browser limits\n const buffer = valueStr.match(/.{1,100000}/g);\n buffer?.forEach((v, i) => {\n const suffix = [...new Array(i)].map(() => '_').join('');\n storage.setItem(storageKey + suffix, v);\n });\n } catch (ex) {\n console.error(this.values, ex);\n }\n }\n\n reset() {\n const storage = this.getStorage();\n const keys: string[] = [];\n for (let j = 0; j < storage.length; j++) {\n storage.key(j)?.includes(storageKey) && keys.push(String(storage.key(j)));\n }\n keys.forEach((key) => storage.removeItem(key));\n }\n}\n\nexport function collectValuesFromStorage(storage = getLocalStorage()): any {\n // Load and decode personal settings\n const keys: string[] = [];\n const value: string[] = [];\n for (let j = 0; j < storage.length; j++) {\n storage.key(j)?.includes(storageKey) && keys.push(String(storage.key(j)));\n }\n keys.sort((a, b) => (a.length < b.length ? -1 : 1)).forEach((key) => value.push(storage.getItem(key) || ''));\n\n const valueStr = value.length > 0 ? value.join('') : '{}';\n let values = {};\n try {\n // Sometimes when storage is shared between a lot of environments\n // (such as it is when debugging localhost), the chunked storage can\n // have residue from larger configurations. This will make sure\n // that we skip all chunks which are part of this overflow.\n const str = valueStr.substring(0, valueStr.indexOf(EOF) > 0 ? valueStr.indexOf(EOF) : valueStr.length);\n // Decrypt the valuestring (NOTE! The previous step sometimes fails,\n // so we have to fallback to the original valuestring)\n const decoded = window.atob(str || valueStr);\n // Decode the valuestring\n const unescaped = decodeURIComponent(decoded);\n // Parse the valuestring\n values = JSON.parse(unescaped);\n } catch (ex) {\n const err = 'DEBUG: Cannot parse previous settings. Starting blank...';\n }\n return values;\n}\n\n/**\n * Use only when injector is not available\n */\nexport function getAppSetting(identifier: string, defaultVal = '') {\n const values = collectValuesFromStorage();\n\n // Retreive identifier from setting\n if (identifier.indexOf('.') > -1) {\n return identifier\n .split('.')\n .reduce((acc, key, idx, arr) => acc[key] || (idx < arr.length - 1 ? {} : defaultVal), values);\n }\n return values[identifier] || {};\n}\n","import { HttpClient } from '@angular/common/http';\nimport { inject, Injectable, OnDestroy } from '@angular/core';\nimport { toSignal } from '@angular/core/rxjs-interop';\nimport { Title } from '@angular/platform-browser';\nimport { ActivatedRoute, NavigationEnd, Router } from '@angular/router';\nimport { BehaviorSubject, filter, firstValueFrom, Observable, skipWhile, Subscription, switchMap } from 'rxjs';\nimport { RequestCache } from './cache';\nimport { ApplicationStorageService } from '@logic-suite/shared/storage';\n\n@Injectable({ providedIn: 'root' })\nexport class AppService implements OnDestroy {\n // Proxy to storage service\n private storage = inject(ApplicationStorageService);\n getItem = (identifier: string, defaultVal: any = '') => this.storage.getItem(identifier, defaultVal);\n hasItem = (identifier: string) => this.storage.hasItem(identifier);\n setItem = (identifier: string, value: any) => this.storage.setItem(identifier, value);\n removeItem = (identifier: string, values?: Record) => this.storage.removeItem(identifier, values);\n replaceItem = (identifier: string, value: any, acc?: Record) =>\n this.storage.replaceItem(identifier, value, acc);\n\n private _application$ = new BehaviorSubject(1);\n get application$() {\n return this._application$.asObservable();\n }\n\n activeApplication = toSignal(this._application$);\n private _version$ = new BehaviorSubject(undefined);\n\n private previousUrl?: string;\n private currentUrl?: string;\n\n private subscriptions: Subscription[] = [];\n\n titleChanged$ = new BehaviorSubject('');\n\n constructor(\n private http: HttpClient,\n private title: Title,\n private router: Router,\n private route: ActivatedRoute,\n private cache: RequestCache,\n ) {\n // Auto read version for each app using this library, and set as attribute on document body\n this.loadVersion().subscribe((res) => {\n document.body.setAttribute('version', res.trim());\n this._version$.next(res.trim());\n });\n\n // Track routes\n this.subscriptions.push(\n this.router.events\n .pipe(\n filter((e) => e instanceof NavigationEnd),\n switchMap(() => this.route.queryParams),\n )\n .subscribe(() => {\n if (this.router.url.split('?')[0] !== this.currentUrl?.split('?')[0]) {\n // Only set previous url if the route has actually changed.\n // This excludes changes in query params\n const newParentRoute = this.router.url.substring(0, this.router.url.lastIndexOf('/'));\n const curParentRoute = this.currentUrl?.substring(0, this.currentUrl?.lastIndexOf('/'));\n if (!(this.currentUrl?.endsWith('/new') && newParentRoute === curParentRoute)) {\n // If we are redirecting from '/new' to an actual stored id, just replace url so we can\n // safely go back\n this.previousUrl = this.currentUrl;\n }\n }\n // Always replace current url, even with changes in query params\n // This will respect search and filtering\n this.currentUrl = this.router.url;\n }),\n );\n }\n\n ngOnDestroy(): void {\n this.subscriptions.forEach((sub) => sub.unsubscribe());\n }\n\n getPreviousUrl() {\n return this.previousUrl != null ? decodeURIComponent(this.previousUrl) : undefined;\n }\n\n private loadVersion(): Observable {\n return this.http.get(`assets/version.txt?d=${new Date().getTime()}`, {\n headers: { NoLoad: 'true' },\n responseType: 'text',\n });\n }\n\n getVersion() {\n return firstValueFrom(this._version$.pipe(skipWhile((v) => !v)));\n }\n\n getApplicationID(): number {\n return this._application$.value;\n }\n\n getTitleBase(): string {\n // prettier-ignore\n switch (this.getApplicationID()) {\n case 10:\n return 'Flex';\n case 11:\n return 'Flx Admin';\n case 12:\n return 'Flx Terminal';\n case 20:\n return 'Logic BS';\n }\n return 'Noova Energy';\n }\n\n getApplicationName(): string {\n // prettier-ignore\n switch (this.getApplicationID()) {\n // Logic Suite\n case 0:\n return 'Noova Energy';\n case 1:\n return 'Energy';\n case 2:\n return 'Notifications';\n case 3:\n return 'Sensors';\n case 4:\n return 'Facility';\n case 5:\n return 'Dashboard';\n // FLEX\n case 10:\n return 'Flx';\n case 11:\n return 'Flx Admin';\n case 12:\n return 'Flx Terminal';\n // LBS\n case 20:\n return 'Logic Business Solutions';\n }\n return '';\n }\n\n setApplicationID(id: number) {\n if (this._application$.value !== id) {\n this._application$.next(id);\n }\n }\n\n setTitle(part: string) {\n const title = this.getTitleBase();\n this.title.setTitle(part ? `${part} | ${title}` : title);\n this.titleChanged$.next(this.getTitle());\n }\n\n getTitle(): string {\n return this.title.getTitle();\n }\n\n invalidateCache() {\n this.cache.invalidate();\n }\n}\n","import { CommonModule } from '@angular/common';\nimport { Component, OnInit, inject, signal } from '@angular/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport { AppService } from '../app.service';\nimport { Browser, getEnv } from '../utils';\n\ntype Cache = {\n key: string;\n shown: boolean;\n details: CacheDetails[];\n};\ntype CacheDetails = {\n url: string;\n date?: Date;\n};\n\n@Component({\n selector: 'lib-info',\n templateUrl: './info.component.html',\n styleUrl: './info.component.scss',\n imports: [CommonModule, MatButtonModule]\n})\nexport class InfoComponent implements OnInit {\n env = getEnv('env');\n app = inject(AppService);\n appVersion?: string;\n browserName?: string;\n browserVersion?: string;\n isMobile = false;\n uaString = signal(navigator.userAgent);\n cache = signal([]);\n updateDate = signal(undefined);\n\n async ngOnInit() {\n this.appVersion = await this.app.getVersion();\n const b = Browser.getBrowser();\n this.browserName = b.browser;\n this.browserVersion = b.version;\n this.isMobile = b.isMobile;\n this.app.getApplicationName();\n\n // Get cache keys\n this.readCache();\n }\n\n private async readCache() {\n const cacheDetails = [] as Cache[];\n const cacheNames = await self.caches.keys();\n for (const name of cacheNames) {\n const currentCache = { key: name, shown: false, details: [] } as Cache;\n cacheDetails.push(currentCache);\n\n // Get the details\n const cache = await caches.open(name);\n const requests = await cache.keys();\n for (const request of requests) {\n const response = await cache.match(request);\n const date = response?.headers.get('date');\n currentCache.details.push({\n url: request.url,\n date: date ? new Date(date) : undefined,\n });\n\n // The last update date is equal to the date of the first response in the precache cache\n // Must handle both Workbox SW and Angular SW\n if ((name.includes('precache') || name.includes('app:cache')) && date != null) {\n const d = new Date(date);\n if (this.updateDate() == null || d.getTime() > (this.updateDate()?.getTime() ?? -1)) {\n this.updateDate.set(d);\n }\n }\n }\n }\n this.cache.set(cacheDetails);\n }\n\n reload() {\n location.reload();\n }\n\n async clearCache(cacheName: string) {\n await caches.delete(cacheName);\n this.readCache();\n }\n\n async hardReset() {\n if (confirm('This performs a hard reset of the app. Are you sure?')) {\n location.href = '/reset';\n }\n }\n}\n","\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Application info
Name:{{ app.getApplicationName() }}
Environment:{{ env }}
Version:{{ appVersion }}
Updated:{{ updateDate() != null ? (updateDate() | date: 'dd.MM.yyyy HH:mm') : 'Not available' }}
Client info
Client:{{ browserName }}
Version:{{ browserVersion }}
Mobile:{{ isMobile ? '☑️' : '⬛' }}
UA:{{ uaString() }}
\n\n
\n \n \n
\n\n@if (cache().length > 0) {\n
\n

Cache

\n @for (c of cache(); track c.key) {\n
\n
\n {{ c.key }}\n {{ c.shown ? '▲' : '▼' }}\n
\n @if (c.shown) {\n \n \n @for (detail of c.details; track detail.url) {\n \n \n \n \n }\n \n
{{ detail.date ? (detail.date | date: 'dd.MM.yyyy HH:mm') : ' ' }}{{ detail.url }}
\n \n }\n
\n }\n
\n}\n","/**\n * @module constants\n * @summary Useful constants\n * @description\n * Collection of useful date constants.\n *\n * The constants could be imported from `date-fns/constants`:\n *\n * ```ts\n * import { maxTime, minTime } from \"./constants/date-fns/constants\";\n *\n * function isAllowedTime(time) {\n * return time <= maxTime && time >= minTime;\n * }\n * ```\n */\n\n/**\n * @constant\n * @name daysInWeek\n * @summary Days in 1 week.\n */\nexport const daysInWeek = 7;\n\n/**\n * @constant\n * @name daysInYear\n * @summary Days in 1 year.\n *\n * @description\n * How many days in a year.\n *\n * One years equals 365.2425 days according to the formula:\n *\n * > Leap year occurs every 4 years, except for years that are divisible by 100 and not divisible by 400.\n * > 1 mean year = (365+1/4-1/100+1/400) days = 365.2425 days\n */\nexport const daysInYear = 365.2425;\n\n/**\n * @constant\n * @name maxTime\n * @summary Maximum allowed time.\n *\n * @example\n * import { maxTime } from \"./constants/date-fns/constants\";\n *\n * const isValid = 8640000000000001 <= maxTime;\n * //=> false\n *\n * new Date(8640000000000001);\n * //=> Invalid Date\n */\nexport const maxTime = Math.pow(10, 8) * 24 * 60 * 60 * 1000;\n\n/**\n * @constant\n * @name minTime\n * @summary Minimum allowed time.\n *\n * @example\n * import { minTime } from \"./constants/date-fns/constants\";\n *\n * const isValid = -8640000000000001 >= minTime;\n * //=> false\n *\n * new Date(-8640000000000001)\n * //=> Invalid Date\n */\nexport const minTime = -maxTime;\n\n/**\n * @constant\n * @name millisecondsInWeek\n * @summary Milliseconds in 1 week.\n */\nexport const millisecondsInWeek = 604800000;\n\n/**\n * @constant\n * @name millisecondsInDay\n * @summary Milliseconds in 1 day.\n */\nexport const millisecondsInDay = 86400000;\n\n/**\n * @constant\n * @name millisecondsInMinute\n * @summary Milliseconds in 1 minute\n */\nexport const millisecondsInMinute = 60000;\n\n/**\n * @constant\n * @name millisecondsInHour\n * @summary Milliseconds in 1 hour\n */\nexport const millisecondsInHour = 3600000;\n\n/**\n * @constant\n * @name millisecondsInSecond\n * @summary Milliseconds in 1 second\n */\nexport const millisecondsInSecond = 1000;\n\n/**\n * @constant\n * @name minutesInYear\n * @summary Minutes in 1 year.\n */\nexport const minutesInYear = 525600;\n\n/**\n * @constant\n * @name minutesInMonth\n * @summary Minutes in 1 month.\n */\nexport const minutesInMonth = 43200;\n\n/**\n * @constant\n * @name minutesInDay\n * @summary Minutes in 1 day.\n */\nexport const minutesInDay = 1440;\n\n/**\n * @constant\n * @name minutesInHour\n * @summary Minutes in 1 hour.\n */\nexport const minutesInHour = 60;\n\n/**\n * @constant\n * @name monthsInQuarter\n * @summary Months in 1 quarter.\n */\nexport const monthsInQuarter = 3;\n\n/**\n * @constant\n * @name monthsInYear\n * @summary Months in 1 year.\n */\nexport const monthsInYear = 12;\n\n/**\n * @constant\n * @name quartersInYear\n * @summary Quarters in 1 year\n */\nexport const quartersInYear = 4;\n\n/**\n * @constant\n * @name secondsInHour\n * @summary Seconds in 1 hour.\n */\nexport const secondsInHour = 3600;\n\n/**\n * @constant\n * @name secondsInMinute\n * @summary Seconds in 1 minute.\n */\nexport const secondsInMinute = 60;\n\n/**\n * @constant\n * @name secondsInDay\n * @summary Seconds in 1 day.\n */\nexport const secondsInDay = secondsInHour * 24;\n\n/**\n * @constant\n * @name secondsInWeek\n * @summary Seconds in 1 week.\n */\nexport const secondsInWeek = secondsInDay * 7;\n\n/**\n * @constant\n * @name secondsInYear\n * @summary Seconds in 1 year.\n */\nexport const secondsInYear = secondsInDay * daysInYear;\n\n/**\n * @constant\n * @name secondsInMonth\n * @summary Seconds in 1 month\n */\nexport const secondsInMonth = secondsInYear / 12;\n\n/**\n * @constant\n * @name secondsInQuarter\n * @summary Seconds in 1 quarter.\n */\nexport const secondsInQuarter = secondsInMonth * 3;\n\n/**\n * @constant\n * @name constructFromSymbol\n * @summary Symbol enabling Date extensions to inherit properties from the reference date.\n *\n * The symbol is used to enable the `constructFrom` function to construct a date\n * using a reference date and a value. It allows to transfer extra properties\n * from the reference date to the new date. It's useful for extensions like\n * [`TZDate`](https://github.com/date-fns/tz) that accept a time zone as\n * a constructor argument.\n */\nexport const constructFromSymbol = Symbol.for(\"constructDateFrom\");","import { constructFromSymbol } from \"./constants.js\";\n\n/**\n * @name constructFrom\n * @category Generic Helpers\n * @summary Constructs a date using the reference date and the value\n *\n * @description\n * The function constructs a new date using the constructor from the reference\n * date and the given value. It helps to build generic functions that accept\n * date extensions.\n *\n * It defaults to `Date` if the passed reference date is a number or a string.\n *\n * Starting from v3.7.0, it allows to construct a date using `[Symbol.for(\"constructDateFrom\")]`\n * enabling to transfer extra properties from the reference date to the new date.\n * It's useful for extensions like [`TZDate`](https://github.com/date-fns/tz)\n * that accept a time zone as a constructor argument.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The reference date to take constructor from\n * @param value - The value to create the date\n *\n * @returns Date initialized using the given date and value\n *\n * @example\n * import { constructFrom } from \"./constructFrom/date-fns\";\n *\n * // A function that clones a date preserving the original type\n * function cloneDate(date: DateType): DateType {\n * return constructFrom(\n * date, // Use constructor from the given date\n * date.getTime() // Use the date value to create a new date\n * );\n * }\n */\nexport function constructFrom(date, value) {\n if (typeof date === \"function\") return date(value);\n if (date && typeof date === \"object\" && constructFromSymbol in date) return date[constructFromSymbol](value);\n if (date instanceof Date) return new date.constructor(value);\n return new Date(value);\n}\n\n// Fallback for modularized imports:\nexport default constructFrom;","import { constructFrom } from \"./constructFrom.js\";\n\n/**\n * @name toDate\n * @category Common Helpers\n * @summary Convert the given argument to an instance of Date.\n *\n * @description\n * Convert the given argument to an instance of Date.\n *\n * If the argument is an instance of Date, the function returns its clone.\n *\n * If the argument is a number, it is treated as a timestamp.\n *\n * If the argument is none of the above, the function returns Invalid Date.\n *\n * Starting from v3.7.0, it clones a date using `[Symbol.for(\"constructDateFrom\")]`\n * enabling to transfer extra properties from the reference date to the new date.\n * It's useful for extensions like [`TZDate`](https://github.com/date-fns/tz)\n * that accept a time zone as a constructor argument.\n *\n * **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n * @typeParam ResultDate - The result `Date` type, it is the type returned from the context function if it is passed, or inferred from the arguments.\n *\n * @param argument - The value to convert\n *\n * @returns The parsed date in the local time zone\n *\n * @example\n * // Clone the date:\n * const result = toDate(new Date(2014, 1, 11, 11, 30, 30))\n * //=> Tue Feb 11 2014 11:30:30\n *\n * @example\n * // Convert the timestamp to date:\n * const result = toDate(1392098430000)\n * //=> Tue Feb 11 2014 11:30:30\n */\nexport function toDate(argument, context) {\n // [TODO] Get rid of `toDate` or `constructFrom`?\n return constructFrom(context || argument, argument);\n}\n\n// Fallback for modularized imports:\nexport default toDate;","/**\n * @name isDate\n * @category Common Helpers\n * @summary Is the given value a date?\n *\n * @description\n * Returns true if the given value is an instance of Date. The function works for dates transferred across iframes.\n *\n * @param value - The value to check\n *\n * @returns True if the given value is a date\n *\n * @example\n * // For a valid date:\n * const result = isDate(new Date())\n * //=> true\n *\n * @example\n * // For an invalid date:\n * const result = isDate(new Date(NaN))\n * //=> true\n *\n * @example\n * // For some value:\n * const result = isDate('2014-02-31')\n * //=> false\n *\n * @example\n * // For an object:\n * const result = isDate({})\n * //=> false\n */\nexport function isDate(value) {\n return value instanceof Date || typeof value === \"object\" && Object.prototype.toString.call(value) === \"[object Date]\";\n}\n\n// Fallback for modularized imports:\nexport default isDate;","import { toDate } from \"./toDate.js\";\n\n/**\n * The {@link endOfDay} function options.\n */\n\n/**\n * @name endOfDay\n * @category Day Helpers\n * @summary Return the end of a day for the given date.\n *\n * @description\n * Return the end of a day for the given date.\n * The result will be in the local timezone.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n * @typeParam ResultDate - The result `Date` type, it is the type returned from the context function if it is passed, or inferred from the arguments.\n *\n * @param date - The original date\n * @param options - An object with options\n *\n * @returns The end of a day\n *\n * @example\n * // The end of a day for 2 September 2014 11:55:00:\n * const result = endOfDay(new Date(2014, 8, 2, 11, 55, 0))\n * //=> Tue Sep 02 2014 23:59:59.999\n */\nexport function endOfDay(date, options) {\n const _date = toDate(date, options?.in);\n _date.setHours(23, 59, 59, 999);\n return _date;\n}\n\n// Fallback for modularized imports:\nexport default endOfDay;","import { toDate } from \"./toDate.js\";\n\n/**\n * @name isAfter\n * @category Common Helpers\n * @summary Is the first date after the second one?\n *\n * @description\n * Is the first date after the second one?\n *\n * @param date - The date that should be after the other one to return true\n * @param dateToCompare - The date to compare with\n *\n * @returns The first date is after the second date\n *\n * @example\n * // Is 10 July 1989 after 11 February 1987?\n * const result = isAfter(new Date(1989, 6, 10), new Date(1987, 1, 11))\n * //=> true\n */\nexport function isAfter(date, dateToCompare) {\n return +toDate(date) > +toDate(dateToCompare);\n}\n\n// Fallback for modularized imports:\nexport default isAfter;","import { AbstractControl, ValidatorFn } from '@angular/forms';\nimport { endOfDay, isAfter, isDate } from 'date-fns';\n\nexport class CustomValidator {\n static email(): ValidatorFn {\n return (control: AbstractControl): { [key: string]: any } | null => {\n if (Array.isArray(control.value)) {\n return control.value.some(v => !isValidEmail(v)) ? { email: true } : null;\n } else {\n return !isValidEmail(control.value) ? { email: true } : null;\n }\n };\n }\n\n static phone(): ValidatorFn {\n const checkLength = (val: string) => {\n if (!!val && val.length < 8) {\n return { minLength: { requiredLength: 8, actualLength: val.length } };\n }\n if (!!val && val.length > 12) {\n return { maxLength: { maxLength: 12, actualLength: val.length } };\n }\n return null;\n };\n\n return (control: AbstractControl): { [key: string]: any } | null => {\n if (Array.isArray(control.value)) {\n const errors = control.value.map(v => checkLength(v)).filter(v => !!v);\n return control.value.some(v => !isValidPhone(v)) ? { email: true } : errors.length ? errors : null;\n } else {\n return !isValidPhone(control.value) ? { email: true } : checkLength(control.value);\n }\n };\n }\n\n static date(): ValidatorFn {\n return (control: AbstractControl): { [key: string]: any } | null => {\n return control.value != null && !isDate(control.value) ? { date: true } : null;\n };\n }\n\n static dateBeforeToday(): ValidatorFn {\n return (ctrl: AbstractControl) => {\n if (isAfter(ctrl.value, endOfDay(new Date()))) {\n return { beforeToday: 'Date cannot be in future' };\n }\n return null;\n };\n }\n}\n\nexport function isValidPhone(val: string): boolean {\n // eslint-disable-next-line no-useless-escape\n const PHONE_REGEXP = /^[0-9\\+]{8,12}$/i;\n val = val?.split(' ').join('') ?? val; // Validate without spaces\n // Returns false if the non-null value fails the regexp test\n return !val || PHONE_REGEXP.test(val);\n}\n\nexport function isValidEmail(val: string): boolean {\n // eslint-disable-next-line no-useless-escape\n const EMAIL_REGEXP = /^(?:[^\\r\\n\\t\\f\\v \\.@¤]\\.{0,1})+@(?:[^\\r\\n\\t\\f\\v \\.@¤]\\.{0,1})+\\.[^\\r\\n\\t\\f\\v \\.@¤]{2,}$/i;\n\n // Returns false if the non-null value fails the regexp test\n return !val || EMAIL_REGEXP.test(val);\n}\n","import { Component, OnInit, WritableSignal, inject, signal } from '@angular/core';\nimport { FormControl } from '@angular/forms';\nimport { AuthService } from '.';\nimport { AppService } from '../app.service';\nimport { isValidEmail } from '../form';\nimport { titleCase } from '../utils';\nimport { getLocalStorage } from '../utils/getLocalStorage';\n\n@Component({\n selector: 'lib-login',\n templateUrl: './login.component.html',\n styleUrls: ['./login.component.scss'],\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: { class: 'login-form' },\n standalone: false\n})\nexport class LoginComponent implements OnInit {\n private readonly auth = inject(AuthService);\n private readonly app = inject(AppService);\n\n email = new FormControl('');\n applicationName = this.app.getApplicationName();\n lastUser: WritableSignal = signal(undefined);\n\n ngOnInit(): void {\n const lastUser = getLocalStorage().getItem('user') ?? undefined;\n if (lastUser && isValidEmail(lastUser)) {\n this.lastUser.set(lastUser);\n this.email.setValue(this.lastUser()!);\n }\n }\n\n reset() {\n this.lastUser.set(undefined);\n this.email.reset();\n }\n\n login() {\n const user = this.email.value as string;\n if (user && isValidEmail(user)) {\n const domain = user.split('@')[1].split('.')[0].toLowerCase();\n const params = new URLSearchParams(window.location.search);\n const returnTo = params.has('returnTo') ? params.get('returnTo') : undefined;\n this.auth.login({ ...(returnTo ? { returnTo } : {}), idp: `${titleCase(domain)}AD`, login: user });\n }\n return false;\n }\n}\n","
\n
\n \n

{{ applicationName }}

\n
\n @if (!lastUser()) {\n
\n

{{ 'Please fill in the email address you wish to log on with' | translate }}

\n \n Email\n \n email\n \n
\n
\n \n
\n } @else {\n
\n

{{ 'Last time you logged in with' | translate }}

\n \n \n
\n }\n
\n","import { HTTP_INTERCEPTORS } from '@angular/common/http';\nimport { NgModule, inject, provideAppInitializer } from '@angular/core';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\nimport { RouterModule } from '@angular/router';\nimport { TranslateModule } from '@ngx-translate/core';\nimport { OAuthModule, OAuthStorage } from 'angular-oauth2-oidc';\n\nimport { getLocalStorage } from '../utils/getLocalStorage';\nimport { AuthInterceptor } from './auth.interceptor';\nimport { AuthService } from './auth.service';\nimport { CallbackComponent } from './callback.component';\nimport { InfoComponent } from './info.component';\nimport { LoginComponent } from './login.component';\nimport { LogoutComponent } from './logout.component';\nimport { ResetComponent } from './reset.component';\n\n// We need a factory, since localStorage is not available during AOT build time.\nexport function storageFactory(): OAuthStorage {\n return getLocalStorage();\n}\n\n@NgModule({\n declarations: [LogoutComponent, CallbackComponent, LoginComponent],\n imports: [\n MatProgressSpinnerModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatIconModule,\n ReactiveFormsModule,\n TranslateModule,\n OAuthModule.forRoot(),\n RouterModule.forChild([\n // Login route, will redirect to identity provider\n { path: 'login', component: LoginComponent, title: `Login | ${document.title}` },\n // Logout just invalidates current token and removes user from localStorage. It will not log out from identity provider\n { path: 'logout', component: LogoutComponent, title: `Logout | ${document.title}` },\n // Callback after keycloak has done its thing\n { path: 'callback', component: CallbackComponent },\n // Route to show info about the app, version, browser, etc\n { path: 'info', component: InfoComponent, title: `Info | ${document.title}` },\n // Route to reset all client storage and service-worker\n { path: 'reset', component: ResetComponent, title: `Reset | ${document.title}` },\n ]),\n ],\n providers: [\n { provide: HTTP_INTERCEPTORS, useClass: AuthInterceptor, multi: true },\n { provide: OAuthStorage, useFactory: storageFactory },\n provideAppInitializer(() => {\n const initializerFn = (\n (auth: AuthService) => () =>\n auth.initAuth()\n )(inject(AuthService));\n return initializerFn();\n }),\n ],\n exports: [LoginComponent],\n})\nexport class AuthModule {}\n","import { fromEvent, map, merge, Observable } from 'rxjs';\nimport { computed, inject, Injectable, signal } from '@angular/core';\nimport { takeUntilDestroyed } from '@angular/core/rxjs-interop';\nimport { Logger } from '@logic-suite/shared/logger/logger.service';\nimport { distinctUntilChanged, tap } from 'rxjs/operators';\n\nexport enum Connectivity {\n ONLINE = 'online',\n OFFLINE = 'offline',\n}\n\ninterface ConnectivityServiceState {\n connectivity: Connectivity;\n}\n\n@Injectable({ providedIn: 'root' })\nexport class ConnectivityService {\n private logger = inject(Logger);\n\n // Sources\n private onlineEvent$: Observable = fromEvent(window, Connectivity.ONLINE);\n private offlineEvent$: Observable = fromEvent(window, Connectivity.OFFLINE);\n connectivityChanged$ = merge(this.onlineEvent$, this.offlineEvent$).pipe(\n map((event) => event.type as Connectivity),\n distinctUntilChanged(),\n tap((connectivity) => this.logger.info(`Connectivity changed: ${connectivity}`, 'ConnectivityService')),\n );\n\n // State\n private readonly state = signal({\n connectivity: window.navigator.onLine ? Connectivity.ONLINE : Connectivity.OFFLINE,\n });\n\n // Selectors\n connectivity = computed(() => this.state().connectivity);\n // Computed selectors\n isOnline = computed(() => this.state().connectivity === Connectivity.ONLINE);\n isOffline = computed(() => this.state().connectivity === Connectivity.OFFLINE);\n\n constructor() {\n // Reducers\n this.connectivityChanged$.pipe(takeUntilDestroyed()).subscribe((connectivity) => {\n this.state.update((state) => ({\n ...state,\n connectivity,\n }));\n });\n }\n}\n","import { Injectable, OnDestroy } from '@angular/core';\nimport { toSignal } from '@angular/core/rxjs-interop';\nimport { getLocalStorage } from '@logic-suite/shared/utils/getLocalStorage';\nimport { BehaviorSubject, ReplaySubject, Subscription, filter } from 'rxjs';\nimport { Employee, EmployeeCustomer } from './profile.model';\n\nconst key = 'customer';\n@Injectable({\n providedIn: 'root',\n})\nexport class EmployeeService implements OnDestroy {\n private emp$ = new BehaviorSubject(undefined as unknown as Employee);\n private customer$ = new ReplaySubject(1);\n private currentCustomer?: EmployeeCustomer;\n currentEmployee = toSignal(this.emp$);\n\n subscriptions: Subscription[] = [];\n\n constructor() {\n this.subscriptions.push(\n this.getEmployee().subscribe((employee: Employee) => {\n const customerStr = getLocalStorage().getItem(key);\n let customer: EmployeeCustomer | undefined =\n customerStr != null && typeof customerStr === 'string'\n ? (JSON.parse(customerStr) as EmployeeCustomer)\n : undefined;\n\n // Remove customer if set customer is one that user does not have\n if (customer != null && employee.customers?.findIndex(c => c.customerID === customer?.customerID) < 0)\n customer = undefined;\n\n // If no customer is set, pick the first\n if (!customer) customer = employee.customers[0];\n\n // Store for later\n this.setCustomer(customer);\n }),\n );\n }\n\n ngOnDestroy(): void {\n this.subscriptions.forEach(s => s.unsubscribe());\n }\n\n getCurrentCustomer() {\n return this.currentCustomer;\n }\n\n getCustomer$() {\n return this.customer$;\n }\n\n setCustomer(cust: EmployeeCustomer) {\n const custStr = JSON.stringify(cust);\n const oldStr = getLocalStorage().getItem(key);\n // Only set if new customer is not the same as old customer\n if (custStr != null && custStr != oldStr) {\n getLocalStorage().setItem(key, JSON.stringify(cust));\n this.currentCustomer = cust;\n this.customer$.next(cust);\n }\n if (custStr != null && this.currentCustomer == null) {\n // Set this initially\n this.currentCustomer = cust;\n this.customer$.next(cust);\n }\n }\n\n setEmployee(emp: Employee) {\n this.emp$.next(emp);\n }\n\n getEmployee() {\n return this.emp$.pipe(filter(emp => !!emp));\n }\n}\n","import { HttpClient } from '@angular/common/http';\nimport { Injectable, OnDestroy } from '@angular/core';\n\nimport { AuthService } from '@logic-suite/shared/auth';\nimport { Connectivity, ConnectivityService } from '@logic-suite/shared/connectivity/connectivity.service';\nimport { retryOn504 } from '@logic-suite/shared/utils';\nimport { BehaviorSubject, Subscription, catchError, filter, firstValueFrom, map, of, switchMap, take } from 'rxjs';\nimport { EmployeeService } from '../../views/user/profile/employee.service';\n\nexport interface Policy {\n features: FeatureType;\n policies: Policies;\n}\nexport type FeatureType = Partial>;\nexport enum Features {\n // Booking\n HourlyBooking = 'hourlyBooking',\n RandomSeating = 'randomSeating',\n Unavailable = 'unavailable',\n // Social\n InvisibleMode = 'invisibleMode',\n Neighborhood = 'neighborhood',\n NeighborhoodColleagues = 'neighborhoodColleagues',\n SelfService = 'selfService',\n AutoBooking = 'autoBooking',\n ShowEmployeesInMap = 'showEmployeesInMap',\n Teams = 'teams',\n UserConsent = 'userConsent',\n // FLX Express\n LockerReservation = 'lockerReservation',\n Lunch = 'lunch',\n MeetingRoom = 'meetingRoom',\n Parking = 'parking',\n // Other\n GDRPErasure = 'gdprerasure',\n Onboarding = 'onboardingFlow',\n ShowNeighborhoodColors = 'showNeighborhoodColors',\n Statistics = 'statistics',\n StreetView = 'streetView',\n}\n\nexport enum PolicyType {\n BookWorkdaysAhead = 'bookWorkdaysAhead',\n BookParkingDaysAhead = 'bookParkingDaysAhead',\n FlexLimit = 'flexLimit',\n WorkOnWeekends = 'workOnWeekends',\n NextWorkdayStartsAt = 'nextWorkdayStartsAt',\n}\nexport interface Policies {\n [PolicyType.BookParkingDaysAhead]?: BookWorkdaysAhead;\n [PolicyType.BookWorkdaysAhead]?: BookWorkdaysAhead[];\n [PolicyType.FlexLimit]?: FlexLimit;\n [PolicyType.WorkOnWeekends]?: WorkOnWeekends;\n [PolicyType.NextWorkdayStartsAt]?: NextWorkdayStartsAt;\n}\nexport interface BookWorkdaysAhead {\n bookDaysAhead: number | null; // Default\n number?: number; // Deprecated\n // If these properties are present, this is an override for the default policy\n allocatedBookDaysAhead?: number; // For everybody present in this neighborhood\n // The neighborhood\n entryID?: string;\n entryType?: string;\n}\nexport interface FlexLimit {\n number: number;\n period: 'month' | 'week';\n unit: 'percent' | 'day';\n}\nexport interface WorkOnWeekends {\n value: boolean;\n}\n\nexport interface NextWorkdayStartsAt {\n value: number;\n}\n\n@Injectable({ providedIn: 'root' })\nexport class PolicyService implements OnDestroy {\n private features: FeatureType = {};\n private policies: Policies = {};\n subscriptions: Subscription[] = [];\n workingHours = [8, 9, 10, 11, 12, 13, 14, 15];\n\n private isLoaded$ = new BehaviorSubject(false);\n\n constructor(\n private http: HttpClient,\n private auth: AuthService,\n private employee: EmployeeService,\n private connectivityService: ConnectivityService,\n ) {\n this.subscriptions.push(\n this.auth.isLoggedIn$\n .pipe(\n filter(flag => flag === true),\n take(1),\n switchMap(() => this.employee.getCustomer$()),\n switchMap(() => this.loadPolicy()),\n )\n .subscribe(policy => this.policyLoaded(policy as Policy)),\n );\n }\n\n ngOnDestroy(): void {\n this.subscriptions.forEach(s => s.unsubscribe());\n }\n\n private policyLoaded(policy: Policy) {\n this.features = policy.features;\n this.policies = policy.policies;\n this.isLoaded$.next(true);\n }\n\n private loadPolicy() {\n this.isLoaded$.next(false);\n return this.http.get('/api/flex/Policy').pipe(\n catchError(err => {\n // Request failed. If we are online, just return and die.\n if (this.connectivityService.isOnline()) return err.pipe(retryOn504());\n // We are offline. Retry when gaining connectivity\n firstValueFrom(\n this.connectivityService.connectivityChanged$.pipe(\n filter(c => c === Connectivity.ONLINE),\n switchMap(() => this.loadPolicy()),\n ),\n ).then(policy => this.policyLoaded(policy as Policy));\n // ...and return a temporary dummy policy so that we may initialize app.\n return of({\n features: {\n hourlyBooking: false,\n randomSeating: false,\n unavailable: true,\n invisibleMode: true,\n neighborhood: false,\n neighborhoodColleagues: false,\n showEmployeesInMap: false,\n teams: false,\n lockerReservation: false,\n lunch: false,\n meetingRoom: false,\n parking: false,\n gdprerasure: true,\n onboardingFlow: false,\n statistics: false,\n streetView: false,\n selfService: false,\n autoBooking: false,\n },\n policies: {\n bookParkingDaysAhead: { bookDaysAhead: 0 },\n bookWorkdaysAhead: [{ bookDaysAhead: 0 }],\n flexLimit: { number: 40, unit: 'percent', period: 'month' },\n nextWorkdayStartsAt: { value: 17 },\n workOnWeekends: { value: false },\n },\n } as Policy);\n }),\n );\n }\n ensurePolicyLoaded() {\n return this.isLoaded$.pipe(\n filter(loaded => !!loaded),\n map(() => ({ features: this.features, policies: this.policies })),\n );\n }\n\n async hasFeatureAsync(feature: keyof FeatureType) {\n await firstValueFrom(this.ensurePolicyLoaded());\n return this.hasFeature(feature);\n }\n hasFeature(feature: keyof FeatureType) {\n return Object.keys(this.features).includes(feature as string) && this.features[feature] != false;\n }\n featureChanged(feature: keyof FeatureType) {\n return this.isLoaded$.pipe(\n filter(loaded => !!loaded),\n map(() => this.hasFeature(feature)),\n );\n }\n\n getPolicy(name: keyof Policies) {\n return this.policies[name];\n }\n\n getPolicyAsync(name: keyof Policies) {\n return new Promise((resolve, reject) => {\n firstValueFrom(this.ensurePolicyLoaded()).then(() => {\n resolve(this.getPolicy(name));\n });\n });\n }\n policyChanged(name: keyof Policies) {\n return this.isLoaded$.pipe(\n filter(loaded => !!loaded),\n map(() => this.getPolicy(name)),\n );\n }\n}\n\n@Injectable({ providedIn: 'root' })\nexport class PolicyResolver {\n constructor(private service: PolicyService) {}\n\n resolve() {\n return this.service.ensurePolicyLoaded().pipe(map(p => !!p));\n }\n}\n"],"mappings":"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","names":["ɵɵelementStart","ɵɵtext","ɵɵelementEnd","ɵɵadvance","ɵɵtextInterpolate","ctx_r0","error","ResetComponent","constructor","setTimeout","reset","__async","res","resetClient","location","href","selectors","decls","vars","consts","template","rf","ctx","ɵɵtemplate","ResetComponent_Conditional_2_Template","ResetComponent_Conditional_3_Template","ɵɵconditional","SimpleSnackBar_Conditional_2_Template","rf","ctx","_r1","ɵɵgetCurrentView","ɵɵelementStart","ɵɵlistener","ɵɵrestoreView","ctx_r1","ɵɵnextContext","ɵɵresetView","ɵɵtext","ɵɵelementEnd","ɵɵadvance","ɵɵtextInterpolate1","_c0","MatSnackBarContainer_ng_template_4_Template","MAX_TIMEOUT","MatSnackBarRef","Subject","containerInstance","_overlayRef","duration","MAT_SNACK_BAR_DATA","InjectionToken","MatSnackBarConfig","MatSnackBarLabel","__ngFactoryType__","ɵɵdefineDirective","MatSnackBarActions","MatSnackBarAction","SimpleSnackBar","inject","ɵɵdefineComponent","ɵɵtemplate","ɵɵconditional","MatButton","matSnackBarAnimations","trigger","state","style","transition","animate","MatSnackBarContainer","BasePortalOutlet","NgZone","ElementRef","ChangeDetectorRef","Platform","DOCUMENT","_IdGenerator","config","portal","result","event","fromState","toState","onEnter","element","panelClasses","cssClass","label","labelClass","id","modals","i","modal","ariaOwns","newValue","inertElement","liveElement","focusedElement","ɵɵviewQuery","CdkPortalOutlet","_t","ɵɵqueryRefresh","ɵɵloadQuery","ɵɵsyntheticHostListener","$event","ɵɵsyntheticHostProperty","ɵɵInheritDefinitionFeature","ɵɵelement","ɵɵattribute","MAT_SNACK_BAR_DEFAULT_OPTIONS_FACTORY","MAT_SNACK_BAR_DEFAULT_OPTIONS","MatSnackBar","Overlay","LiveAnnouncer","Injector","BreakpointObserver","parent","value","component","template","message","action","_config","__spreadValues","overlayRef","userInjector","injector","containerPortal","ComponentPortal","containerRef","content","userConfig","container","snackBarRef","TemplateRef","TemplatePortal","contentRef","Breakpoints","takeUntil","overlayConfig","OverlayConfig","positionStrategy","isRtl","isLeft","isRight","ɵɵdefineInjectable","MatSnackBarModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","MatSnackBar","OverlayModule","PortalModule","MatButtonModule","MatCommonModule","SimpleSnackBar","AUTH_TOKEN","InjectionToken","_c0","MatProgressSpinner_ng_template_0_Template","rf","ctx","ɵɵnamespaceSVG","ɵɵelementStart","ɵɵelement","ɵɵelementEnd","ctx_r0","ɵɵnextContext","ɵɵattribute","ɵɵadvance","ɵɵstyleProp","MAT_PROGRESS_SPINNER_DEFAULT_OPTIONS","InjectionToken","MAT_PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY","BASE_SIZE","BASE_STROKE_WIDTH","MatProgressSpinner","inject","ElementRef","value","animationMode","ANIMATION_MODULE_TYPE","defaults","v","size","viewBox","__ngFactoryType__","ɵɵdefineComponent","ɵɵviewQuery","_t","ɵɵqueryRefresh","ɵɵloadQuery","ɵɵclassMap","ɵɵclassProp","numberAttribute","ɵɵInputTransformsFeature","ɵɵtemplate","ɵɵtemplateRefExtractor","ɵɵnamespaceHTML","ɵɵelementContainer","circle_r2","ɵɵreference","ɵɵproperty","NgTemplateOutlet","MatProgressSpinnerModule","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","MatCommonModule","LogoutComponent","constructor","auth","router","subscriptions","ngOnInit","isLoggedIn","logout","then","getLocalStorage","removeItem","finally","navigate","ngOnDestroy","forEach","sub","unsubscribe","ɵɵdirectiveInject","AuthService","Router","selectors","standalone","decls","vars","template","rf","ctx","ɵɵelement","AuthGuard","constructor","auth","inject","AuthService","router","Router","canActivate","handleAuthState","canLoad","__async","params","URLSearchParams","window","location","search","returnTo","has","get","href","undefined","some","s","includes","firstValueFrom","isLoggedIn$","getEnv","login","createUrlTree","queryParams","factory","ɵfac","providedIn","takeUntilDestroyed","destroyRef","assertInInjectionContext","inject","DestroyRef","destroyed$","Observable","observer","source","takeUntil","toObservable","source","options","assertInInjectionContext","injector","inject","Injector","subject","ReplaySubject","watcher","effect","value","err","untracked","DestroyRef","toSignal","source","options","requiresCleanup","assertInInjectionContext","cleanupRef","DestroyRef","inject","equal","makeToSignalEqual","state","signal","sub","value","error","RuntimeError","computed","current","userEquality","b","AuthState","createAuthConfig","authToken","isDev","__spreadProps","__spreadValues","issuer","tenantId","redirectUri","window","location","origin","clientId","responseType","scope","showDebugInformation","custom","customQueryParams","waitForTokenInMsec","responseMode","useSilentRefresh","sessionChecksEnabled","silentRefreshRedirectUri","strictDiscoveryDocumentValidation","skipIssuerCheck","NullValidationHandler","validationParams","OAuthModuleConfig","DateTimeProvider","SystemDateTimeProvider","ɵSystemDateTimeProvider_BaseFactory","__ngFactoryType__","ɵɵgetInheritedFactory","ɵɵdefineInjectable","OAuthLogger","OAuthStorage","MemoryStorage","key","data","__ngFactoryType__","ɵɵdefineInjectable","OAuthEvent","type","OAuthSuccessEvent","info","OAuthInfoEvent","OAuthErrorEvent","reason","params","b64DecodeUnicode","str","base64","c","base64UrlEncode","AuthConfig","json","uri","WebHttpUrlEncodingCodec","k","v","ValidationHandler","UrlHelperService","customHashFragment","hash","questionMarkPosition","queryString","data","pair","separatorIndex","escapedKey","escapedValue","key","value","pairs","i","__ngFactoryType__","ɵɵdefineInjectable","digestLength","blockSize","K","hashBlocks","w","v","p","pos","len","a","b","c","d","e","f","g","h","u","t1","t2","Hash","dataLength","dataPos","out","bytesHashed","left","bitLenHi","bitLenLo","padLength","from","hash","data","h","Hash","digest","hkdfSalt","digestLength","HashHandler","decodeUTF8","s","d","b","i","encodeUTF8","arr","DefaultHashHandler","valueToHash","algorithm","__async","hash","byteArray","result","e","buffer","__ngFactoryType__","ɵɵdefineInjectable","OAuthService","AuthConfig","ngZone","http","storage","tokenValidationHandler","config","urlHelper","logger","crypto","document","dateTimeService","Subject","ua","test","filter","params","listenTo","noPrompt","shouldRunSilentRefresh","tap","debounceTime","options","state","args","url","errors","httpsCheck","issuerCheck","lcUrl","description","expiration","storedAt","timeout","of","OAuthInfoEvent","delay","now","delta","duration","maxTimeoutValue","fullUrl","resolve","reject","doc","OAuthErrorEvent","jwks","event","OAuthSuccessEvent","err","userName","password","headers","HttpHeaders","response","info","existingClaims","parameters","grantType","HttpParams","WebHttpUrlEncodingCodec","header","key","tokenResponse","switchMap","from","map","message","claims","existingIframe","iframe","redirectUri","first","success","race","windowRef","checkForPopupClosedTimer","tryLogin","cleanup","checkForPopupClosed","storageListener","listener","height","width","left","top","expectedPrefix","prefixedMessage","origin","issuer","sessionState","loginHint","customRedirectUri","that","nonce","seperationChar","scope","challenge","verifier","additionalState","addParams","error","tokenParams","accessToken","refreshToken","expiresIn","grantedScopes","customParameters","expiresInMilliSeconds","expiresAt","value","queryString","querySource","parts","code","href","nonceInState","userState","requestedRoute","PKCEVerifier","reason","idToken","idx","savedNonce","defaultSkewMsc","skipNonceCheck","tokenParts","headerBase64","headerJson","b64DecodeUnicode","claimsBase64","claimsJson","v","issuedAtMSec","expiresAtMSec","clockSkewInMSec","validationParams","atHashValid","atHashCheckEnabled","scopes","base64data","requestedProperty","noRedirectToLogoutUrl","id_token","customParam","logoutUrl","postLogoutUrl","silentRefreshFrame","sessionCheckFrame","unreserved","size","id","bytes","x","base64UrlEncode","challengeRaw","foundParameters","recognizedParameter","ignoreCorsIssues","revokeEndpoint","revokeAccessToken","revokeRefreshToken","revokationParams","catchError","throwError","combineLatest","res","ɵɵinject","NgZone","HttpClient","OAuthStorage","ValidationHandler","UrlHelperService","OAuthLogger","DOCUMENT","DateTimeProvider","OAuthResourceServerErrorHandler","OAuthNoopResourceServerErrorHandler","DefaultOAuthInterceptor","oAuthService","errorHandler","moduleConfig","u","req","next","merge","token","take","mergeMap","OAuthModuleConfig","createDefaultLogger","createDefaultStorage","MemoryStorage","provideOAuthClient","validationHandlerClass","NullValidationHandler","makeEnvironmentProviders","HTTP_INTERCEPTORS","SystemDateTimeProvider","OAuthModule","ɵɵdefineNgModule","ɵɵdefineInjector","CommonModule","AUTH_CONFIG","InjectionToken","ALL_ENVIRONMENTS","EnvService","isDev","getEnv","location","href","includes","env","getEnvironmentVariable","isValidEnvironment","key","window","__env","err","console","error","factory","ɵfac","providedIn","Logger","constructor","envService","inject","EnvService","logLevelColors","DEBUG","INFO","WARN","ERROR","activeLogLevels","getActiveLogLevels","getEnv","env","Set","log","level","message","source","args","has","color","prefix","style","sourcePrefix","console","debug","info","warn","error","factory","ɵfac","providedIn","OAuthWrapperService","constructor","oauthService","inject","OAuthService","configure","authConfig","loadDiscoveryDocument","loadDiscoveryDocument$","defer","tryLoginCodeFlow","tryLoginCodeFlow$","hasValidAccessToken","getAccessToken","initCodeFlow","returnTo","additionalParams","revokeTokenAndLogout","customParameters","revokeTokenAndLogout$","logOut","setupAutomaticSilentRefresh","refreshToken","refreshToken$","getRefreshToken","state","events","factory","ɵfac","providedIn","MAX_EVENTS","OAuthEventService","constructor","logger","inject","Logger","oAuthWrapperService","OAuthWrapperService","event$","events","pipe","catchError","error","EMPTY","share","infoEvent$","filter","event","OAuthInfoEvent","tap","logOauthInfoEvent","successEvent$","OAuthSuccessEvent","logOAuthSuccessEvent","errorEvent$","OAuthErrorEvent","logOAuthErrorEvent","state","signal","lastInfoEvent","lastSuccessEvent","lastErrorEvent","computed","takeUntilDestroyed","subscribe","update","__spreadProps","__spreadValues","slice","debug","warn","factory","ɵfac","providedIn","e2eTest","window","AuthService","constructor","authToken","oAuthWrapperService","inject","OAuthWrapperService","oAuthEventService","OAuthEventService","envService","EnvService","logger","Logger","router","Router","snack","MatSnackBar","authState$","BehaviorSubject","AuthState","NOT_ACTIVE","state","signal","authState","computed","isLoggedIn","AUTHENTICATED","isLoggedIn$","pipe","filter","NEEDS_LOGIN","map","hasValidAccessToken","handleLoginRequired$","errorEvent$","event","params","error","tap","getLocalStorage","getItem","firstValueFrom","getTokenSilently$","then","navigate","handleSilentRefreshTimeout$","type","takeUntilDestroyed","subscribe","update","__spreadProps","__spreadValues","effect","debug","getUser","token","getAccessToken","access","JSON","parse","atob","split","email","family_name","given_name","name","roles","realm_access","hasRoles","some","r","gr","toLowerCase","includes","initAuth","__async","INITIALIZING","next","Promise","resolve","authConfig","createAuthConfig","isDev","configure","setupAutomaticSilentRefresh","KEY","loadDiscoveryDocument","Error","INITIALIZED","PROCESSING","tryLoginCodeFlow","PROCESSED","setItem","url","decodeURIComponent","setTimeout","location","replace","sessionStorage","removeItem","times","Number","open","duration","clearCacheOnly","clearSWOnly","href","login","options","ex","errorToString","loginOptions","processLoginOptions","kcLoginOptions","loginOptionsToKCLoginOptions","initCodeFlow","returnTo","undefined","logout","revokeTokenAndLogout","info","logOut","tryAutoLoginLastUser","lastUser","domain","from","idp","titleCase","catchError","throwError","access_token","kc_idp_hint","login_hint","refresh","tokenFetch$","of","hasValidToken","iss","issuer","tenantId","hasRefreshToken","getRefreshToken","refreshToken","shareReplay","e","take","finalize","ɵɵinject","AUTH_TOKEN","factory","ɵfac","providedIn","HTTP_STATUS_REDIRECT","InjectionToken","AuthInterceptor","constructor","auth","router","statusRedirect","intercept","req","next","url","toLowerCase","skip","headers","get","has","newHeaders","delete","clone","startsWith","endsWith","handle","getTokenSilently$","pipe","switchMap","token","set","Date","getTimezoneOffset","Intl","DateTimeFormat","resolvedOptions","timeZone","retry","count","delay","err","status","from","tryAutoLoginLastUser","of","access_token","logout","throwError","length","match","find","m","statusCode","navigate","redirectTo","location","pathname","search","then","navigateByUrl","isNavigated","href","ɵɵinject","AuthService","Router","HTTP_STATUS_REDIRECT","factory","ɵfac","ɵɵelementStart","ɵɵlistener","ɵɵrestoreView","_r1","ctx_r1","ɵɵnextContext","ɵɵresetView","hardReload","ɵɵtext","ɵɵelementEnd","ɵɵadvance","ɵɵtextInterpolate","ɵɵpipeBind1","CallbackComponent","constructor","router","subscriptions","shouldDisplay","signal","events","pipe","takeUntilDestroyed","subscribe","event","routerEvent","Scroll","NavigationEnd","urlAfterRedirects","startsWith","navigate","push","timer","set","ngOnDestroy","forEach","sub","unsubscribe","__async","resetClient","then","url","location","href","substring","indexOf","length","ɵɵdirectiveInject","Router","selectors","standalone","decls","vars","consts","template","rf","ctx","ɵɵelement","ɵɵtemplate","CallbackComponent_Conditional_1_Template","ɵɵconditional","AbstractStorage","constructor","values","listeners","Map","hasItem","identifier","indexOf","split","reduce","acc","key","getItem","defaultVal","idx","arr","length","undefined","getItemChanges","has","get","asObservable","initial","subj","BehaviorSubject","set","setItem","value","obj","deepMerge","includes","Array","isArray","Object","assign","next","storeCurrent","removeItem","keys","slice","join","replaceItem","storageKey","getEnv","EOF","ApplicationStorageService","AbstractStorage","constructor","subscriptions","values","collectValuesFromStorage","getStorage","_replaceProp","ngOnDestroy","forEach","s","unsubscribe","prop","withProp","hasItem","setItem","getItem","removeItem","storage","getLocalStorage","storeCurrent","keys","j","length","key","includes","push","String","k","window","btoa","encodeURIComponent","objToString","match","v","i","suffix","Array","map","join","ex","console","error","reset","factory","ɵfac","providedIn","value","sort","a","b","valueStr","str","substring","indexOf","decoded","atob","unescaped","decodeURIComponent","JSON","parse","err","AppService","application$","_application$","asObservable","constructor","http","title","router","route","cache","storage","inject","ApplicationStorageService","getItem","identifier","defaultVal","hasItem","setItem","value","removeItem","values","replaceItem","acc","BehaviorSubject","activeApplication","toSignal","_version$","undefined","subscriptions","titleChanged$","loadVersion","subscribe","res","document","body","setAttribute","trim","next","push","events","pipe","filter","e","NavigationEnd","switchMap","queryParams","url","split","currentUrl","newParentRoute","substring","lastIndexOf","curParentRoute","endsWith","previousUrl","ngOnDestroy","forEach","sub","unsubscribe","getPreviousUrl","decodeURIComponent","get","Date","getTime","headers","NoLoad","responseType","getVersion","firstValueFrom","skipWhile","v","getApplicationID","getTitleBase","getApplicationName","setApplicationID","id","setTitle","part","getTitle","invalidateCache","invalidate","ɵɵinject","HttpClient","Title","Router","ActivatedRoute","RequestCache","factory","ɵfac","providedIn","ɵɵelementStart","ɵɵtext","ɵɵelementEnd","ɵɵadvance","ɵɵtextInterpolate","detail_r4","date","ɵɵpipeBind2","url","ɵɵrepeaterCreate","InfoComponent_Conditional_57_For_4_Conditional_6_For_3_Template","_forTrack1","ɵɵlistener","ɵɵrestoreView","_r3","c_r2","ɵɵnextContext","$implicit","ctx_r4","ɵɵresetView","clearCache","key","ɵɵrepeater","details","_r1","shown","ɵɵtemplate","InfoComponent_Conditional_57_For_4_Conditional_6_Template","ɵɵconditional","InfoComponent_Conditional_57_For_4_Template","_forTrack0","cache","InfoComponent","constructor","env","getEnv","app","inject","AppService","isMobile","uaString","signal","navigator","userAgent","updateDate","undefined","ngOnInit","__async","appVersion","getVersion","b","Browser","getBrowser","browserName","browser","browserVersion","version","getApplicationName","readCache","cacheDetails","cacheNames","self","caches","keys","name","currentCache","push","open","requests","request","match","headers","get","Date","includes","d","getTime","set","reload","location","cacheName","delete","hardReset","confirm","href","selectors","decls","vars","consts","template","rf","ctx","InfoComponent_Conditional_57_Template","length","CommonModule","DatePipe","MatButtonModule","MatButton","styles","maxTime","minTime","millisecondsInWeek","millisecondsInDay","millisecondsInMinute","millisecondsInHour","millisecondsInSecond","secondsInHour","secondsInDay","secondsInHour","secondsInWeek","secondsInYear","secondsInMonth","secondsInQuarter","constructFromSymbol","constructFrom","date","value","constructFromSymbol","toDate","argument","context","constructFrom","isDate","value","endOfDay","date","options","_date","toDate","isAfter","date","dateToCompare","toDate","isValidEmail","val","test","ɵɵelementStart","ɵɵtext","ɵɵelementEnd","ɵɵelement","ɵɵlistener","ɵɵrestoreView","_r1","ctx_r1","ɵɵnextContext","ɵɵresetView","login","ɵɵadvance","ɵɵtextInterpolate","ɵɵpipeBind1","ɵɵproperty","email","value","ɵɵtextInterpolate1","_r3","reset","lastUser","LoginComponent","constructor","auth","inject","AuthService","app","AppService","FormControl","applicationName","getApplicationName","signal","undefined","ngOnInit","getLocalStorage","getItem","isValidEmail","set","setValue","user","domain","split","toLowerCase","params","URLSearchParams","window","location","search","returnTo","has","get","__spreadProps","__spreadValues","idp","titleCase","selectors","hostAttrs","standalone","decls","vars","consts","template","rf","ctx","ɵɵtemplate","LoginComponent_Conditional_5_Template","LoginComponent_Conditional_6_Template","ɵɵconditional","storageFactory","getLocalStorage","AuthModule","provide","HTTP_INTERCEPTORS","useClass","AuthInterceptor","multi","OAuthStorage","useFactory","provideAppInitializer","auth","initAuth","inject","AuthService","imports","MatProgressSpinnerModule","MatFormFieldModule","MatInputModule","MatButtonModule","MatIconModule","ReactiveFormsModule","TranslateModule","OAuthModule","forRoot","RouterModule","forChild","path","component","LoginComponent","title","document","LogoutComponent","CallbackComponent","InfoComponent","ResetComponent","Connectivity","ConnectivityService","constructor","logger","inject","Logger","onlineEvent$","fromEvent","window","ONLINE","offlineEvent$","OFFLINE","connectivityChanged$","merge","pipe","map","event","type","distinctUntilChanged","tap","connectivity","info","state","signal","navigator","onLine","computed","isOnline","isOffline","takeUntilDestroyed","subscribe","update","__spreadProps","__spreadValues","factory","ɵfac","providedIn","key","EmployeeService","constructor","emp$","BehaviorSubject","undefined","customer$","ReplaySubject","currentEmployee","toSignal","subscriptions","push","getEmployee","subscribe","employee","customerStr","getLocalStorage","getItem","customer","JSON","parse","customers","findIndex","c","customerID","setCustomer","ngOnDestroy","forEach","s","unsubscribe","getCurrentCustomer","currentCustomer","getCustomer$","cust","custStr","stringify","oldStr","setItem","next","setEmployee","emp","pipe","filter","factory","ɵfac","providedIn","Features","PolicyType","PolicyService","constructor","http","auth","employee","connectivityService","features","policies","subscriptions","workingHours","isLoaded$","BehaviorSubject","push","isLoggedIn$","pipe","filter","flag","take","switchMap","getCustomer$","loadPolicy","subscribe","policy","policyLoaded","ngOnDestroy","forEach","s","unsubscribe","next","get","catchError","err","isOnline","retryOn504","firstValueFrom","connectivityChanged$","c","Connectivity","ONLINE","then","of","hourlyBooking","randomSeating","unavailable","invisibleMode","neighborhood","neighborhoodColleagues","showEmployeesInMap","teams","lockerReservation","lunch","meetingRoom","parking","gdprerasure","onboardingFlow","statistics","streetView","selfService","autoBooking","bookParkingDaysAhead","bookDaysAhead","bookWorkdaysAhead","flexLimit","number","unit","period","nextWorkdayStartsAt","value","workOnWeekends","ensurePolicyLoaded","loaded","map","hasFeatureAsync","feature","__async","hasFeature","Object","keys","includes","featureChanged","getPolicy","name","getPolicyAsync","Promise","resolve","reject","policyChanged","ɵɵinject","HttpClient","AuthService","EmployeeService","ConnectivityService","factory","ɵfac","providedIn","PolicyResolver","service","p"],"x_google_ignoreList":[1,3,6,9,23,24,25,26,27,28]}