package crate.elasticsearch.rest.action.admin.searchinto; import static org.elasticsearch.rest.RestRequest.Method.POST; import static org.elasticsearch.rest.RestStatus.BAD_REQUEST; import static org.elasticsearch.rest.RestStatus.OK; import static org.elasticsearch.rest.action.support.RestActions.splitTypes; import java.io.IOException; import org.elasticsearch.action.Action; import org.elasticsearch.action.ActionListener; import org.elasticsearch.action.support.IgnoreIndices; import org.elasticsearch.action.support.broadcast.BroadcastOperationThreading; import org.elasticsearch.client.Client; import org.elasticsearch.common.bytes.BytesReference; import org.elasticsearch.common.inject.Inject; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.common.xcontent.XContentBuilder; import org.elasticsearch.rest.BaseRestHandler; import org.elasticsearch.rest.RestChannel; import org.elasticsearch.rest.RestController; import org.elasticsearch.rest.RestRequest; import org.elasticsearch.rest.XContentRestResponse; import org.elasticsearch.rest.XContentThrowableRestResponse; import org.elasticsearch.rest.action.support.RestActions; import org.elasticsearch.rest.action.support.RestXContentBuilder; import crate.elasticsearch.action.searchinto.SearchIntoAction; import crate.elasticsearch.action.searchinto.SearchIntoRequest; import crate.elasticsearch.action.searchinto.SearchIntoResponse; import crate.elasticsearch.client.action.searchinto.SearchIntoRequestBuilder; /** * */ public class RestSearchIntoAction extends BaseRestHandler { @Inject public RestSearchIntoAction(Settings settings, Client client, RestController controller) { super(settings, client); registerHandlers(controller); } protected void registerHandlers(RestController controller) { controller.registerHandler(POST, "/_search_into", this); controller.registerHandler(POST, "/{index}/_search_into", this); controller.registerHandler(POST, "/{index}/{type}/_search_into", this); } protected Action<SearchIntoRequest, SearchIntoResponse, SearchIntoRequestBuilder> action() { return SearchIntoAction.INSTANCE; } public void handleRequest(final RestRequest request, final RestChannel channel) { SearchIntoRequest searchIntoRequest = new SearchIntoRequest( RestActions.splitIndices(request.param("index"))); if (request.hasParam("ignore_indices")) { searchIntoRequest.ignoreIndices(IgnoreIndices.fromString( request.param( "ignore_indices"))); } searchIntoRequest.listenerThreaded(false); try { BroadcastOperationThreading operationThreading = BroadcastOperationThreading.fromString( request.param("operation_threading"), BroadcastOperationThreading.SINGLE_THREAD); if (operationThreading == BroadcastOperationThreading.NO_THREADS) { // since we don't spawn, don't allow no_threads, // but change it to a single thread operationThreading = BroadcastOperationThreading.SINGLE_THREAD; } searchIntoRequest.operationThreading(operationThreading); if (request.hasContent()) { searchIntoRequest.source(request.content(), request.contentUnsafe()); } else { String source = request.param("source"); if (source != null) { searchIntoRequest.source(source); } else { BytesReference querySource = RestActions.parseQuerySource( request); if (querySource != null) { searchIntoRequest.source(querySource, false); } } } searchIntoRequest.routing(request.param("routing")); searchIntoRequest.types(splitTypes(request.param("type"))); searchIntoRequest.preference(request.param("preference", "_primary")); } catch (Exception e) { try { XContentBuilder builder = RestXContentBuilder .restContentBuilder( request); channel.sendResponse(new XContentRestResponse(request, BAD_REQUEST, builder.startObject().field("error", e.getMessage()).endObject())); } catch (IOException e1) { logger.error("Failed to send failure response", e1); } return; } client.execute(action(), searchIntoRequest, new ActionListener<SearchIntoResponse>() { public void onResponse(SearchIntoResponse response) { try { XContentBuilder builder = RestXContentBuilder .restContentBuilder( request); response.toXContent(builder, request); channel.sendResponse(new XContentRestResponse( request, OK, builder)); } catch (Exception e) { onFailure(e); } } public void onFailure(Throwable e) { try { channel.sendResponse( new XContentThrowableRestResponse(request, e)); } catch (IOException e1) { logger.error("Failed to send failure response", e1); } } }); } }