Files
2026-06-02 16:57:08 +00:00

1373 lines
62 KiB
JavaScript

/*! @azure/msal-browser v5.11.0 2026-05-19 */
'use strict';
import { CacheManager, TimeUtils, CacheHelpers, Constants, AuthToken, getTenantIdFromIdTokenClaims, buildTenantProfile, AccountEntityUtils, createCacheError, CacheErrorCodes, invokeAsync, PerformanceEvents, StringUtils, CacheError, DEFAULT_CRYPTO_IMPLEMENTATION } from '@azure/msal-common/browser';
import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
import { apiIdToName, InMemoryCacheKeys, TemporaryCacheKeys, INTERACTION_TYPE, ApiId, BrowserCacheLocation } from '../utils/BrowserConstants.mjs';
import { ACCOUNT_SCHEMA_VERSION, CREDENTIAL_SCHEMA_VERSION, VERSION_CACHE_KEY, getTokenKeysCacheKey, getAccountKeysCacheKey, PREFIX, CACHE_KEY_SEPARATOR } from './CacheKeys.mjs';
import { LocalStorage } from './LocalStorage.mjs';
import { SessionStorage } from './SessionStorage.mjs';
import { MemoryStorage } from './MemoryStorage.mjs';
import { base64Decode } from '../encode/Base64Decode.mjs';
import { base64Encode } from '../encode/Base64Encode.mjs';
import { CookieStorage } from './CookieStorage.mjs';
import { getAccountKeys, getTokenKeys } from './CacheHelpers.mjs';
import { EventType } from '../event/EventType.mjs';
import { clearHash, cancelPendingBridgeResponse } from '../utils/BrowserUtils.mjs';
import { version } from '../packageMetadata.mjs';
import { removeElementFromArray } from '../utils/Helpers.mjs';
import { isEncrypted } from './EncryptedData.mjs';
import { noTokenRequestCacheError, unableToParseTokenRequestCacheError, interactionInProgress } from '../error/BrowserAuthErrorCodes.mjs';
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* This class implements the cache storage interface for MSAL through browser local or session storage.
*/
class BrowserCacheManager extends CacheManager {
constructor(clientId, cacheConfig, cryptoImpl, logger, performanceClient, eventHandler, staticAuthorityOptions) {
super(clientId, cryptoImpl, logger, performanceClient, staticAuthorityOptions);
this.cacheConfig = cacheConfig;
this.logger = logger;
this.internalStorage = new MemoryStorage();
this.browserStorage = getStorageImplementation(clientId, cacheConfig.cacheLocation, logger, performanceClient);
this.temporaryCacheStorage = getStorageImplementation(clientId, BrowserCacheLocation.SessionStorage, logger, performanceClient);
this.cookieStorage = new CookieStorage();
this.eventHandler = eventHandler;
}
async initialize(correlationId) {
this.performanceClient.addFields({
cacheLocation: this.cacheConfig.cacheLocation,
cacheRetentionDays: this.cacheConfig.cacheRetentionDays,
}, correlationId);
await this.browserStorage.initialize(correlationId);
await this.migrateExistingCache(correlationId);
this.trackVersionChanges(correlationId);
}
/**
* Migrates any existing cache data from previous versions of MSAL.js into the current cache structure.
*/
async migrateExistingCache(correlationId) {
let accountKeys = getAccountKeys(this.browserStorage);
let tokenKeys = getTokenKeys(this.clientId, this.browserStorage);
this.performanceClient.addFields({
preMigrateAcntCount: accountKeys.length,
preMigrateATCount: tokenKeys.accessToken.length,
preMigrateITCount: tokenKeys.idToken.length,
preMigrateRTCount: tokenKeys.refreshToken.length,
}, correlationId);
for (let i = 0; i < ACCOUNT_SCHEMA_VERSION; i++) {
const credentialSchema = i; // For now account and credential schemas are the same, but may diverge in future
await this.removeStaleAccounts(i, credentialSchema, correlationId);
}
// Must migrate idTokens first to ensure we have KMSI info for the rest
for (let i = 0; i < CREDENTIAL_SCHEMA_VERSION; i++) {
const accountSchema = i; // For now account and credential schemas are the same, but may diverge in future
await this.migrateIdTokens(i, accountSchema, correlationId);
}
const kmsiMap = this.getKMSIValues();
for (let i = 0; i < CREDENTIAL_SCHEMA_VERSION; i++) {
await this.migrateAccessTokens(i, kmsiMap, correlationId);
await this.migrateRefreshTokens(i, kmsiMap, correlationId);
}
accountKeys = getAccountKeys(this.browserStorage);
tokenKeys = getTokenKeys(this.clientId, this.browserStorage);
this.performanceClient.addFields({
postMigrateAcntCount: accountKeys.length,
postMigrateATCount: tokenKeys.accessToken.length,
postMigrateITCount: tokenKeys.idToken.length,
postMigrateRTCount: tokenKeys.refreshToken.length,
}, correlationId);
}
/**
* Parses entry, adds lastUpdatedAt if it doesn't exist, removes entry if expired or invalid
* @param key
* @param correlationId
* @returns
*/
async updateOldEntry(key, correlationId) {
const rawValue = this.browserStorage.getItem(key);
const parsedValue = this.validateAndParseJson(rawValue || "");
if (!parsedValue) {
this.browserStorage.removeItem(key);
return null;
}
if (!parsedValue.lastUpdatedAt) {
// Add lastUpdatedAt to the existing v0 entry if it doesnt exist so we know when it's safe to remove it
parsedValue.lastUpdatedAt = Date.now().toString();
this.setItem(key, JSON.stringify(parsedValue), correlationId);
}
else if (TimeUtils.isCacheExpired(parsedValue.lastUpdatedAt, this.cacheConfig.cacheRetentionDays)) {
this.browserStorage.removeItem(key);
this.performanceClient.incrementFields({ expiredCacheRemovedCount: 1 }, correlationId);
return null;
}
const decryptedData = isEncrypted(parsedValue)
? await this.browserStorage.decryptData(key, parsedValue, correlationId)
: parsedValue;
if (!decryptedData || !CacheHelpers.isCredentialEntity(decryptedData)) {
this.performanceClient.incrementFields({ invalidCacheCount: 1 }, correlationId);
return null;
}
if ((CacheHelpers.isAccessTokenEntity(decryptedData) ||
CacheHelpers.isRefreshTokenEntity(decryptedData)) &&
decryptedData.expiresOn &&
TimeUtils.isTokenExpired(decryptedData.expiresOn, Constants.DEFAULT_TOKEN_RENEWAL_OFFSET_SEC)) {
this.browserStorage.removeItem(key);
this.performanceClient.incrementFields({ expiredCacheRemovedCount: 1 }, correlationId);
return null;
}
return decryptedData;
}
/**
* Remove accounts from the cache for older schema versions if they have not been updated in the last cacheRetentionDays
* @param accountSchema
* @param credentialSchema
* @param correlationId
* @returns
*/
async removeStaleAccounts(accountSchema, credentialSchema, correlationId) {
const accountKeysToCheck = getAccountKeys(this.browserStorage, accountSchema);
if (accountKeysToCheck.length === 0) {
return;
}
for (const accountKey of [...accountKeysToCheck]) {
this.performanceClient.incrementFields({ oldAcntCount: 1 }, correlationId);
const rawValue = this.browserStorage.getItem(accountKey);
const parsedValue = this.validateAndParseJson(rawValue || "");
if (!parsedValue) {
removeElementFromArray(accountKeysToCheck, accountKey);
continue;
}
if (!parsedValue.lastUpdatedAt) {
// Add lastUpdatedAt to the existing entry if it doesnt exist so we know when it's safe to remove it
parsedValue.lastUpdatedAt = Date.now().toString();
this.setItem(accountKey, JSON.stringify(parsedValue), correlationId);
continue;
}
else if (TimeUtils.isCacheExpired(parsedValue.lastUpdatedAt, this.cacheConfig.cacheRetentionDays)) {
// Cache expired remove account and associated tokens
await this.removeAccountOldSchema(accountKey, parsedValue, credentialSchema, correlationId);
removeElementFromArray(accountKeysToCheck, accountKey);
}
}
this.setAccountKeys(accountKeysToCheck, correlationId, accountSchema);
}
/**
* Remove the given account and all associated tokens from the cache
* @param accountKey
* @param rawObject
* @param credentialSchema
* @param correlationId
*/
async removeAccountOldSchema(accountKey, rawObject, credentialSchema, correlationId) {
const decryptedData = isEncrypted(rawObject)
? (await this.browserStorage.decryptData(accountKey, rawObject, correlationId))
: rawObject;
const homeAccountId = decryptedData?.homeAccountId;
if (homeAccountId) {
const tokenKeys = this.getTokenKeys(credentialSchema);
[...tokenKeys.idToken]
.filter((key) => key.includes(homeAccountId))
.forEach((key) => {
this.browserStorage.removeItem(key);
removeElementFromArray(tokenKeys.idToken, key);
});
[...tokenKeys.accessToken]
.filter((key) => key.includes(homeAccountId))
.forEach((key) => {
this.browserStorage.removeItem(key);
removeElementFromArray(tokenKeys.accessToken, key);
});
[...tokenKeys.refreshToken]
.filter((key) => key.includes(homeAccountId))
.forEach((key) => {
this.browserStorage.removeItem(key);
removeElementFromArray(tokenKeys.refreshToken, key);
});
this.setTokenKeys(tokenKeys, correlationId, credentialSchema);
}
this.performanceClient.incrementFields({ expiredAcntRemovedCount: 1 }, correlationId);
this.browserStorage.removeItem(accountKey);
}
/**
* Gets key value pair mapping homeAccountId to KMSI value
* @returns
*/
getKMSIValues() {
const kmsiMap = {};
const tokenKeys = this.getTokenKeys().idToken;
for (const key of tokenKeys) {
const rawValue = this.browserStorage.getUserData(key);
if (rawValue) {
const idToken = JSON.parse(rawValue);
const claims = AuthToken.extractTokenClaims(idToken.secret, base64Decode);
if (claims) {
kmsiMap[idToken.homeAccountId] = AuthToken.isKmsi(claims);
}
}
}
return kmsiMap;
}
/**
* Migrates id tokens from the old schema to the new schema, also migrates associated account object if it doesn't already exist in the new schema
* @param credentialSchema
* @param accountSchema
* @param correlationId
* @returns
*/
async migrateIdTokens(credentialSchema, accountSchema, correlationId) {
const credentialKeysToMigrate = getTokenKeys(this.clientId, this.browserStorage, credentialSchema);
if (credentialKeysToMigrate.idToken.length === 0) {
return;
}
const currentCredentialKeys = getTokenKeys(this.clientId, this.browserStorage, CREDENTIAL_SCHEMA_VERSION);
const currentAccountKeys = getAccountKeys(this.browserStorage);
const previousAccountKeys = getAccountKeys(this.browserStorage, accountSchema);
for (const idTokenKey of [...credentialKeysToMigrate.idToken]) {
this.performanceClient.incrementFields({ oldITCount: 1 }, correlationId);
const oldSchemaData = (await this.updateOldEntry(idTokenKey, correlationId));
if (!oldSchemaData) {
removeElementFromArray(credentialKeysToMigrate.idToken, idTokenKey);
continue;
}
const currentAccountKey = currentAccountKeys.find((key) => key.includes(oldSchemaData.homeAccountId));
const previousAccountKey = previousAccountKeys.find((key) => key.includes(oldSchemaData.homeAccountId));
let account = null;
if (currentAccountKey) {
account = this.getAccount(currentAccountKey, correlationId);
}
else if (previousAccountKey) {
const rawValue = this.browserStorage.getItem(previousAccountKey);
const parsedValue = this.validateAndParseJson(rawValue || "");
account =
parsedValue && isEncrypted(parsedValue)
? (await this.browserStorage.decryptData(previousAccountKey, parsedValue, correlationId))
: parsedValue;
}
if (!account) {
// Don't migrate idToken if we don't have an account for it
this.performanceClient.incrementFields({ skipITMigrateCount: 1 }, correlationId);
continue;
}
const claims = AuthToken.extractTokenClaims(oldSchemaData.secret, base64Decode);
const newIdTokenKey = this.generateCredentialKey(oldSchemaData);
const currentIdToken = this.getIdTokenCredential(newIdTokenKey, correlationId);
const oldTokenHasSignInState = Object.keys(claims).includes("signin_state");
const currentTokenHasSignInState = currentIdToken &&
Object.keys(AuthToken.extractTokenClaims(currentIdToken.secret, base64Decode) || {}).includes("signin_state");
/**
* Only migrate if:
* 1. Token doesn't yet exist in current schema
* 2. Old schema token has been updated more recently than the current one AND migrating it won't result in loss of KMSI state
*/
if (!currentIdToken ||
(oldSchemaData.lastUpdatedAt > currentIdToken.lastUpdatedAt &&
(oldTokenHasSignInState || !currentTokenHasSignInState))) {
const tenantProfiles = account.tenantProfiles || [];
const tenantId = getTenantIdFromIdTokenClaims(claims) || account.realm;
if (tenantId &&
!tenantProfiles.find((tenantProfile) => {
return tenantProfile.tenantId === tenantId;
})) {
const newTenantProfile = buildTenantProfile(account.homeAccountId, account.localAccountId, tenantId, claims);
tenantProfiles.push(newTenantProfile);
}
account.tenantProfiles = tenantProfiles;
const newAccountKey = this.generateAccountKey(AccountEntityUtils.getAccountInfo(account));
const kmsi = AuthToken.isKmsi(claims);
await this.setUserData(newAccountKey, JSON.stringify(account), correlationId, account.lastUpdatedAt, kmsi);
if (!currentAccountKeys.includes(newAccountKey)) {
currentAccountKeys.push(newAccountKey);
}
await this.setUserData(newIdTokenKey, JSON.stringify(oldSchemaData), correlationId, oldSchemaData.lastUpdatedAt, kmsi);
this.performanceClient.incrementFields({ migratedITCount: 1 }, correlationId);
if (!currentCredentialKeys.idToken.includes(newIdTokenKey)) {
currentCredentialKeys.idToken.push(newIdTokenKey);
}
}
}
this.setTokenKeys(credentialKeysToMigrate, correlationId, credentialSchema);
this.setTokenKeys(currentCredentialKeys, correlationId);
this.setAccountKeys(currentAccountKeys, correlationId);
}
/**
* Migrates access tokens from old cache schema to current schema
* @param credentialSchema
* @param kmsiMap
* @param correlationId
* @returns
*/
async migrateAccessTokens(credentialSchema, kmsiMap, correlationId) {
const credentialKeysToMigrate = getTokenKeys(this.clientId, this.browserStorage, credentialSchema);
if (credentialKeysToMigrate.accessToken.length === 0) {
return;
}
const currentCredentialKeys = getTokenKeys(this.clientId, this.browserStorage, CREDENTIAL_SCHEMA_VERSION);
for (const accessTokenKey of [...credentialKeysToMigrate.accessToken]) {
this.performanceClient.incrementFields({ oldATCount: 1 }, correlationId);
const oldSchemaData = (await this.updateOldEntry(accessTokenKey, correlationId));
if (!oldSchemaData) {
removeElementFromArray(credentialKeysToMigrate.accessToken, accessTokenKey);
continue;
}
if (!(oldSchemaData.homeAccountId in kmsiMap)) {
// Don't migrate tokens if we don't have an idToken for them
this.performanceClient.incrementFields({ skipATMigrateCount: 1 }, correlationId);
continue;
}
const newKey = this.generateCredentialKey(oldSchemaData);
const kmsi = kmsiMap[oldSchemaData.homeAccountId];
if (!currentCredentialKeys.accessToken.includes(newKey)) {
await this.setUserData(newKey, JSON.stringify(oldSchemaData), correlationId, oldSchemaData.lastUpdatedAt, kmsi);
this.performanceClient.incrementFields({ migratedATCount: 1 }, correlationId);
currentCredentialKeys.accessToken.push(newKey);
}
else {
const currentToken = this.getAccessTokenCredential(newKey, correlationId);
if (!currentToken ||
oldSchemaData.lastUpdatedAt > currentToken.lastUpdatedAt) {
// If the token already exists, only overwrite it if the old token has a more recent lastUpdatedAt
await this.setUserData(newKey, JSON.stringify(oldSchemaData), correlationId, oldSchemaData.lastUpdatedAt, kmsi);
this.performanceClient.incrementFields({ migratedATCount: 1 }, correlationId);
}
}
}
this.setTokenKeys(credentialKeysToMigrate, correlationId, credentialSchema);
this.setTokenKeys(currentCredentialKeys, correlationId);
}
/**
* Migrates refresh tokens from old cache schema to current schema
* @param credentialSchema
* @param kmsiMap
* @param correlationId
* @returns
*/
async migrateRefreshTokens(credentialSchema, kmsiMap, correlationId) {
const credentialKeysToMigrate = getTokenKeys(this.clientId, this.browserStorage, credentialSchema);
if (credentialKeysToMigrate.refreshToken.length === 0) {
return;
}
const currentCredentialKeys = getTokenKeys(this.clientId, this.browserStorage, CREDENTIAL_SCHEMA_VERSION);
for (const refreshTokenKey of [
...credentialKeysToMigrate.refreshToken,
]) {
this.performanceClient.incrementFields({ oldRTCount: 1 }, correlationId);
const oldSchemaData = (await this.updateOldEntry(refreshTokenKey, correlationId));
if (!oldSchemaData) {
removeElementFromArray(credentialKeysToMigrate.refreshToken, refreshTokenKey);
continue;
}
if (!(oldSchemaData.homeAccountId in kmsiMap)) {
// Don't migrate tokens if we don't have an idToken for them
this.performanceClient.incrementFields({ skipRTMigrateCount: 1 }, correlationId);
continue;
}
const newKey = this.generateCredentialKey(oldSchemaData);
const kmsi = kmsiMap[oldSchemaData.homeAccountId];
if (!currentCredentialKeys.refreshToken.includes(newKey)) {
await this.setUserData(newKey, JSON.stringify(oldSchemaData), correlationId, oldSchemaData.lastUpdatedAt, kmsi);
this.performanceClient.incrementFields({ migratedRTCount: 1 }, correlationId);
currentCredentialKeys.refreshToken.push(newKey);
}
else {
const currentToken = this.getRefreshTokenCredential(newKey, correlationId);
if (!currentToken ||
oldSchemaData.lastUpdatedAt > currentToken.lastUpdatedAt) {
// If the token already exists, only overwrite it if the old token has a more recent lastUpdatedAt
await this.setUserData(newKey, JSON.stringify(oldSchemaData), correlationId, oldSchemaData.lastUpdatedAt, kmsi);
this.performanceClient.incrementFields({ migratedRTCount: 1 }, correlationId);
}
}
}
this.setTokenKeys(credentialKeysToMigrate, correlationId, credentialSchema);
this.setTokenKeys(currentCredentialKeys, correlationId);
}
/**
* Tracks upgrades and downgrades for telemetry and debugging purposes
*/
trackVersionChanges(correlationId) {
const previousVersion = this.browserStorage.getItem(VERSION_CACHE_KEY);
if (previousVersion) {
this.logger.info("1wuc87", correlationId);
this.performanceClient.addFields({ previousLibraryVersion: previousVersion }, correlationId);
}
if (previousVersion !== version) {
this.setItem(VERSION_CACHE_KEY, version, correlationId);
}
}
/**
* Parses passed value as JSON object, JSON.parse() will throw an error.
* @param input
*/
validateAndParseJson(jsonValue) {
if (!jsonValue) {
return null;
}
try {
const parsedJson = JSON.parse(jsonValue);
/**
* There are edge cases in which JSON.parse will successfully parse a non-valid JSON object
* (e.g. JSON.parse will parse an escaped string into an unescaped string), so adding a type check
* of the parsed value is necessary in order to be certain that the string represents a valid JSON object.
*
*/
return parsedJson && typeof parsedJson === "object"
? parsedJson
: null;
}
catch (error) {
return null;
}
}
/**
* Helper to setItem in browser storage, with cleanup in case of quota errors
* @param key
* @param value
*/
setItem(key, value, correlationId) {
const tokenKeysCount = new Array(CREDENTIAL_SCHEMA_VERSION + 1).fill(0); // Array mapping schema version to number of token keys stored for that version
const accessTokenKeys = []; // Flat map of all access token keys stored, ordered by schema version
const maxRetries = 20;
for (let i = 0; i <= maxRetries; i++) {
// Attempt to store item in cache, if cache is full this call will throw and we'll attempt to clear space by removing access tokens from the cache one by one, starting with tokens stored by previous versions of MSAL.js
try {
this.browserStorage.setItem(key, value);
if (i > 0) {
// If any tokens were removed in order to store this item update the token keys array with the tokens removed
for (let schemaVersion = 0; schemaVersion <= CREDENTIAL_SCHEMA_VERSION; schemaVersion++) {
// Get the sum of all previous token counts to use as start index for this schema version
const startIndex = tokenKeysCount
.slice(0, schemaVersion)
.reduce((sum, count) => sum + count, 0);
if (startIndex >= i) {
// Done removing tokens
break;
}
const endIndex = i > startIndex + tokenKeysCount[schemaVersion]
? startIndex + tokenKeysCount[schemaVersion]
: i;
if (i > startIndex &&
tokenKeysCount[schemaVersion] > 0) {
this.removeAccessTokenKeys(accessTokenKeys.slice(startIndex, endIndex), correlationId, schemaVersion);
}
}
}
break; // If setItem succeeds, exit the loop
}
catch (e) {
const cacheError = createCacheError(e);
if (cacheError.errorCode ===
CacheErrorCodes.cacheQuotaExceeded &&
i < maxRetries) {
if (!accessTokenKeys.length) {
// If we are currently trying to set the token keys, use the value we're trying to set
for (let i = 0; i <= CREDENTIAL_SCHEMA_VERSION; i++) {
if (key ===
getTokenKeysCacheKey(this.clientId, i)) {
const tokenKeys = JSON.parse(value).accessToken;
accessTokenKeys.push(...tokenKeys);
tokenKeysCount[i] = tokenKeys.length;
}
else {
const tokenKeys = this.getTokenKeys(i).accessToken;
accessTokenKeys.push(...tokenKeys);
tokenKeysCount[i] = tokenKeys.length;
}
}
}
if (accessTokenKeys.length <= i) {
// Nothing to remove, rethrow the error
throw cacheError;
}
// When cache quota is exceeded, start removing access tokens until we can successfully set the item
this.removeAccessToken(accessTokenKeys[i], correlationId, false // Don't save token keys yet, do it at the end
);
}
else {
// If the error is not a quota exceeded error, rethrow it
throw cacheError;
}
}
}
}
/**
* Helper to setUserData in browser storage, with cleanup in case of quota errors
* @param key
* @param value
* @param correlationId
*/
async setUserData(key, value, correlationId, timestamp, kmsi) {
const tokenKeysCount = new Array(CREDENTIAL_SCHEMA_VERSION + 1).fill(0); // Array mapping schema version to number of token keys stored for that version
const accessTokenKeys = []; // Flat map of all access token keys stored, ordered by schema version
const maxRetries = 20;
for (let i = 0; i <= maxRetries; i++) {
try {
// Attempt to store item in cache, if cache is full this call will throw and we'll attempt to clear space by removing access tokens from the cache one by one, starting with tokens stored by previous versions of MSAL.js
await invokeAsync(this.browserStorage.setUserData.bind(this.browserStorage), PerformanceEvents.SetUserData, this.logger, this.performanceClient, correlationId)(key, value, correlationId, timestamp, kmsi);
if (i > 0) {
// If any tokens were removed in order to store this item update the token keys array with the tokens removed
for (let schemaVersion = 0; schemaVersion <= CREDENTIAL_SCHEMA_VERSION; schemaVersion++) {
// Get the sum of all previous token counts to use as start index for this schema version
const startIndex = tokenKeysCount
.slice(0, schemaVersion)
.reduce((sum, count) => sum + count, 0);
if (startIndex >= i) {
// Done removing tokens
break;
}
const endIndex = i > startIndex + tokenKeysCount[schemaVersion]
? startIndex + tokenKeysCount[schemaVersion]
: i;
if (i > startIndex &&
tokenKeysCount[schemaVersion] > 0) {
this.removeAccessTokenKeys(accessTokenKeys.slice(startIndex, endIndex), correlationId, schemaVersion);
}
}
}
break; // If setItem succeeds, exit the loop
}
catch (e) {
const cacheError = createCacheError(e);
if (cacheError.errorCode ===
CacheErrorCodes.cacheQuotaExceeded &&
i < maxRetries) {
if (!accessTokenKeys.length) {
// If we are currently trying to set the token keys, use the value we're trying to set
for (let i = 0; i <= CREDENTIAL_SCHEMA_VERSION; i++) {
const tokenKeys = this.getTokenKeys(i).accessToken;
accessTokenKeys.push(...tokenKeys);
tokenKeysCount[i] = tokenKeys.length;
}
}
if (accessTokenKeys.length <= i) {
// Nothing left to remove, rethrow the error
throw cacheError;
}
// When cache quota is exceeded, start removing access tokens until we can successfully set the item
this.removeAccessToken(accessTokenKeys[i], correlationId, false // Don't save token keys yet, do it at the end
);
}
else {
// If the error is not a quota exceeded error, rethrow it
throw cacheError;
}
}
}
}
/**
* Reads account from cache, deserializes it into an account entity and returns it.
* If account is not found from the key, returns null and removes key from map.
* @param accountKey
* @returns
*/
getAccount(accountKey, correlationId) {
this.logger.trace("1lfvm6", correlationId);
const serializedAccount = this.browserStorage.getUserData(accountKey);
if (!serializedAccount) {
this.removeAccountKeyFromMap(accountKey, correlationId);
return null;
}
const parsedAccount = this.validateAndParseJson(serializedAccount);
if (!parsedAccount ||
!AccountEntityUtils.isAccountEntity(parsedAccount)) {
return null;
}
const account = CacheManager.toObject({}, parsedAccount);
this.performanceClient.addFields({
accountCachedBy: apiIdToName(account.cachedByApiId),
}, correlationId);
return account;
}
/**
* set account entity in the platform cache
* @param account
*/
async setAccount(account, correlationId, kmsi, apiId) {
this.logger.trace("1bz3wr", correlationId);
const key = this.generateAccountKey(AccountEntityUtils.getAccountInfo(account));
const timestamp = Date.now().toString();
account.lastUpdatedAt = timestamp;
account.cachedByApiId = apiId;
await this.setUserData(key, JSON.stringify(account), correlationId, timestamp, kmsi);
this.addAccountKeyToMap(key, correlationId);
this.performanceClient.addFields({ kmsi: kmsi }, correlationId);
}
setAccountKeys(accountKeys, correlationId, schemaVersion = ACCOUNT_SCHEMA_VERSION) {
if (accountKeys.length === 0) {
this.removeItem(getAccountKeysCacheKey(schemaVersion));
}
else {
this.setItem(getAccountKeysCacheKey(schemaVersion), JSON.stringify(accountKeys), correlationId);
}
}
/**
* Returns the array of account keys currently cached
* @returns
*/
getAccountKeys() {
return getAccountKeys(this.browserStorage);
}
/**
* Add a new account to the key map
* @param key
*/
addAccountKeyToMap(key, correlationId) {
this.logger.trace("0rb85k", correlationId);
this.logger.tracePii("1l9bdo", correlationId);
const accountKeys = this.getAccountKeys();
if (accountKeys.indexOf(key) === -1) {
// Only add key if it does not already exist in the map
accountKeys.push(key);
this.setItem(getAccountKeysCacheKey(), JSON.stringify(accountKeys), correlationId);
this.logger.verbose("0xia39", correlationId);
return true;
}
else {
this.logger.verbose("0161kk", correlationId);
return false;
}
}
/**
* Remove an account from the key map
* @param key
*/
removeAccountKeyFromMap(key, correlationId) {
this.logger.trace("1jpigu", correlationId);
this.logger.tracePii("1xzspl", correlationId);
const accountKeys = this.getAccountKeys();
const removalIndex = accountKeys.indexOf(key);
if (removalIndex > -1) {
accountKeys.splice(removalIndex, 1);
this.setAccountKeys(accountKeys, correlationId);
}
else {
this.logger.trace("1dytu2", correlationId);
}
}
/**
* Extends inherited removeAccount function to include removal of the account key from the map
* @param key
*/
removeAccount(account, correlationId) {
const activeAccount = this.getActiveAccount(correlationId);
if (activeAccount?.homeAccountId === account.homeAccountId &&
activeAccount?.environment === account.environment) {
this.setActiveAccount(null, correlationId);
}
super.removeAccount(account, correlationId);
this.removeAccountKeyFromMap(this.generateAccountKey(account), correlationId);
// Remove all other associated cache items
this.browserStorage.getKeys().forEach((key) => {
if (key.includes(account.homeAccountId) &&
key.includes(account.environment)) {
this.browserStorage.removeItem(key);
}
});
}
/**
* Removes given idToken from the cache and from the key map
* @param key
*/
removeIdToken(key, correlationId) {
super.removeIdToken(key, correlationId);
const tokenKeys = this.getTokenKeys();
const idRemoval = tokenKeys.idToken.indexOf(key);
if (idRemoval > -1) {
this.logger.info("05udv9", correlationId);
tokenKeys.idToken.splice(idRemoval, 1);
this.setTokenKeys(tokenKeys, correlationId);
}
}
/**
* Removes given accessToken from the cache and from the key map
* @param key
*/
removeAccessToken(key, correlationId, updateTokenKeys = true) {
super.removeAccessToken(key, correlationId);
updateTokenKeys && this.removeAccessTokenKeys([key], correlationId);
}
/**
* Remove access token key from the key map
* @param key
* @param correlationId
* @param tokenKeys
*/
removeAccessTokenKeys(keys, correlationId, schemaVersion = CREDENTIAL_SCHEMA_VERSION) {
this.logger.trace("17o18n", correlationId);
const tokenKeys = this.getTokenKeys(schemaVersion);
let keysRemoved = 0;
keys.forEach((key) => {
const accessRemoval = tokenKeys.accessToken.indexOf(key);
if (accessRemoval > -1) {
tokenKeys.accessToken.splice(accessRemoval, 1);
keysRemoved++;
}
});
if (keysRemoved > 0) {
this.logger.info("15i5d5", correlationId);
this.setTokenKeys(tokenKeys, correlationId, schemaVersion);
return;
}
}
/**
* Removes given refreshToken from the cache and from the key map
* @param key
*/
removeRefreshToken(key, correlationId) {
super.removeRefreshToken(key, correlationId);
const tokenKeys = this.getTokenKeys();
const refreshRemoval = tokenKeys.refreshToken.indexOf(key);
if (refreshRemoval > -1) {
this.logger.info("1f4fq3", correlationId);
tokenKeys.refreshToken.splice(refreshRemoval, 1);
this.setTokenKeys(tokenKeys, correlationId);
}
}
/**
* Gets the keys for the cached tokens associated with this clientId
* @returns
*/
getTokenKeys(schemaVersion = CREDENTIAL_SCHEMA_VERSION) {
return getTokenKeys(this.clientId, this.browserStorage, schemaVersion);
}
/**
* Sets the token keys in the cache
* @param tokenKeys
* @param correlationId
* @returns
*/
setTokenKeys(tokenKeys, correlationId, schemaVersion = CREDENTIAL_SCHEMA_VERSION) {
if (tokenKeys.idToken.length === 0 &&
tokenKeys.accessToken.length === 0 &&
tokenKeys.refreshToken.length === 0) {
// If no keys left, remove the map
this.removeItem(getTokenKeysCacheKey(this.clientId, schemaVersion));
return;
}
else {
this.setItem(getTokenKeysCacheKey(this.clientId, schemaVersion), JSON.stringify(tokenKeys), correlationId);
}
}
/**
* generates idToken entity from a string
* @param idTokenKey
*/
getIdTokenCredential(idTokenKey, correlationId) {
const value = this.browserStorage.getUserData(idTokenKey);
if (!value) {
this.logger.trace("1jukz6", correlationId);
this.removeIdToken(idTokenKey, correlationId);
return null;
}
const parsedIdToken = this.validateAndParseJson(value);
if (!parsedIdToken || !CacheHelpers.isIdTokenEntity(parsedIdToken)) {
this.logger.trace("1jukz6", correlationId);
return null;
}
this.logger.trace("01ju66", correlationId);
return parsedIdToken;
}
/**
* set IdToken credential to the platform cache
* @param idToken
*/
async setIdTokenCredential(idToken, correlationId, kmsi) {
this.logger.trace("13hjll", correlationId);
const idTokenKey = this.generateCredentialKey(idToken);
const timestamp = Date.now().toString();
idToken.lastUpdatedAt = timestamp;
await this.setUserData(idTokenKey, JSON.stringify(idToken), correlationId, timestamp, kmsi);
const tokenKeys = this.getTokenKeys();
if (tokenKeys.idToken.indexOf(idTokenKey) === -1) {
this.logger.info("07jy92", correlationId);
tokenKeys.idToken.push(idTokenKey);
this.setTokenKeys(tokenKeys, correlationId);
}
}
/**
* generates accessToken entity from a string
* @param key
*/
getAccessTokenCredential(accessTokenKey, correlationId) {
const value = this.browserStorage.getUserData(accessTokenKey);
if (!value) {
this.logger.trace("0bqvx8", correlationId);
this.removeAccessTokenKeys([accessTokenKey], correlationId);
return null;
}
const parsedAccessToken = this.validateAndParseJson(value);
if (!parsedAccessToken ||
!CacheHelpers.isAccessTokenEntity(parsedAccessToken)) {
this.logger.trace("0bqvx8", correlationId);
return null;
}
this.logger.trace("1o81rl", correlationId);
return parsedAccessToken;
}
/**
* set accessToken credential to the platform cache
* @param accessToken
*/
async setAccessTokenCredential(accessToken, correlationId, kmsi) {
this.logger.trace("1pondb", correlationId);
const accessTokenKey = this.generateCredentialKey(accessToken);
const timestamp = Date.now().toString();
accessToken.lastUpdatedAt = timestamp;
await this.setUserData(accessTokenKey, JSON.stringify(accessToken), correlationId, timestamp, kmsi);
const tokenKeys = this.getTokenKeys();
const index = tokenKeys.accessToken.indexOf(accessTokenKey);
if (index !== -1) {
tokenKeys.accessToken.splice(index, 1); // Remove existing key before pushing to the end
}
this.logger.trace("1onhey", correlationId);
tokenKeys.accessToken.push(accessTokenKey);
this.setTokenKeys(tokenKeys, correlationId);
}
/**
* generates refreshToken entity from a string
* @param refreshTokenKey
*/
getRefreshTokenCredential(refreshTokenKey, correlationId) {
const value = this.browserStorage.getUserData(refreshTokenKey);
if (!value) {
this.logger.trace("0jlizt", correlationId);
this.removeRefreshToken(refreshTokenKey, correlationId);
return null;
}
const parsedRefreshToken = this.validateAndParseJson(value);
if (!parsedRefreshToken ||
!CacheHelpers.isRefreshTokenEntity(parsedRefreshToken)) {
this.logger.trace("0jlizt", correlationId);
return null;
}
this.logger.trace("0nokxi", correlationId);
return parsedRefreshToken;
}
/**
* set refreshToken credential to the platform cache
* @param refreshToken
*/
async setRefreshTokenCredential(refreshToken, correlationId, kmsi) {
this.logger.trace("0tcg8d", correlationId);
const refreshTokenKey = this.generateCredentialKey(refreshToken);
const timestamp = Date.now().toString();
refreshToken.lastUpdatedAt = timestamp;
await this.setUserData(refreshTokenKey, JSON.stringify(refreshToken), correlationId, timestamp, kmsi);
const tokenKeys = this.getTokenKeys();
if (tokenKeys.refreshToken.indexOf(refreshTokenKey) === -1) {
this.logger.info("0eckjs", correlationId);
tokenKeys.refreshToken.push(refreshTokenKey);
this.setTokenKeys(tokenKeys, correlationId);
}
}
/**
* fetch appMetadata entity from the platform cache
* @param appMetadataKey
* @param correlationId
*/
getAppMetadata(appMetadataKey, correlationId) {
const value = this.browserStorage.getItem(appMetadataKey);
if (!value) {
this.logger.trace("1q101h", correlationId);
return null;
}
const parsedMetadata = this.validateAndParseJson(value);
if (!parsedMetadata ||
!CacheHelpers.isAppMetadataEntity(appMetadataKey, parsedMetadata)) {
this.logger.trace("1q101h", correlationId);
return null;
}
this.logger.trace("19pvg2", correlationId);
return parsedMetadata;
}
/**
* set appMetadata entity to the platform cache
* @param appMetadata
* @param correlationId
*/
setAppMetadata(appMetadata, correlationId) {
this.logger.trace("0cyma6", correlationId);
const appMetadataKey = CacheHelpers.generateAppMetadataKey(appMetadata);
this.setItem(appMetadataKey, JSON.stringify(appMetadata), correlationId);
}
/**
* fetch server telemetry entity from the platform cache
* @param serverTelemetryKey
* @param correlationId
*/
getServerTelemetry(serverTelemetryKey, correlationId) {
const value = this.browserStorage.getItem(serverTelemetryKey);
if (!value) {
this.logger.trace("0jk19c", correlationId);
return null;
}
const parsedEntity = this.validateAndParseJson(value);
if (!parsedEntity ||
!CacheHelpers.isServerTelemetryEntity(serverTelemetryKey, parsedEntity)) {
this.logger.trace("0jk19c", correlationId);
return null;
}
this.logger.trace("12jguk", correlationId);
return parsedEntity;
}
/**
* set server telemetry entity to the platform cache
* @param serverTelemetryKey
* @param serverTelemetry
*/
setServerTelemetry(serverTelemetryKey, serverTelemetry, correlationId) {
this.logger.trace("1poh61", correlationId);
this.setItem(serverTelemetryKey, JSON.stringify(serverTelemetry), correlationId);
}
/**
*
*/
getAuthorityMetadata(key, correlationId) {
const value = this.internalStorage.getItem(key);
if (!value) {
this.logger.trace("1r39oe", correlationId);
return null;
}
const parsedMetadata = this.validateAndParseJson(value);
if (parsedMetadata &&
CacheHelpers.isAuthorityMetadataEntity(key, parsedMetadata)) {
this.logger.trace("1ohvk3", correlationId);
return parsedMetadata;
}
return null;
}
/**
*
*/
getAuthorityMetadataKeys() {
const allKeys = this.internalStorage.getKeys();
return allKeys.filter((key) => {
return this.isAuthorityMetadata(key);
});
}
/**
* Sets wrapper metadata in memory
* @param wrapperSKU
* @param wrapperVersion
*/
setWrapperMetadata(wrapperSKU, wrapperVersion) {
this.internalStorage.setItem(InMemoryCacheKeys.WRAPPER_SKU, wrapperSKU);
this.internalStorage.setItem(InMemoryCacheKeys.WRAPPER_VER, wrapperVersion);
}
/**
* Returns wrapper metadata from in-memory storage
*/
getWrapperMetadata() {
const sku = this.internalStorage.getItem(InMemoryCacheKeys.WRAPPER_SKU) || "";
const version = this.internalStorage.getItem(InMemoryCacheKeys.WRAPPER_VER) || "";
return [sku, version];
}
/**
*
* @param key
* @param entity
* @param correlationId
*/
setAuthorityMetadata(key, entity, correlationId) {
this.logger.trace("07w8n2", correlationId);
this.internalStorage.setItem(key, JSON.stringify(entity));
}
/**
* Gets the active account
*/
getActiveAccount(correlationId) {
const activeAccountKeyFilters = this.generateCacheKey(Constants.PersistentCacheKeys.ACTIVE_ACCOUNT_FILTERS);
const activeAccountValueFilters = this.browserStorage.getItem(activeAccountKeyFilters);
if (!activeAccountValueFilters) {
this.logger.trace("08gw0e", correlationId);
return null;
}
const activeAccountValueObj = this.validateAndParseJson(activeAccountValueFilters);
if (activeAccountValueObj) {
this.logger.trace("1t3ch7", correlationId);
return this.getAccountInfoFilteredBy({
homeAccountId: activeAccountValueObj.homeAccountId,
localAccountId: activeAccountValueObj.localAccountId,
tenantId: activeAccountValueObj.tenantId,
}, correlationId);
}
this.logger.trace("0me1up", correlationId);
return null;
}
/**
* Sets the active account's localAccountId in cache
* @param account
*/
setActiveAccount(account, correlationId) {
const activeAccountKey = this.generateCacheKey(Constants.PersistentCacheKeys.ACTIVE_ACCOUNT_FILTERS);
if (account) {
this.logger.verbose("0rsj80", correlationId);
const activeAccountValue = {
homeAccountId: account.homeAccountId,
localAccountId: account.localAccountId,
tenantId: account.tenantId,
};
this.setItem(activeAccountKey, JSON.stringify(activeAccountValue), correlationId);
}
else {
this.logger.verbose("1bp5z5", correlationId);
this.browserStorage.removeItem(activeAccountKey);
}
this.eventHandler.emitEvent(EventType.ACTIVE_ACCOUNT_CHANGED, correlationId);
}
/**
* fetch throttling entity from the platform cache
* @param throttlingCacheKey
* @param correlationId
*/
getThrottlingCache(throttlingCacheKey, correlationId) {
const value = this.browserStorage.getItem(throttlingCacheKey);
if (!value) {
this.logger.trace("1h4wa6", correlationId);
return null;
}
const parsedThrottlingCache = this.validateAndParseJson(value);
if (!parsedThrottlingCache ||
!CacheHelpers.isThrottlingEntity(throttlingCacheKey, parsedThrottlingCache)) {
this.logger.trace("1h4wa6", correlationId);
return null;
}
this.logger.trace("0of6n8", correlationId);
return parsedThrottlingCache;
}
/**
* set throttling entity to the platform cache
* @param throttlingCacheKey
* @param throttlingCache
*/
setThrottlingCache(throttlingCacheKey, throttlingCache, correlationId) {
this.logger.trace("0wfgh6", correlationId);
this.setItem(throttlingCacheKey, JSON.stringify(throttlingCache), correlationId);
}
/**
* Gets cache item with given key.
* @param cacheKey
* @param correlationId
* @param generateKey
*/
getTemporaryCache(cacheKey, correlationId, generateKey) {
this.logger.trace("1ordf8", correlationId);
const key = generateKey ? this.generateCacheKey(cacheKey) : cacheKey;
return this.temporaryCacheStorage.getItem(key);
}
/**
* Sets the cache item with the key and value given.
* @param key
* @param value
*/
setTemporaryCache(cacheKey, value, generateKey) {
const key = generateKey ? this.generateCacheKey(cacheKey) : cacheKey;
this.temporaryCacheStorage.setItem(key, value);
}
/**
* Removes the cache item with the given key.
* @param key
*/
removeItem(key) {
this.browserStorage.removeItem(key);
}
/**
* Removes the temporary cache item with the given key.
* @param key
*/
removeTemporaryItem(key) {
this.temporaryCacheStorage.removeItem(key);
}
/**
* Gets all keys in window.
*/
getKeys() {
return this.browserStorage.getKeys();
}
/**
* Clears all cache entries created by MSAL.
*/
clear(correlationId) {
// Removes all accounts and their credentials
this.removeAllAccounts(correlationId);
this.removeAppMetadata(correlationId);
// Remove temp storage first to make sure any cookies are cleared
this.temporaryCacheStorage.getKeys().forEach((cacheKey) => {
if (cacheKey.indexOf(PREFIX) !== -1 ||
cacheKey.indexOf(this.clientId) !== -1) {
this.removeTemporaryItem(cacheKey);
}
});
// Removes all remaining MSAL cache items
this.browserStorage.getKeys().forEach((cacheKey) => {
if (cacheKey.indexOf(PREFIX) !== -1 ||
cacheKey.indexOf(this.clientId) !== -1) {
this.browserStorage.removeItem(cacheKey);
}
});
this.internalStorage.clear();
}
/**
* Prepend msal.<client-id> to each key
* @param key
* @param addInstanceId
*/
generateCacheKey(key) {
if (StringUtils.startsWith(key, PREFIX)) {
return key;
}
return `${PREFIX}.${this.clientId}.${key}`;
}
/**
* Generate Credential Key. All changes to the key REQUIRE a schema version update.
* Cache Key: msal.<schema_version>|<home_account_id>|<environment>|<credential_type>|<client_id or familyId>|<realm>|<scopes>|<scheme>
* @param credentialEntity
* @returns
*/
generateCredentialKey(credential) {
const familyId = (credential.credentialType ===
Constants.CredentialType.REFRESH_TOKEN &&
credential.familyId) ||
credential.clientId;
const scheme = credential.tokenType &&
credential.tokenType.toLowerCase() !==
Constants.AuthenticationScheme.BEARER.toLowerCase()
? credential.tokenType.toLowerCase()
: "";
const credentialKey = [
`${PREFIX}.${CREDENTIAL_SCHEMA_VERSION}`,
credential.homeAccountId,
credential.environment,
credential.credentialType,
familyId,
credential.realm || "",
credential.target || "",
scheme,
];
return credentialKey.join(CACHE_KEY_SEPARATOR).toLowerCase();
}
/**
* Cache Key: msal.<schema_version>.<home_account_id>.<environment>.<tenant_id>
* @param account
* @returns
*/
generateAccountKey(account) {
const homeTenantId = account.homeAccountId.split(".")[1];
const accountKey = [
`${PREFIX}.${ACCOUNT_SCHEMA_VERSION}`,
account.homeAccountId,
account.environment,
homeTenantId || account.tenantId || "",
];
return accountKey.join(CACHE_KEY_SEPARATOR).toLowerCase();
}
/**
* Reset all temporary cache items
* @param correlationId
*/
resetRequestCache(correlationId) {
this.logger.trace("0h0ynu", correlationId);
this.removeTemporaryItem(this.generateCacheKey(TemporaryCacheKeys.REQUEST_PARAMS));
this.removeTemporaryItem(this.generateCacheKey(TemporaryCacheKeys.VERIFIER));
this.removeTemporaryItem(this.generateCacheKey(TemporaryCacheKeys.ORIGIN_URI));
this.removeTemporaryItem(this.generateCacheKey(TemporaryCacheKeys.URL_HASH));
this.removeTemporaryItem(this.generateCacheKey(TemporaryCacheKeys.NATIVE_REQUEST));
this.setInteractionInProgress(false, undefined);
}
cacheAuthorizeRequest(authCodeRequest, correlationId, codeVerifier) {
this.logger.trace("1tzef5", correlationId);
const encodedValue = base64Encode(JSON.stringify(authCodeRequest));
this.setTemporaryCache(TemporaryCacheKeys.REQUEST_PARAMS, encodedValue, true);
if (codeVerifier) {
const encodedVerifier = base64Encode(codeVerifier);
this.setTemporaryCache(TemporaryCacheKeys.VERIFIER, encodedVerifier, true);
}
}
/**
* Gets the token exchange parameters from the cache. Throws an error if nothing is found.
* @param correlationId
*/
getCachedRequest(correlationId) {
this.logger.trace("0uen20", correlationId);
// Get token request from cache and parse as TokenExchangeParameters.
const encodedTokenRequest = this.getTemporaryCache(TemporaryCacheKeys.REQUEST_PARAMS, correlationId, true);
if (!encodedTokenRequest) {
throw createBrowserAuthError(noTokenRequestCacheError);
}
const encodedVerifier = this.getTemporaryCache(TemporaryCacheKeys.VERIFIER, correlationId, true);
let parsedRequest;
let verifier = "";
try {
parsedRequest = JSON.parse(base64Decode(encodedTokenRequest));
if (encodedVerifier) {
verifier = base64Decode(encodedVerifier);
}
}
catch (e) {
this.logger.errorPii("0ewsey", correlationId);
this.logger.error("0tvdic", correlationId);
throw createBrowserAuthError(unableToParseTokenRequestCacheError);
}
return [parsedRequest, verifier];
}
/**
* Gets cached native request for redirect flows
* @param correlationId
*/
getCachedNativeRequest() {
this.logger.trace("1yxcdm", "");
const cachedRequest = this.getTemporaryCache(TemporaryCacheKeys.NATIVE_REQUEST, "", true);
if (!cachedRequest) {
this.logger.trace("0mnxd4", "");
return null;
}
const parsedRequest = this.validateAndParseJson(cachedRequest);
if (!parsedRequest) {
this.logger.error("0rrkip", "");
return null;
}
return parsedRequest;
}
isInteractionInProgress(matchClientId) {
const clientId = this.getInteractionInProgress()?.clientId;
if (matchClientId) {
return clientId === this.clientId;
}
else {
return !!clientId;
}
}
getInteractionInProgress() {
const key = `${PREFIX}.${TemporaryCacheKeys.INTERACTION_STATUS_KEY}`;
const value = this.getTemporaryCache(key, "", false);
try {
return value ? JSON.parse(value) : null;
}
catch (e) {
// Remove interaction and other temp keys if interaction status can't be parsed
this.logger.error("0jjyys", "");
this.removeTemporaryItem(key);
this.resetRequestCache("");
clearHash(window);
return null;
}
}
setInteractionInProgress(inProgress, type = INTERACTION_TYPE.SIGNIN, allowOverride = false, correlationId = "") {
// Ensure we don't overwrite interaction in progress for a different clientId
const key = `${PREFIX}.${TemporaryCacheKeys.INTERACTION_STATUS_KEY}`;
if (inProgress) {
const existingInteraction = this.getInteractionInProgress();
if (existingInteraction) {
if (allowOverride) {
this.logger.warning("1pmscr", correlationId);
// Cancel any active bridge monitor from the previous interaction
cancelPendingBridgeResponse(this.logger, correlationId);
// Clear existing interaction to allow new one
this.removeTemporaryItem(key);
}
else {
throw createBrowserAuthError(interactionInProgress);
}
}
// Set new interaction
this.setTemporaryCache(key, JSON.stringify({ clientId: this.clientId, type }), false);
}
else if (!inProgress &&
this.getInteractionInProgress()?.clientId === this.clientId) {
this.removeTemporaryItem(key);
}
}
/**
* Builds credential entities from AuthenticationResult object and saves the resulting credentials to the cache
* @param result
* @param request
*/
async hydrateCache(result, request) {
const idTokenEntity = CacheHelpers.createIdTokenEntity(result.account.homeAccountId, result.account.environment, result.idToken, this.clientId, result.tenantId);
/**
* meta data for cache stores time in seconds from epoch
* AuthenticationResult returns expiresOn and extExpiresOn in milliseconds (as a Date object which is in ms)
* We need to map these for the cache when building tokens from AuthenticationResult
*
* The next MSAL VFuture should map these both to same value if possible
*/
const accessTokenEntity = CacheHelpers.createAccessTokenEntity(result.account.homeAccountId, result.account.environment, result.accessToken, this.clientId, result.tenantId, result.scopes.join(" "),
// Access token expiresOn stored in seconds, converting from AuthenticationResult expiresOn stored as Date
result.expiresOn
? TimeUtils.toSecondsFromDate(result.expiresOn)
: 0, result.extExpiresOn
? TimeUtils.toSecondsFromDate(result.extExpiresOn)
: 0, base64Decode, undefined, // refreshOn
result.tokenType, undefined, // userAssertionHash
request.sshKid);
if (request.resource) {
accessTokenEntity.resource = request.resource;
}
const cacheRecord = {
idToken: idTokenEntity,
accessToken: accessTokenEntity,
};
return this.saveCacheRecord(cacheRecord, result.correlationId, AuthToken.isKmsi(AuthToken.extractTokenClaims(result.idToken, base64Decode)), ApiId.hydrateCache);
}
/**
* saves a cache record
* @param cacheRecord {CacheRecord}
* @param storeInCache {?StoreInCache}
* @param correlationId {?string} correlation id
*/
async saveCacheRecord(cacheRecord, correlationId, kmsi, apiId, storeInCache) {
try {
await super.saveCacheRecord(cacheRecord, correlationId, kmsi, apiId, storeInCache);
}
catch (e) {
if (e instanceof CacheError &&
this.performanceClient &&
correlationId) {
try {
const tokenKeys = this.getTokenKeys();
this.performanceClient.addFields({
cacheRtCount: tokenKeys.refreshToken.length,
cacheIdCount: tokenKeys.idToken.length,
cacheAtCount: tokenKeys.accessToken.length,
}, correlationId);
}
catch (e) { }
}
throw e;
}
}
}
/**
* Returns a window storage class implementing the IWindowStorage interface that corresponds to the configured cacheLocation.
* @param cacheLocation
*/
function getStorageImplementation(clientId, cacheLocation, logger, performanceClient) {
try {
switch (cacheLocation) {
case BrowserCacheLocation.LocalStorage:
return new LocalStorage(clientId, logger, performanceClient);
case BrowserCacheLocation.SessionStorage:
return new SessionStorage();
case BrowserCacheLocation.MemoryStorage:
default:
break;
}
}
catch (e) {
logger.error(e, "");
}
return new MemoryStorage();
}
const DEFAULT_BROWSER_CACHE_MANAGER = (clientId, logger, performanceClient, eventHandler) => {
const cacheOptions = {
cacheLocation: BrowserCacheLocation.MemoryStorage,
cacheRetentionDays: 5,
};
return new BrowserCacheManager(clientId, cacheOptions, DEFAULT_CRYPTO_IMPLEMENTATION, logger, performanceClient, eventHandler);
};
export { BrowserCacheManager, DEFAULT_BROWSER_CACHE_MANAGER };
//# sourceMappingURL=BrowserCacheManager.mjs.map