com.mongodb.operation.CreateUserOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-java-driver Show documentation
Show all versions of mongo-java-driver Show documentation
The MongoDB Java Driver uber-artifact, containing mongodb-driver, mongodb-driver-core, and bson
The newest version!
/*
* Copyright (c) 2008-2014 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.operation;
import com.mongodb.MongoCredential;
import com.mongodb.MongoNamespace;
import com.mongodb.WriteConcern;
import com.mongodb.WriteConcernResult;
import com.mongodb.async.SingleResultCallback;
import com.mongodb.binding.AsyncWriteBinding;
import com.mongodb.binding.WriteBinding;
import com.mongodb.bulk.InsertRequest;
import com.mongodb.connection.AsyncConnection;
import com.mongodb.connection.Connection;
import org.bson.BsonDocument;
import static com.mongodb.assertions.Assertions.notNull;
import static com.mongodb.internal.async.ErrorHandlingResultCallback.errorHandlingCallback;
import static com.mongodb.operation.CommandOperationHelper.executeWrappedCommandProtocol;
import static com.mongodb.operation.CommandOperationHelper.executeWrappedCommandProtocolAsync;
import static com.mongodb.operation.OperationHelper.AsyncCallableWithConnection;
import static com.mongodb.operation.OperationHelper.CallableWithConnection;
import static com.mongodb.operation.OperationHelper.VoidTransformer;
import static com.mongodb.operation.OperationHelper.releasingCallback;
import static com.mongodb.operation.OperationHelper.serverIsAtLeastVersionTwoDotSix;
import static com.mongodb.operation.OperationHelper.withConnection;
import static com.mongodb.operation.UserOperationHelper.asCollectionInsertDocument;
import static com.mongodb.operation.UserOperationHelper.asCommandDocument;
import static java.util.Arrays.asList;
/**
* An operation to create a user.
*
* @since 3.0
*/
public class CreateUserOperation implements AsyncWriteOperation, WriteOperation {
private final MongoCredential credential;
private final boolean readOnly;
/**
* Construct a new instance.
*
* @param credential the users credentials.
* @param readOnly true if the user is a readOnly user.
*/
public CreateUserOperation(final MongoCredential credential, final boolean readOnly) {
this.credential = notNull("credential", credential);
this.readOnly = readOnly;
}
/**
* Gets the users credentials.
*
* @return the users credentials.
*/
public MongoCredential getCredential() {
return credential;
}
/**
* Returns true if the user is a readOnly user.
*
* @return true if the user is a readOnly user.
*/
public boolean isReadOnly() {
return readOnly;
}
@Override
public Void execute(final WriteBinding binding) {
return withConnection(binding, new CallableWithConnection() {
@Override
public Void call(final Connection connection) {
if (serverIsAtLeastVersionTwoDotSix(connection.getDescription())) {
executeWrappedCommandProtocol(binding, getCredential().getSource(), getCommand(), connection);
} else {
connection.insert(getNamespace(), true, WriteConcern.ACKNOWLEDGED, asList(getInsertRequest()));
}
return null;
}
});
}
@Override
public void executeAsync(final AsyncWriteBinding binding, final SingleResultCallback callback) {
withConnection(binding, new AsyncCallableWithConnection() {
@Override
public void call(final AsyncConnection connection, final Throwable t) {
if (t != null) {
errorHandlingCallback(callback).onResult(null, t);
} else {
final SingleResultCallback wrappedCallback = releasingCallback(errorHandlingCallback(callback), connection);
if (serverIsAtLeastVersionTwoDotSix(connection.getDescription())) {
executeWrappedCommandProtocolAsync(binding, credential.getSource(), getCommand(), connection,
new VoidTransformer(), wrappedCallback);
} else {
connection.insertAsync(getNamespace(), true, WriteConcern.ACKNOWLEDGED,
asList(getInsertRequest()), new SingleResultCallback() {
@Override
public void onResult(final WriteConcernResult result, final Throwable t) {
wrappedCallback.onResult(null, t);
}
});
}
}
}
});
}
private InsertRequest getInsertRequest() {
return new InsertRequest(asCollectionInsertDocument(credential, readOnly));
}
private MongoNamespace getNamespace() {
return new MongoNamespace(credential.getSource(), "system.users");
}
private BsonDocument getCommand() {
return asCommandDocument(credential, readOnly, "createUser");
}
}