io.ballerina.messaging.broker.client.cmd.impl.transfer.TransferExchangeCmd Maven / Gradle / Ivy
package io.ballerina.messaging.broker.client.cmd.impl.transfer;
import com.beust.jcommander.Parameter;
import com.beust.jcommander.Parameters;
import io.ballerina.messaging.broker.client.cmd.impl.grant.GrantCmd;
import io.ballerina.messaging.broker.client.http.HttpClient;
import io.ballerina.messaging.broker.client.http.HttpRequest;
import io.ballerina.messaging.broker.client.http.HttpResponse;
import io.ballerina.messaging.broker.client.output.ResponseFormatter;
import io.ballerina.messaging.broker.client.resources.Configuration;
import io.ballerina.messaging.broker.client.resources.Message;
import io.ballerina.messaging.broker.client.utils.Constants;
import io.ballerina.messaging.broker.client.utils.Utils;
import java.net.HttpURLConnection;
import static io.ballerina.messaging.broker.client.utils.Constants.BROKER_ERROR_MSG;
import static io.ballerina.messaging.broker.client.utils.Constants.HTTP_PUT;
/**
* Command representing MB exchange ownership transferring.
*/
@Parameters(commandDescription = "Transfer ownership of a exchange in the Broker")
public class TransferExchangeCmd extends GrantCmd {
@Parameter(description = "name of the exchange",
required = true)
private String exchange;
@Parameter(names = { "--new-owner", "-n" },
description = "user id of the new owner",
required = true)
private String newOwner;
public TransferExchangeCmd(String rootCommand) {
super(rootCommand);
}
@Override
public void execute() {
if (help) {
processHelpLogs();
return;
}
Configuration configuration = Utils.getConfiguration(password);
HttpClient httpClient = new HttpClient(configuration);
HttpRequest httpRequest = new HttpRequest(
Constants.EXCHANGES_URL_PARAM + exchange + Constants.PERMISSIONS_OWNER_URL_PARAM,
getJsonRequestPayload());
// do DELETE
HttpResponse response = httpClient.sendHttpRequest(httpRequest, HTTP_PUT);
// handle response
if (response.getStatusCode() == HttpURLConnection.HTTP_NO_CONTENT) {
Message message = new Message("Exchage ownership transferred successfully");
ResponseFormatter.printMessage(message);
} else {
ResponseFormatter.handleErrorResponse(buildResponseMessage(response, BROKER_ERROR_MSG));
}
}
private String getJsonRequestPayload() {
return "{\"owner\":\"" + newOwner + "\"}";
}
@Override
public void appendUsage(StringBuilder out) {
out.append("Usage:\n");
out.append(" " + rootCommand + " revoke queue [queue-name]\n");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy