com.mongodb.internal.authentication.AzureCredentialHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-driver-core Show documentation
Show all versions of mongodb-driver-core Show documentation
The Java operations layer for the MongoDB Java Driver. Third parties can ' +
'wrap this layer to provide custom higher-level APIs
/*
* Copyright 2008-present MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mongodb.internal.authentication;
import com.mongodb.MongoClientException;
import com.mongodb.internal.ExpirableValue;
import org.bson.BsonDocument;
import org.bson.BsonString;
import org.bson.json.JsonParseException;
import java.time.Duration;
import java.util.HashMap;
import java.util.Map;
import java.util.Optional;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import static com.mongodb.internal.Locks.lockInterruptibly;
import static com.mongodb.internal.authentication.HttpHelper.getHttpContents;
/**
* Utility class for working with Azure authentication.
*
* This class should not be considered a part of the public API.
*/
public final class AzureCredentialHelper {
private static final String ACCESS_TOKEN_FIELD = "access_token";
private static final String EXPIRES_IN_FIELD = "expires_in";
private static final Lock CACHED_ACCESS_TOKEN_LOCK = new ReentrantLock();
private static volatile ExpirableValue cachedAccessToken = ExpirableValue.expired();
public static BsonDocument obtainFromEnvironment() {
String accessToken;
Optional cachedValue = cachedAccessToken.getValue();
if (cachedValue.isPresent()) {
accessToken = cachedValue.get();
} else {
lockInterruptibly(CACHED_ACCESS_TOKEN_LOCK);
try {
cachedValue = cachedAccessToken.getValue();
if (cachedValue.isPresent()) {
accessToken = cachedValue.get();
} else {
String endpoint = "http://" + "169.254.169.254:80"
+ "/metadata/identity/oauth2/token?api-version=2018-02-01&resource=https://vault.azure.net";
Map headers = new HashMap<>();
headers.put("Metadata", "true");
headers.put("Accept", "application/json");
long startNanoTime = System.nanoTime();
BsonDocument responseDocument;
try {
responseDocument = BsonDocument.parse(getHttpContents("GET", endpoint, headers));
} catch (JsonParseException e) {
throw new MongoClientException("Exception parsing JSON from Azure IMDS metadata response.", e);
}
if (!responseDocument.isString(ACCESS_TOKEN_FIELD)) {
throw new MongoClientException(String.format(
"The %s field from Azure IMDS metadata response is missing or is not a string", ACCESS_TOKEN_FIELD));
}
if (!responseDocument.isString(EXPIRES_IN_FIELD)) {
throw new MongoClientException(String.format(
"The %s field from Azure IMDS metadata response is missing or is not a string", EXPIRES_IN_FIELD));
}
accessToken = responseDocument.getString(ACCESS_TOKEN_FIELD).getValue();
int expiresInSeconds = Integer.parseInt(responseDocument.getString(EXPIRES_IN_FIELD).getValue());
cachedAccessToken = ExpirableValue.expirable(accessToken, Duration.ofSeconds(expiresInSeconds).minus(Duration.ofMinutes(1)),
startNanoTime);
}
} finally {
CACHED_ACCESS_TOKEN_LOCK.unlock();
}
}
return new BsonDocument("accessToken", new BsonString(accessToken));
}
private AzureCredentialHelper() {
}
}