/src/main/java/com/couchbase/mock/http/capi/ViewHandler.java

http://github.com/couchbase/CouchbaseMock · Java · 107 lines · 80 code · 12 blank · 15 comment · 8 complexity · f0d5ce5e71081af983a1dff375d9b743 MD5 · raw file

  1. /*
  2. * Copyright 2017 Couchbase, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.couchbase.mock.http.capi;
  17. import com.couchbase.mock.Bucket;
  18. import com.couchbase.mock.JsonUtils;
  19. import com.couchbase.mock.httpio.HandlerUtil;
  20. import com.couchbase.mock.memcached.Item;
  21. import com.couchbase.mock.memcached.Storage;
  22. import com.couchbase.mock.views.Configuration;
  23. import com.couchbase.mock.views.QueryExecutionException;
  24. import com.couchbase.mock.views.View;
  25. import com.google.gson.JsonElement;
  26. import com.google.gson.JsonObject;
  27. import org.apache.http.HttpEntity;
  28. import org.apache.http.HttpEntityEnclosingRequest;
  29. import org.apache.http.HttpException;
  30. import org.apache.http.HttpRequest;
  31. import org.apache.http.HttpResponse;
  32. import org.apache.http.HttpStatus;
  33. import org.apache.http.entity.ContentType;
  34. import org.apache.http.entity.StringEntity;
  35. import org.apache.http.protocol.HttpContext;
  36. import org.apache.http.protocol.HttpRequestHandler;
  37. import org.apache.http.util.EntityUtils;
  38. import java.io.IOException;
  39. import java.net.MalformedURLException;
  40. import java.net.URL;
  41. import java.util.HashMap;
  42. import java.util.Map;
  43. public class ViewHandler implements HttpRequestHandler {
  44. final View view;
  45. final Bucket bucket;
  46. public ViewHandler(View view, Bucket bucket) {
  47. this.view = view;
  48. this.bucket = bucket;
  49. }
  50. @Override
  51. public void handle(HttpRequest request, HttpResponse response, HttpContext context) throws HttpException, IOException {
  52. Iterable<Item> items = bucket.getMasterItems(Storage.StorageType.CACHE);
  53. URL url = HandlerUtil.getUrl(request);
  54. Map<String,String> paramsMap = new HashMap<String, String>();
  55. if (request.getRequestLine().getMethod().equals("POST")) {
  56. HttpEntity reqEntity = ((HttpEntityEnclosingRequest)request).getEntity();
  57. String contentType = reqEntity.getContentType().getValue();
  58. String rawPayload = EntityUtils.toString(reqEntity);
  59. if (!contentType.equals(ContentType.APPLICATION_JSON.getMimeType())) {
  60. HandlerUtil.makeJsonResponse(response, "Content type must be application/json");
  61. response.setStatusCode(HttpStatus.SC_BAD_REQUEST);
  62. return;
  63. }
  64. JsonObject jsonDecoded = JsonUtils.decode(rawPayload, JsonObject.class);
  65. for (Map.Entry<String,JsonElement> entry : jsonDecoded.entrySet()) {
  66. paramsMap.put(entry.getKey(), entry.getValue().toString());
  67. }
  68. }
  69. String queryString = url.getQuery();
  70. if (queryString != null && !queryString.isEmpty()) {
  71. try {
  72. Map<String, String> kvParams = HandlerUtil.getQueryParams(queryString);
  73. paramsMap.putAll(kvParams);
  74. } catch (MalformedURLException ex) {
  75. String errMessage = ex.getMessage();
  76. if (errMessage == null) {
  77. errMessage = "Internal Error for " + queryString;
  78. }
  79. HandlerUtil.makeJsonResponse(response, errMessage);
  80. response.setStatusCode(HttpStatus.SC_BAD_REQUEST);
  81. return;
  82. }
  83. }
  84. try {
  85. String s = view.executeRaw(items, new Configuration(paramsMap));
  86. HandlerUtil.makeJsonResponse(response, s);
  87. response.setStatusCode(HttpStatus.SC_OK);
  88. StringEntity entity = (StringEntity)response.getEntity();
  89. entity.setChunked(true);
  90. } catch (QueryExecutionException ex) {
  91. HandlerUtil.makeJsonResponse(response, ex.getJsonString());
  92. response.setStatusCode(HttpStatus.SC_BAD_REQUEST);
  93. }
  94. }
  95. }