Estructura inicial del proyecto
This commit is contained in:
236
backend/node_modules/@azure/msal-common/dist/protocol/Authorize.mjs
generated
vendored
Normal file
236
backend/node_modules/@azure/msal-common/dist/protocol/Authorize.mjs
generated
vendored
Normal file
@ -0,0 +1,236 @@
|
||||
/*! @azure/msal-common v16.6.2 2026-05-19 */
|
||||
'use strict';
|
||||
import { addClientId, addScopes, addResource, addRedirectUri, addCorrelationId, addResponseMode, addClientInfo, addCliData, addPrompt, addDomainHint, addSid, addLoginHint, addCcsOid, addCcsUpn, addNonce, addState, addBrokerParameters, addClaims, addInstanceAware } from '../request/RequestParameterBuilder.mjs';
|
||||
import { INSTANCE_AWARE, CLIENT_ID } from '../constants/AADServerParamKeys.mjs';
|
||||
import { PromptValue } from '../utils/Constants.mjs';
|
||||
import { buildClientInfoFromHomeAccountId } from '../account/ClientInfo.mjs';
|
||||
import { mapToQueryString } from '../utils/UrlUtils.mjs';
|
||||
import { UrlString } from '../url/UrlString.mjs';
|
||||
import { createClientAuthError } from '../error/ClientAuthError.mjs';
|
||||
import { isInteractionRequiredError, InteractionRequiredAuthError } from '../error/InteractionRequiredAuthError.mjs';
|
||||
import { ServerError } from '../error/ServerError.mjs';
|
||||
import { authorizationCodeMissingFromServerResponse, stateNotFound, invalidState, stateMismatch } from '../error/ClientAuthErrorCodes.mjs';
|
||||
|
||||
/*
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
/**
|
||||
* Returns map of parameters that are applicable to all calls to /authorize whether using PKCE or EAR
|
||||
* @param config
|
||||
* @param request
|
||||
* @param logger
|
||||
* @param performanceClient
|
||||
* @returns
|
||||
*/
|
||||
function getStandardAuthorizeRequestParameters(authOptions, request, logger, performanceClient) {
|
||||
// generate the correlationId if not set by the user and add
|
||||
const correlationId = request.correlationId;
|
||||
const parameters = new Map();
|
||||
addClientId(parameters, request.embeddedClientId ||
|
||||
request.extraQueryParameters?.[CLIENT_ID] ||
|
||||
authOptions.clientId);
|
||||
const requestScopes = [
|
||||
...(request.scopes || []),
|
||||
...(request.extraScopesToConsent || []),
|
||||
];
|
||||
addScopes(parameters, requestScopes, true, authOptions.authority.options.OIDCOptions?.defaultScopes);
|
||||
addResource(parameters, request.resource);
|
||||
addRedirectUri(parameters, request.redirectUri);
|
||||
addCorrelationId(parameters, correlationId);
|
||||
// add response_mode. If not passed in it defaults to query.
|
||||
addResponseMode(parameters, request.responseMode);
|
||||
// add client_info=1
|
||||
addClientInfo(parameters);
|
||||
// add clidata=1
|
||||
addCliData(parameters);
|
||||
if (request.prompt) {
|
||||
addPrompt(parameters, request.prompt);
|
||||
performanceClient?.addFields({ prompt: request.prompt }, correlationId);
|
||||
}
|
||||
if (request.domainHint) {
|
||||
addDomainHint(parameters, request.domainHint);
|
||||
performanceClient?.addFields({ domainHintFromRequest: true }, correlationId);
|
||||
}
|
||||
// Add sid or loginHint with preference for login_hint claim (in request) -> sid -> loginHint (upn/email) -> username of AccountInfo object
|
||||
if (request.prompt !== PromptValue.SELECT_ACCOUNT) {
|
||||
// AAD will throw if prompt=select_account is passed with an account hint
|
||||
if (request.sid && request.prompt === PromptValue.NONE) {
|
||||
// SessionID is only used in silent calls
|
||||
logger.verbose("createAuthCodeUrlQueryString: Prompt is none, adding sid from request", request.correlationId);
|
||||
addSid(parameters, request.sid);
|
||||
performanceClient?.addFields({ sidFromRequest: true }, correlationId);
|
||||
}
|
||||
else if (request.account) {
|
||||
const accountSid = extractAccountSid(request.account);
|
||||
let accountLoginHintClaim = extractLoginHint(request.account);
|
||||
if (accountLoginHintClaim && request.domainHint) {
|
||||
logger.warning(`AuthorizationCodeClient.createAuthCodeUrlQueryString: "domainHint" param is set, skipping opaque "login_hint" claim. Please consider not passing domainHint`, request.correlationId);
|
||||
accountLoginHintClaim = null;
|
||||
}
|
||||
// If login_hint claim is present, use it over sid/username
|
||||
if (accountLoginHintClaim) {
|
||||
logger.verbose("createAuthCodeUrlQueryString: login_hint claim present on account", request.correlationId);
|
||||
addLoginHint(parameters, accountLoginHintClaim);
|
||||
performanceClient?.addFields({ loginHintFromClaim: true }, correlationId);
|
||||
try {
|
||||
const clientInfo = buildClientInfoFromHomeAccountId(request.account.homeAccountId);
|
||||
addCcsOid(parameters, clientInfo);
|
||||
}
|
||||
catch (e) {
|
||||
logger.verbose("createAuthCodeUrlQueryString: Could not parse home account ID for CCS Header", request.correlationId);
|
||||
}
|
||||
}
|
||||
else if (accountSid && request.prompt === PromptValue.NONE) {
|
||||
/*
|
||||
* If account and loginHint are provided, we will check account first for sid before adding loginHint
|
||||
* SessionId is only used in silent calls
|
||||
*/
|
||||
logger.verbose("createAuthCodeUrlQueryString: Prompt is none, adding sid from account", request.correlationId);
|
||||
addSid(parameters, accountSid);
|
||||
performanceClient?.addFields({ sidFromClaim: true }, correlationId);
|
||||
try {
|
||||
const clientInfo = buildClientInfoFromHomeAccountId(request.account.homeAccountId);
|
||||
addCcsOid(parameters, clientInfo);
|
||||
}
|
||||
catch (e) {
|
||||
logger.verbose("createAuthCodeUrlQueryString: Could not parse home account ID for CCS Header", request.correlationId);
|
||||
}
|
||||
}
|
||||
else if (request.loginHint) {
|
||||
logger.verbose("createAuthCodeUrlQueryString: Adding login_hint from request", request.correlationId);
|
||||
addLoginHint(parameters, request.loginHint);
|
||||
addCcsUpn(parameters, request.loginHint);
|
||||
performanceClient?.addFields({ loginHintFromRequest: true }, correlationId);
|
||||
}
|
||||
else if (request.account.username) {
|
||||
// Fallback to account username if provided
|
||||
logger.verbose("createAuthCodeUrlQueryString: Adding login_hint from account", request.correlationId);
|
||||
addLoginHint(parameters, request.account.username);
|
||||
performanceClient?.addFields({ loginHintFromUpn: true }, correlationId);
|
||||
try {
|
||||
const clientInfo = buildClientInfoFromHomeAccountId(request.account.homeAccountId);
|
||||
addCcsOid(parameters, clientInfo);
|
||||
}
|
||||
catch (e) {
|
||||
logger.verbose("createAuthCodeUrlQueryString: Could not parse home account ID for CCS Header", request.correlationId);
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (request.loginHint) {
|
||||
logger.verbose("createAuthCodeUrlQueryString: No account, adding login_hint from request", request.correlationId);
|
||||
addLoginHint(parameters, request.loginHint);
|
||||
addCcsUpn(parameters, request.loginHint);
|
||||
performanceClient?.addFields({ loginHintFromRequest: true }, correlationId);
|
||||
}
|
||||
}
|
||||
else {
|
||||
logger.verbose("createAuthCodeUrlQueryString: Prompt is select_account, ignoring account hints", request.correlationId);
|
||||
}
|
||||
if (request.nonce) {
|
||||
addNonce(parameters, request.nonce);
|
||||
}
|
||||
if (request.state) {
|
||||
addState(parameters, request.state);
|
||||
}
|
||||
if (request.embeddedClientId) {
|
||||
addBrokerParameters(parameters, authOptions.clientId, authOptions.redirectUri);
|
||||
}
|
||||
addClaims(parameters, request.claims, authOptions.clientCapabilities, request.skipBrokerClaims);
|
||||
// If extraQueryParameters includes instance_aware its value will be added when extraQueryParameters are added
|
||||
if (authOptions.instanceAware &&
|
||||
(!request.extraQueryParameters ||
|
||||
!Object.keys(request.extraQueryParameters).includes(INSTANCE_AWARE))) {
|
||||
addInstanceAware(parameters);
|
||||
}
|
||||
return parameters;
|
||||
}
|
||||
/**
|
||||
* Returns authorize endpoint with given request parameters in the query string
|
||||
* @param authority
|
||||
* @param requestParameters
|
||||
* @returns
|
||||
*/
|
||||
function getAuthorizeUrl(authority, requestParameters) {
|
||||
const queryString = mapToQueryString(requestParameters);
|
||||
return UrlString.appendQueryString(authority.authorizationEndpoint, queryString);
|
||||
}
|
||||
/**
|
||||
* Handles the hash fragment response from public client code request. Returns a code response used by
|
||||
* the client to exchange for a token in acquireToken.
|
||||
* @param serverParams
|
||||
* @param cachedState
|
||||
*/
|
||||
function getAuthorizationCodePayload(serverParams, cachedState) {
|
||||
// Get code response
|
||||
validateAuthorizationResponse(serverParams, cachedState);
|
||||
// throw when there is no auth code in the response
|
||||
if (!serverParams.code) {
|
||||
throw createClientAuthError(authorizationCodeMissingFromServerResponse);
|
||||
}
|
||||
return serverParams;
|
||||
}
|
||||
/**
|
||||
* Function which validates server authorization code response.
|
||||
* @param serverResponseHash
|
||||
* @param requestState
|
||||
*/
|
||||
function validateAuthorizationResponse(serverResponse, requestState) {
|
||||
if (!serverResponse.state || !requestState) {
|
||||
throw serverResponse.state
|
||||
? createClientAuthError(stateNotFound, "Cached State")
|
||||
: createClientAuthError(stateNotFound, "Server State");
|
||||
}
|
||||
let decodedServerResponseState;
|
||||
let decodedRequestState;
|
||||
try {
|
||||
decodedServerResponseState = decodeURIComponent(serverResponse.state);
|
||||
}
|
||||
catch (e) {
|
||||
throw createClientAuthError(invalidState, serverResponse.state);
|
||||
}
|
||||
try {
|
||||
decodedRequestState = decodeURIComponent(requestState);
|
||||
}
|
||||
catch (e) {
|
||||
throw createClientAuthError(invalidState, serverResponse.state);
|
||||
}
|
||||
if (decodedServerResponseState !== decodedRequestState) {
|
||||
throw createClientAuthError(stateMismatch);
|
||||
}
|
||||
// Check for error
|
||||
if (serverResponse.error ||
|
||||
serverResponse.error_description ||
|
||||
serverResponse.suberror) {
|
||||
const serverErrorNo = parseServerErrorNo(serverResponse);
|
||||
if (isInteractionRequiredError(serverResponse.error, serverResponse.error_description, serverResponse.suberror)) {
|
||||
throw new InteractionRequiredAuthError(serverResponse.error || "", serverResponse.error_description, serverResponse.suberror, serverResponse.timestamp || "", serverResponse.trace_id || "", serverResponse.correlation_id || "", serverResponse.claims || "", serverErrorNo);
|
||||
}
|
||||
throw new ServerError(serverResponse.error || "", serverResponse.error_description, serverResponse.suberror, serverErrorNo);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Get server error No from the error_uri
|
||||
* @param serverResponse
|
||||
* @returns
|
||||
*/
|
||||
function parseServerErrorNo(serverResponse) {
|
||||
const errorCodePrefix = "code=";
|
||||
const errorCodePrefixIndex = serverResponse.error_uri?.lastIndexOf(errorCodePrefix);
|
||||
return errorCodePrefixIndex && errorCodePrefixIndex >= 0
|
||||
? serverResponse.error_uri?.substring(errorCodePrefixIndex + errorCodePrefix.length)
|
||||
: undefined;
|
||||
}
|
||||
/**
|
||||
* Helper to get sid from account. Returns null if idTokenClaims are not present or sid is not present.
|
||||
* @param account
|
||||
*/
|
||||
function extractAccountSid(account) {
|
||||
return account.idTokenClaims?.sid || null;
|
||||
}
|
||||
function extractLoginHint(account) {
|
||||
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
||||
}
|
||||
|
||||
export { getAuthorizationCodePayload, getAuthorizeUrl, getStandardAuthorizeRequestParameters, validateAuthorizationResponse };
|
||||
//# sourceMappingURL=Authorize.mjs.map
|
||||
1
backend/node_modules/@azure/msal-common/dist/protocol/Authorize.mjs.map
generated
vendored
Normal file
1
backend/node_modules/@azure/msal-common/dist/protocol/Authorize.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
129
backend/node_modules/@azure/msal-common/dist/protocol/Token.mjs
generated
vendored
Normal file
129
backend/node_modules/@azure/msal-common/dist/protocol/Token.mjs
generated
vendored
Normal file
@ -0,0 +1,129 @@
|
||||
/*! @azure/msal-common v16.6.2 2026-05-19 */
|
||||
'use strict';
|
||||
import { CcsCredentialType } from '../account/CcsCredential.mjs';
|
||||
import { buildClientInfoFromHomeAccountId } from '../account/ClientInfo.mjs';
|
||||
import { URL_FORM_CONTENT_TYPE, HeaderNames } from '../utils/Constants.mjs';
|
||||
import { addBrokerParameters, addExtraParameters, addCorrelationId, instrumentBrokerParams } from '../request/RequestParameterBuilder.mjs';
|
||||
import { mapToQueryString } from '../utils/UrlUtils.mjs';
|
||||
import { ThrottlingUtils } from '../network/ThrottlingUtils.mjs';
|
||||
import { NetworkError } from '../error/NetworkError.mjs';
|
||||
import { AuthError } from '../error/AuthError.mjs';
|
||||
import { createClientAuthError } from '../error/ClientAuthError.mjs';
|
||||
import { invokeAsync } from '../utils/FunctionWrappers.mjs';
|
||||
import { NetworkClientSendPostRequestAsync } from '../telemetry/performance/PerformanceEvents.mjs';
|
||||
import { networkError } from '../error/ClientAuthErrorCodes.mjs';
|
||||
|
||||
/*
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
/**
|
||||
* Creates default headers for requests to token endpoint
|
||||
*/
|
||||
function createTokenRequestHeaders(logger, preventCorsPreflight, ccsCred) {
|
||||
const headers = {};
|
||||
headers[HeaderNames.CONTENT_TYPE] = URL_FORM_CONTENT_TYPE;
|
||||
if (!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) {
|
||||
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;
|
||||
}
|
||||
/**
|
||||
* Creates query string for the /token request
|
||||
* @param request
|
||||
*/
|
||||
function createTokenQueryParameters(request, clientId, redirectUri, performanceClient) {
|
||||
const parameters = new Map();
|
||||
if (request.embeddedClientId) {
|
||||
addBrokerParameters(parameters, clientId, redirectUri);
|
||||
}
|
||||
if (request.extraQueryParameters) {
|
||||
addExtraParameters(parameters, request.extraQueryParameters);
|
||||
}
|
||||
addCorrelationId(parameters, request.correlationId);
|
||||
instrumentBrokerParams(parameters, request.correlationId, performanceClient);
|
||||
return mapToQueryString(parameters);
|
||||
}
|
||||
/**
|
||||
* Http post to token endpoint
|
||||
* @param tokenEndpoint
|
||||
* @param queryString
|
||||
* @param headers
|
||||
* @param thumbprint
|
||||
*/
|
||||
async function executePostToTokenEndpoint(tokenEndpoint, queryString, headers, thumbprint, correlationId, cacheManager, networkClient, logger, performanceClient, serverTelemetryManager) {
|
||||
const response = await sendPostRequest(thumbprint, tokenEndpoint, { body: queryString, headers: headers }, correlationId, cacheManager, networkClient, logger, performanceClient);
|
||||
if (serverTelemetryManager &&
|
||||
response.status < 500 &&
|
||||
response.status !== 429) {
|
||||
// Telemetry data successfully logged by server, clear Telemetry cache
|
||||
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
|
||||
* @param cacheManager - Cache manager instance
|
||||
* @param networkClient - Network module instance
|
||||
* @param logger - Logger instance
|
||||
* @param performanceClient - Performance client instance
|
||||
*/
|
||||
async function sendPostRequest(thumbprint, tokenEndpoint, options, correlationId, cacheManager, networkClient, logger, performanceClient) {
|
||||
ThrottlingUtils.preProcess(cacheManager, thumbprint, correlationId);
|
||||
let response;
|
||||
try {
|
||||
response = await invokeAsync((networkClient.sendPostRequestAsync.bind(networkClient)), NetworkClientSendPostRequestAsync, logger, performanceClient, correlationId)(tokenEndpoint, options);
|
||||
const responseHeaders = response.headers || {};
|
||||
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) {
|
||||
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(cacheManager, thumbprint, response, correlationId);
|
||||
return response;
|
||||
}
|
||||
|
||||
export { createTokenQueryParameters, createTokenRequestHeaders, executePostToTokenEndpoint, sendPostRequest };
|
||||
//# sourceMappingURL=Token.mjs.map
|
||||
1
backend/node_modules/@azure/msal-common/dist/protocol/Token.mjs.map
generated
vendored
Normal file
1
backend/node_modules/@azure/msal-common/dist/protocol/Token.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Token.mjs","sources":["../../src/protocol/Token.ts"],"sourcesContent":[null],"names":["RequestParameterBuilder.addBrokerParameters","RequestParameterBuilder.addExtraParameters","RequestParameterBuilder.addCorrelationId","RequestParameterBuilder.instrumentBrokerParams","UrlUtils.mapToQueryString","PerformanceEvents.NetworkClientSendPostRequestAsync","ClientAuthErrorCodes.networkError"],"mappings":"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"}
|
||||
Reference in New Issue
Block a user