| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- "use strict";
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // Licensed under the MIT License. See License.txt in the project root for license information.
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
- return new (P || (P = Promise))(function (resolve, reject) {
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
- function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
- step((generator = generator.apply(thisArg, _arguments || [])).next());
- });
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- const tokenCredentialsBase_1 = require("./tokenCredentialsBase");
- const authConstants_1 = require("../util/authConstants");
- class ApplicationTokenCredentialsBase extends tokenCredentialsBase_1.TokenCredentialsBase {
- /**
- * Creates a new ApplicationTokenCredentials object.
- * See {@link https://azure.microsoft.com/en-us/documentation/articles/active-directory-devquickstarts-dotnet/ Active Directory Quickstart for .Net}
- * for detailed instructions on creating an Azure Active Directory application.
- * @constructor
- * @param {string} clientId The active directory application client id.
- * @param {string} domain The domain or tenant id containing this application.
- * @param {string} [tokenAudience] The audience for which the token is requested. Valid values are 'graph', 'batch', or any other resource like 'https://vault.azure.net/'.
- * If tokenAudience is 'graph' then domain should also be provided and its value should not be the default 'common' tenant. It must be a string (preferrably in a guid format).
- * @param {Environment} [environment] The azure environment to authenticate with.
- * @param {object} [tokenCache] The token cache. Default value is the MemoryCache object from adal.
- */
- constructor(clientId, domain, tokenAudience, environment, tokenCache) {
- super(clientId, domain, tokenAudience, environment, tokenCache);
- }
- getTokenFromCache() {
- const _super = Object.create(null, {
- getTokenFromCache: { get: () => super.getTokenFromCache }
- });
- return __awaiter(this, void 0, void 0, function* () {
- const self = this;
- // a thin wrapper over the base implementation. try get token from cache, additionaly clean up cache if required.
- try {
- const tokenResponse = yield _super.getTokenFromCache.call(this, undefined);
- return Promise.resolve(tokenResponse);
- }
- catch (error) {
- // Remove the stale token from the tokencache. ADAL gives the same error message "Entry not found in cache."
- // for entry not being present in the cache and for accessToken being expired in the cache. We do not want the token cache
- // to contain the expired token, we clean it up here.
- const status = yield self.removeInvalidItemsFromCache({
- _clientId: self.clientId
- });
- if (status.result) {
- return Promise.reject(error);
- }
- const message = status && status.details && status.details.message
- ? status.details.message
- : status.details;
- return Promise.reject(new Error(authConstants_1.AuthConstants.SDK_INTERNAL_ERROR +
- " : " +
- "critical failure while removing expired token for service principal from token cache. " +
- message));
- }
- });
- }
- /**
- * Removes invalid items from token cache. This method is different. Here we never reject in case of error.
- * Rather we resolve with an object that says the result is false and error information is provided in
- * the details property of the resolved object. This is done to do better error handling in the above function
- * where removeInvalidItemsFromCache() is called.
- * @param {object} query The query to be used for finding the token for service principal from the cache
- * @returns {result: boolean, details?: Error} resultObject with more info.
- */
- removeInvalidItemsFromCache(query) {
- const self = this;
- return new Promise(resolve => {
- self.tokenCache.find(query, (error, entries) => {
- if (error) {
- return resolve({ result: false, details: error });
- }
- if (entries && entries.length > 0) {
- return new Promise(resolve => {
- return self.tokenCache.remove(entries, (err) => {
- if (err) {
- return resolve({ result: false, details: err });
- }
- return resolve({ result: true });
- });
- });
- }
- else {
- return resolve({ result: true });
- }
- });
- });
- }
- }
- exports.ApplicationTokenCredentialsBase = ApplicationTokenCredentialsBase;
- //# sourceMappingURL=applicationTokenCredentialsBase.js.map
|