com.microsoft.azure.servicebus.security.ManagedIdentityTokenProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-servicebus Show documentation
Show all versions of azure-servicebus Show documentation
Java library for Azure Service Bus. Please note, a newer package com.azure:azure-messaging-servicebus for Azure Service Bus is available as of December 2020. While this package will continue to receive critical bug fixes, we strongly encourage you to upgrade. Read the migration guide at https://aka.ms/azsdk/java/migrate/sb for more details.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.azure.servicebus.security;
import java.io.IOException;
import java.text.ParseException;
import java.time.Instant;
import java.util.Date;
import java.util.concurrent.CompletableFuture;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.microsoft.azure.credentials.MSICredentials;
import com.microsoft.azure.servicebus.primitives.MessagingFactory;
/**
* This is a token provider that obtains token using Managed Identity(MI). This token provider automatically detects MI settings.
* @since 1.2.0
*
*/
public class ManagedIdentityTokenProvider extends TokenProvider {
private static final Logger TRACE_LOGGER = LoggerFactory.getLogger(ManagedIdentityTokenProvider.class);
@Override
public CompletableFuture getSecurityTokenAsync(String audience) {
CompletableFuture tokenGeneratingFuture = new CompletableFuture<>();
MessagingFactory.INTERNAL_THREAD_POOL.execute(() -> {
try {
MSICredentials credentials = new MSICredentials();
String rawToken = credentials.getToken(SecurityConstants.SERVICEBUS_AAD_AUDIENCE_RESOURCE_URL);
Date expiry = SecurityToken.getExpirationDateTimeUtcFromToken(rawToken);
tokenGeneratingFuture.complete(new SecurityToken(SecurityTokenType.JWT, audience, rawToken, Instant.now(), expiry.toInstant()));
} catch (IOException e) {
TRACE_LOGGER.info("ManagedIdentity token generation failed.", e);
tokenGeneratingFuture.completeExceptionally(e);
} catch (ParseException e) {
TRACE_LOGGER.info("Could not parse the expiry time from the Managed Identity token string.", e);
tokenGeneratingFuture.completeExceptionally(e);
}
});
return tokenGeneratingFuture;
}
}