package com.mongodb.internal.connection;
import com.mongodb.MongoCommandException;
import com.mongodb.MongoSecurityException;
import com.mongodb.async.SingleResultCallback;
import com.mongodb.connection.ConnectionDescription;
import org.bson.BsonDocument;
import org.bson.BsonString;
import static com.mongodb.internal.authentication.NativeAuthenticationHelper.getAuthCommand;
import static com.mongodb.internal.authentication.NativeAuthenticationHelper.getNonceCommand;
import static com.mongodb.internal.connection.CommandHelper.executeCommand;
import static com.mongodb.internal.connection.CommandHelper.executeCommandAsync;
class NativeAuthenticator extends Authenticator {
NativeAuthenticator(final MongoCredentialWithCache credential) {
super(credential);
}
@Override
public void authenticate(final InternalConnection connection, final ConnectionDescription connectionDescription) {
try {
BsonDocument nonceResponse = executeCommand(getMongoCredential().getSource(),
getNonceCommand(),
connection);
BsonDocument authCommand = getAuthCommand(getUserNameNonNull(),
getPasswordNonNull(),
((BsonString) nonceResponse.get("nonce")).getValue());
executeCommand(getMongoCredential().getSource(), authCommand, connection);
} catch (MongoCommandException e) {
throw new MongoSecurityException(getMongoCredential(), "Exception authenticating", e);
}
}
@Override
void authenticateAsync(final InternalConnection connection, final ConnectionDescription connectionDescription,
final SingleResultCallback<Void> callback) {
executeCommandAsync(getMongoCredential().getSource(), getNonceCommand(), connection,
new SingleResultCallback<BsonDocument>() {
@Override
public void onResult(final BsonDocument nonceResult, final Throwable t) {
if (t != null) {
callback.onResult(null, translateThrowable(t));
} else {
executeCommandAsync(getMongoCredential().getSource(),
getAuthCommand(getUserNameNonNull(), getPasswordNonNull(),
((BsonString) nonceResult.get("nonce")).getValue()),
connection,
new SingleResultCallback<BsonDocument>() {
@Override
public void onResult(final BsonDocument result, final Throwable t) {
if (t != null) {
callback.onResult(null, translateThrowable(t));
} else {
callback.onResult(null, null);
}
}
});
}
}
});
}
private Throwable translateThrowable(final Throwable t) {
if (t instanceof MongoCommandException) {
return new MongoSecurityException(getMongoCredential(), "Exception authenticating", t);
} else {
return t;
}
}
}