com.azure.identity.SharedTokenCacheCredential Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-identity Show documentation
Show all versions of azure-identity Show documentation
This module contains client library for Microsoft Azure Identity.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.identity;
import com.azure.core.credential.AccessToken;
import com.azure.core.credential.TokenCredential;
import com.azure.core.credential.TokenRequestContext;
import com.azure.core.util.Configuration;
import com.azure.core.util.logging.ClientLogger;
import com.azure.identity.implementation.IdentityClient;
import com.azure.identity.implementation.IdentityClientBuilder;
import com.azure.identity.implementation.IdentityClientOptions;
import com.azure.identity.implementation.MsalAuthenticationAccount;
import com.azure.identity.implementation.MsalToken;
import com.azure.identity.implementation.util.LoggingUtil;
import com.azure.identity.implementation.util.ValidationUtil;
import reactor.core.publisher.Mono;
import java.util.concurrent.atomic.AtomicReference;
/**
* A credential provider that provides token credentials from the MSAL shared token cache.
* Requires a username and client ID. If a username is not provided, then the
* {@link Configuration#PROPERTY_AZURE_USERNAME AZURE_USERNAME} environment variable will be used.
*
* This credential is a legacy mechanism for authenticating clients using credentials provided to Visual Studio.
*
* @see com.azure.identity
*/
public class SharedTokenCacheCredential implements TokenCredential {
private static final ClientLogger LOGGER = new ClientLogger(SharedTokenCacheCredential.class);
private final String username;
private final String clientId;
private final String tenantId;
private final AtomicReference cachedToken;
private final IdentityClient identityClient;
/**
* Creates an instance of the Shared Token Cache Credential Provider.
*
* @param username the username of the account for the application
* @param clientId the client ID of the application
* @param identityClientOptions the options for configuring the identity client
*/
SharedTokenCacheCredential(String username, String clientId, String tenantId,
IdentityClientOptions identityClientOptions) {
Configuration configuration = identityClientOptions.getConfiguration() == null
? Configuration.getGlobalConfiguration().clone() : identityClientOptions.getConfiguration();
if (username == null) {
this.username = configuration.get(Configuration.PROPERTY_AZURE_USERNAME);
} else {
this.username = username;
}
if (clientId == null) {
this.clientId = configuration.get(Configuration.PROPERTY_AZURE_CLIENT_ID);
} else {
this.clientId = clientId;
}
if (tenantId == null) {
this.tenantId = configuration.contains(Configuration.PROPERTY_AZURE_TENANT_ID)
? configuration.get(Configuration.PROPERTY_AZURE_TENANT_ID) : "common";
ValidationUtil.validateTenantIdCharacterRange(this.tenantId, LOGGER);
} else {
this.tenantId = tenantId;
}
this.identityClient = new IdentityClientBuilder()
.tenantId(this.tenantId)
.clientId(this.clientId)
.sharedTokenCacheCredential(true)
.identityClientOptions(identityClientOptions)
.build();
this.cachedToken = new AtomicReference<>();
if (identityClientOptions.getAuthenticationRecord() != null) {
cachedToken.set(new MsalAuthenticationAccount(identityClientOptions.getAuthenticationRecord()));
}
LoggingUtil.logAvailableEnvironmentVariables(LOGGER, configuration);
}
/**
* Gets token from shared token cache
* */
@Override
public Mono getToken(TokenRequestContext request) {
return Mono.defer(() -> {
if (cachedToken.get() != null) {
return identityClient.authenticateWithPublicClientCache(request, cachedToken.get())
.onErrorResume(t -> Mono.empty());
} else {
return Mono.empty();
}
}).switchIfEmpty(
Mono.defer(() -> identityClient.authenticateWithSharedTokenCache(request, username)))
.map(this::updateCache)
.doOnNext(token -> LoggingUtil.logTokenSuccess(LOGGER, request))
.doOnError(error -> LoggingUtil.logTokenError(LOGGER, identityClient.getIdentityClientOptions(),
request, error))
.onErrorMap(error -> {
if (identityClient.getIdentityClientOptions().isChained()) {
return new CredentialUnavailableException(error.getMessage(), error);
} else {
return error;
}
});
}
private AccessToken updateCache(MsalToken msalToken) {
cachedToken.set(
new MsalAuthenticationAccount(
new AuthenticationRecord(msalToken.getAuthenticationResult(),
identityClient.getTenantId(), identityClient.getClientId())));
return msalToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy