Commit iniziale
This commit is contained in:
168
node_modules/@azure/msal-common/dist/client/BaseClient.mjs
generated
vendored
Normal file
168
node_modules/@azure/msal-common/dist/client/BaseClient.mjs
generated
vendored
Normal file
@@ -0,0 +1,168 @@
|
||||
/*! @azure/msal-common v15.1.1 2025-02-05 */
|
||||
'use strict';
|
||||
import { buildClientConfiguration } from '../config/ClientConfiguration.mjs';
|
||||
import { Logger } from '../logger/Logger.mjs';
|
||||
import { HeaderNames, Constants } from '../utils/Constants.mjs';
|
||||
import { name, version } from '../packageMetadata.mjs';
|
||||
import { CcsCredentialType } from '../account/CcsCredential.mjs';
|
||||
import { buildClientInfoFromHomeAccountId } from '../account/ClientInfo.mjs';
|
||||
import { RequestParameterBuilder } from '../request/RequestParameterBuilder.mjs';
|
||||
import { createDiscoveredInstance } from '../authority/AuthorityFactory.mjs';
|
||||
import { PerformanceEvents } from '../telemetry/performance/PerformanceEvent.mjs';
|
||||
import { ThrottlingUtils } from '../network/ThrottlingUtils.mjs';
|
||||
import { AuthError } from '../error/AuthError.mjs';
|
||||
import { createClientAuthError } from '../error/ClientAuthError.mjs';
|
||||
import { NetworkError } from '../error/NetworkError.mjs';
|
||||
import { invokeAsync } from '../utils/FunctionWrappers.mjs';
|
||||
import { networkError } from '../error/ClientAuthErrorCodes.mjs';
|
||||
|
||||
/*
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
/**
|
||||
* Base application class which will construct requests to send to and handle responses from the Microsoft STS using the authorization code flow.
|
||||
* @internal
|
||||
*/
|
||||
class BaseClient {
|
||||
constructor(configuration, performanceClient) {
|
||||
// Set the configuration
|
||||
this.config = buildClientConfiguration(configuration);
|
||||
// Initialize the logger
|
||||
this.logger = new Logger(this.config.loggerOptions, name, version);
|
||||
// Initialize crypto
|
||||
this.cryptoUtils = this.config.cryptoInterface;
|
||||
// Initialize storage interface
|
||||
this.cacheManager = this.config.storageInterface;
|
||||
// Set the network interface
|
||||
this.networkClient = this.config.networkInterface;
|
||||
// Set TelemetryManager
|
||||
this.serverTelemetryManager = this.config.serverTelemetryManager;
|
||||
// set Authority
|
||||
this.authority = this.config.authOptions.authority;
|
||||
// set performance telemetry client
|
||||
this.performanceClient = performanceClient;
|
||||
}
|
||||
/**
|
||||
* Creates default headers for requests to token endpoint
|
||||
*/
|
||||
createTokenRequestHeaders(ccsCred) {
|
||||
const headers = {};
|
||||
headers[HeaderNames.CONTENT_TYPE] = Constants.URL_FORM_CONTENT_TYPE;
|
||||
if (!this.config.systemOptions.preventCorsPreflight && ccsCred) {
|
||||
switch (ccsCred.type) {
|
||||
case CcsCredentialType.HOME_ACCOUNT_ID:
|
||||
try {
|
||||
const clientInfo = buildClientInfoFromHomeAccountId(ccsCred.credential);
|
||||
headers[HeaderNames.CCS_HEADER] = `Oid:${clientInfo.uid}@${clientInfo.utid}`;
|
||||
}
|
||||
catch (e) {
|
||||
this.logger.verbose("Could not parse home account ID for CCS Header: " +
|
||||
e);
|
||||
}
|
||||
break;
|
||||
case CcsCredentialType.UPN:
|
||||
headers[HeaderNames.CCS_HEADER] = `UPN: ${ccsCred.credential}`;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return headers;
|
||||
}
|
||||
/**
|
||||
* Http post to token endpoint
|
||||
* @param tokenEndpoint
|
||||
* @param queryString
|
||||
* @param headers
|
||||
* @param thumbprint
|
||||
*/
|
||||
async executePostToTokenEndpoint(tokenEndpoint, queryString, headers, thumbprint, correlationId, queuedEvent) {
|
||||
if (queuedEvent) {
|
||||
this.performanceClient?.addQueueMeasurement(queuedEvent, correlationId);
|
||||
}
|
||||
const response = await this.sendPostRequest(thumbprint, tokenEndpoint, { body: queryString, headers: headers }, correlationId);
|
||||
if (this.config.serverTelemetryManager &&
|
||||
response.status < 500 &&
|
||||
response.status !== 429) {
|
||||
// Telemetry data successfully logged by server, clear Telemetry cache
|
||||
this.config.serverTelemetryManager.clearTelemetryCache();
|
||||
}
|
||||
return response;
|
||||
}
|
||||
/**
|
||||
* Wraps sendPostRequestAsync with necessary preflight and postflight logic
|
||||
* @param thumbprint - Request thumbprint for throttling
|
||||
* @param tokenEndpoint - Endpoint to make the POST to
|
||||
* @param options - Body and Headers to include on the POST request
|
||||
* @param correlationId - CorrelationId for telemetry
|
||||
*/
|
||||
async sendPostRequest(thumbprint, tokenEndpoint, options, correlationId) {
|
||||
ThrottlingUtils.preProcess(this.cacheManager, thumbprint);
|
||||
let response;
|
||||
try {
|
||||
response = await invokeAsync((this.networkClient.sendPostRequestAsync.bind(this.networkClient)), PerformanceEvents.NetworkClientSendPostRequestAsync, this.logger, this.performanceClient, correlationId)(tokenEndpoint, options);
|
||||
const responseHeaders = response.headers || {};
|
||||
this.performanceClient?.addFields({
|
||||
refreshTokenSize: response.body.refresh_token?.length || 0,
|
||||
httpVerToken: responseHeaders[HeaderNames.X_MS_HTTP_VERSION] || "",
|
||||
requestId: responseHeaders[HeaderNames.X_MS_REQUEST_ID] || "",
|
||||
}, correlationId);
|
||||
}
|
||||
catch (e) {
|
||||
if (e instanceof NetworkError) {
|
||||
const responseHeaders = e.responseHeaders;
|
||||
if (responseHeaders) {
|
||||
this.performanceClient?.addFields({
|
||||
httpVerToken: responseHeaders[HeaderNames.X_MS_HTTP_VERSION] || "",
|
||||
requestId: responseHeaders[HeaderNames.X_MS_REQUEST_ID] ||
|
||||
"",
|
||||
contentTypeHeader: responseHeaders[HeaderNames.CONTENT_TYPE] ||
|
||||
undefined,
|
||||
contentLengthHeader: responseHeaders[HeaderNames.CONTENT_LENGTH] ||
|
||||
undefined,
|
||||
httpStatus: e.httpStatus,
|
||||
}, correlationId);
|
||||
}
|
||||
throw e.error;
|
||||
}
|
||||
if (e instanceof AuthError) {
|
||||
throw e;
|
||||
}
|
||||
else {
|
||||
throw createClientAuthError(networkError);
|
||||
}
|
||||
}
|
||||
ThrottlingUtils.postProcess(this.cacheManager, thumbprint, response);
|
||||
return response;
|
||||
}
|
||||
/**
|
||||
* Updates the authority object of the client. Endpoint discovery must be completed.
|
||||
* @param updatedAuthority
|
||||
*/
|
||||
async updateAuthority(cloudInstanceHostname, correlationId) {
|
||||
this.performanceClient?.addQueueMeasurement(PerformanceEvents.UpdateTokenEndpointAuthority, correlationId);
|
||||
const cloudInstanceAuthorityUri = `https://${cloudInstanceHostname}/${this.authority.tenant}/`;
|
||||
const cloudInstanceAuthority = await createDiscoveredInstance(cloudInstanceAuthorityUri, this.networkClient, this.cacheManager, this.authority.options, this.logger, correlationId, this.performanceClient);
|
||||
this.authority = cloudInstanceAuthority;
|
||||
}
|
||||
/**
|
||||
* Creates query string for the /token request
|
||||
* @param request
|
||||
*/
|
||||
createTokenQueryParameters(request) {
|
||||
const parameterBuilder = new RequestParameterBuilder(request.correlationId, this.performanceClient);
|
||||
if (request.embeddedClientId) {
|
||||
parameterBuilder.addBrokerParameters({
|
||||
brokerClientId: this.config.authOptions.clientId,
|
||||
brokerRedirectUri: this.config.authOptions.redirectUri,
|
||||
});
|
||||
}
|
||||
if (request.tokenQueryParameters) {
|
||||
parameterBuilder.addExtraQueryParameters(request.tokenQueryParameters);
|
||||
}
|
||||
parameterBuilder.addCorrelationId(request.correlationId);
|
||||
return parameterBuilder.createQueryString();
|
||||
}
|
||||
}
|
||||
|
||||
export { BaseClient };
|
||||
//# sourceMappingURL=BaseClient.mjs.map
|
||||
Reference in New Issue
Block a user