mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-10 19:34:41 +00:00
99 lines
5.4 KiB
JavaScript
99 lines
5.4 KiB
JavaScript
/*! @azure/msal-node v2.9.2 2024-06-10 */
|
|
'use strict';
|
|
import { Logger, DEFAULT_CRYPTO_IMPLEMENTATION, Authority, createClientConfigurationError, ClientConfigurationErrorCodes, CacheOutcome, Constants, ProtocolMode } from '@azure/msal-common';
|
|
import { buildManagedIdentityConfiguration } from '../config/Configuration.mjs';
|
|
import { name, version } from '../packageMetadata.mjs';
|
|
import { CryptoProvider } from '../crypto/CryptoProvider.mjs';
|
|
import { ClientCredentialClient } from './ClientCredentialClient.mjs';
|
|
import { ManagedIdentityClient } from './ManagedIdentityClient.mjs';
|
|
import { NodeStorage } from '../cache/NodeStorage.mjs';
|
|
import { DEFAULT_AUTHORITY_FOR_MANAGED_IDENTITY } from '../utils/Constants.mjs';
|
|
|
|
/*
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License.
|
|
*/
|
|
/**
|
|
* Class to initialize a managed identity and identify the service
|
|
* @public
|
|
*/
|
|
class ManagedIdentityApplication {
|
|
constructor(configuration) {
|
|
// undefined config means the managed identity is system-assigned
|
|
this.config = buildManagedIdentityConfiguration(configuration || {});
|
|
this.logger = new Logger(this.config.system.loggerOptions, name, version);
|
|
const fakeStatusAuthorityOptions = {
|
|
canonicalAuthority: Constants.DEFAULT_AUTHORITY,
|
|
};
|
|
if (!ManagedIdentityApplication.nodeStorage) {
|
|
ManagedIdentityApplication.nodeStorage = new NodeStorage(this.logger, this.config.managedIdentityId.id, DEFAULT_CRYPTO_IMPLEMENTATION, fakeStatusAuthorityOptions);
|
|
}
|
|
this.networkClient = this.config.system.networkClient;
|
|
this.cryptoProvider = new CryptoProvider();
|
|
const fakeAuthorityOptions = {
|
|
protocolMode: ProtocolMode.AAD,
|
|
knownAuthorities: [DEFAULT_AUTHORITY_FOR_MANAGED_IDENTITY],
|
|
cloudDiscoveryMetadata: "",
|
|
authorityMetadata: "",
|
|
};
|
|
this.fakeAuthority = new Authority(DEFAULT_AUTHORITY_FOR_MANAGED_IDENTITY, this.networkClient, ManagedIdentityApplication.nodeStorage, fakeAuthorityOptions, this.logger, this.cryptoProvider.createNewGuid(), // correlationID
|
|
undefined, true);
|
|
this.fakeClientCredentialClient = new ClientCredentialClient({
|
|
authOptions: {
|
|
clientId: this.config.managedIdentityId.id,
|
|
authority: this.fakeAuthority,
|
|
},
|
|
});
|
|
this.managedIdentityClient = new ManagedIdentityClient(this.logger, ManagedIdentityApplication.nodeStorage, this.networkClient, this.cryptoProvider);
|
|
}
|
|
/**
|
|
* Acquire an access token from the cache or the managed identity
|
|
* @param managedIdentityRequest - the ManagedIdentityRequestParams object passed in by the developer
|
|
* @returns the access token
|
|
*/
|
|
async acquireToken(managedIdentityRequestParams) {
|
|
if (!managedIdentityRequestParams.resource) {
|
|
throw createClientConfigurationError(ClientConfigurationErrorCodes.urlEmptyError);
|
|
}
|
|
const managedIdentityRequest = {
|
|
forceRefresh: managedIdentityRequestParams.forceRefresh,
|
|
resource: managedIdentityRequestParams.resource.replace("/.default", ""),
|
|
scopes: [
|
|
managedIdentityRequestParams.resource.replace("/.default", ""),
|
|
],
|
|
authority: this.fakeAuthority.canonicalAuthority,
|
|
correlationId: this.cryptoProvider.createNewGuid(),
|
|
};
|
|
if (managedIdentityRequest.forceRefresh) {
|
|
// make a network call to the managed identity source
|
|
return this.managedIdentityClient.sendManagedIdentityTokenRequest(managedIdentityRequest, this.config.managedIdentityId, this.fakeAuthority);
|
|
}
|
|
const [cachedAuthenticationResult, lastCacheOutcome] = await this.fakeClientCredentialClient.getCachedAuthenticationResult(managedIdentityRequest, this.config, this.cryptoProvider, this.fakeAuthority, ManagedIdentityApplication.nodeStorage);
|
|
if (cachedAuthenticationResult) {
|
|
// if the token is not expired but must be refreshed; get a new one in the background
|
|
if (lastCacheOutcome === CacheOutcome.PROACTIVELY_REFRESHED) {
|
|
this.logger.info("ClientCredentialClient:getCachedAuthenticationResult - Cached access token's refreshOn property has been exceeded'. It's not expired, but must be refreshed.");
|
|
// make a network call to the managed identity source; refresh the access token in the background
|
|
const refreshAccessToken = true;
|
|
await this.managedIdentityClient.sendManagedIdentityTokenRequest(managedIdentityRequest, this.config.managedIdentityId, this.fakeAuthority, refreshAccessToken);
|
|
}
|
|
return cachedAuthenticationResult;
|
|
}
|
|
else {
|
|
// make a network call to the managed identity source
|
|
return this.managedIdentityClient.sendManagedIdentityTokenRequest(managedIdentityRequest, this.config.managedIdentityId, this.fakeAuthority);
|
|
}
|
|
}
|
|
/**
|
|
* Determine the Managed Identity Source based on available environment variables. This API is consumed by Azure Identity SDK.
|
|
* @returns ManagedIdentitySourceNames - The Managed Identity source's name
|
|
*/
|
|
getManagedIdentitySource() {
|
|
return (ManagedIdentityClient.sourceName ||
|
|
this.managedIdentityClient.getManagedIdentitySource());
|
|
}
|
|
}
|
|
|
|
export { ManagedIdentityApplication };
|
|
//# sourceMappingURL=ManagedIdentityApplication.mjs.map
|