UNPKG

@azure/msal-common

Version:
40 lines (37 loc) 1.86 kB
/*! @azure/msal-common v15.12.0 2025-08-19 */ 'use strict'; import { Authority, formatAuthorityUri } from './Authority.mjs'; import { createClientAuthError } from '../error/ClientAuthError.mjs'; import { PerformanceEvents } from '../telemetry/performance/PerformanceEvent.mjs'; import { invokeAsync } from '../utils/FunctionWrappers.mjs'; import { endpointResolutionError } from '../error/ClientAuthErrorCodes.mjs'; /* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Create an authority object of the correct type based on the url * Performs basic authority validation - checks to see if the authority is of a valid type (i.e. aad, b2c, adfs) * * Also performs endpoint discovery. * * @param authorityUri * @param networkClient * @param protocolMode * @internal */ async function createDiscoveredInstance(authorityUri, networkClient, cacheManager, authorityOptions, logger, correlationId, performanceClient) { performanceClient?.addQueueMeasurement(PerformanceEvents.AuthorityFactoryCreateDiscoveredInstance, correlationId); const authorityUriFinal = Authority.transformCIAMAuthority(formatAuthorityUri(authorityUri)); // Initialize authority and perform discovery endpoint check. const acquireTokenAuthority = new Authority(authorityUriFinal, networkClient, cacheManager, authorityOptions, logger, correlationId, performanceClient); try { await invokeAsync(acquireTokenAuthority.resolveEndpointsAsync.bind(acquireTokenAuthority), PerformanceEvents.AuthorityResolveEndpointsAsync, logger, performanceClient, correlationId)(); return acquireTokenAuthority; } catch (e) { throw createClientAuthError(endpointResolutionError); } } export { createDiscoveredInstance }; //# sourceMappingURL=AuthorityFactory.mjs.map