/src/main/java/com/couchbase/mock/views/DesignDocument.java

http://github.com/couchbase/CouchbaseMock · Java · 120 lines · 67 code · 14 blank · 39 comment · 9 complexity · e1c82c036dc7f8e57dc1a224415b8b7c 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.views;
  17. import com.couchbase.mock.JsonUtils;
  18. import com.google.gson.JsonElement;
  19. import com.google.gson.JsonObject;
  20. import com.google.gson.JsonParseException;
  21. import javax.script.ScriptException;
  22. import java.util.ArrayList;
  23. import java.util.Map;
  24. /**
  25. * @author Mark Nunberg
  26. * @author Sergey Avseyev
  27. */
  28. public class DesignDocument {
  29. final private String body;
  30. private String id;
  31. final private ArrayList<View> views;
  32. private DesignDocument(String body) {
  33. this.body = body;
  34. this.views = new ArrayList<View>();
  35. }
  36. /**
  37. * Create a new design document
  38. * @param body The JSON encoded source of this design document
  39. * @param name The name of the design document. This should be the simple name, e.g. {@code beer}. If the
  40. * {@code body} contains a {@code _id} property, then that property will override
  41. * {@code name}
  42. * @return A new design document
  43. * @throws DesignParseException if a design parse error occurs
  44. */
  45. public static DesignDocument create(String body, String name) throws DesignParseException {
  46. DesignDocument doc = new DesignDocument(body);
  47. doc.id = "_design/" + name;
  48. doc.load();
  49. return doc;
  50. }
  51. private void load() throws DesignParseException {
  52. try {
  53. JsonObject obj = JsonUtils.GSON.fromJson(body, JsonObject.class);
  54. if (obj.has("_id")) {
  55. this.id = obj.get("_id").getAsString();
  56. }
  57. if (this.id == null) {
  58. throw new DesignParseException("No _id specified and no implicit path provided");
  59. }
  60. JsonObject viewsJson = obj.getAsJsonObject("views");
  61. if (viewsJson == null) {
  62. throw new DesignParseException("Missing `views`");
  63. }
  64. for (Map.Entry<String,JsonElement> entry : viewsJson.entrySet()) {
  65. JsonElement curElem = entry.getValue();
  66. if (!curElem.isJsonObject()) {
  67. throw new DesignParseException("View contents must be a JSON dictionary");
  68. }
  69. JsonObject view = curElem.getAsJsonObject();
  70. if (!view.has("map")) {
  71. throw new DesignParseException("Missing `map` function");
  72. }
  73. String mapSrc = view.get("map").getAsString();
  74. String reduceSrc = null;
  75. if (view.has("reduce")) {
  76. reduceSrc = view.get("reduce").getAsString();
  77. }
  78. views.add(new View(entry.getKey(), mapSrc, reduceSrc));
  79. }
  80. } catch (ScriptException ex) {
  81. throw new DesignParseException(ex);
  82. } catch (JsonParseException ex) {
  83. throw new DesignParseException(ex);
  84. }
  85. }
  86. /**
  87. * @return Get the raw JSON string from which this design was constructed
  88. */
  89. public String getBody() {
  90. return body;
  91. }
  92. /**
  93. * Get the name of the design document
  94. * @return A string in the form of {@code _design/$name}
  95. */
  96. public String getId() {
  97. return id;
  98. }
  99. /**
  100. * Get a list of views contained within this design document
  101. * @return The list of views
  102. */
  103. public ArrayList<View> getViews() {
  104. return views;
  105. }
  106. }