Increase junit coverage
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / viewandinspect / servlet / SearchServlet.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.onap.aai.sparky.viewandinspect.servlet;
24
25 import java.io.IOException;
26 import java.io.PrintWriter;
27 import java.util.HashMap;
28 import java.util.Map;
29
30 import javax.servlet.ServletException;
31 import javax.servlet.http.HttpServlet;
32 import javax.servlet.http.HttpServletRequest;
33 import javax.servlet.http.HttpServletResponse;
34
35 import org.json.JSONException;
36 import org.json.JSONObject;
37 import org.onap.aai.sparky.config.oxm.OxmModelLoader;
38 import org.onap.aai.sparky.dal.elasticsearch.SearchAdapter;
39 import org.onap.aai.sparky.dal.rest.OperationResult;
40 import org.onap.aai.sparky.dal.sas.config.SearchServiceConfig;
41 import org.onap.aai.sparky.logging.AaiUiMsgs;
42 import org.onap.aai.sparky.search.VnfSearchService;
43 import org.onap.aai.sparky.search.config.SuggestionConfig;
44 import org.onap.aai.sparky.util.NodeUtils;
45 import org.onap.aai.sparky.viewandinspect.services.SearchServiceWrapper;
46 import org.onap.aai.cl.api.Logger;
47 import org.onap.aai.cl.eelf.LoggerFactory;
48 import org.onap.aai.cl.mdc.MdcContext;
49
50 /**
51  * The Class SearchServlet.
52  */
53
54 public class SearchServlet extends HttpServlet {
55
56   private static final long serialVersionUID = 1L;
57
58   /**
59    * @return the searchWrapper
60    */
61   public SearchServiceWrapper getSearchWrapper() {
62     return searchWrapper;
63   }
64
65   /**
66    * @param searchWrapper the searchWrapper to set
67    */
68   public void setSearchWrapper(SearchServiceWrapper searchWrapper) {
69     this.searchWrapper = searchWrapper;
70   }
71
72   /**
73    * @return the serialversionuid
74    */
75   public static long getSerialversionuid() {
76     return serialVersionUID;
77   }
78
79   /**
80    * @return the log
81    */
82   public static Logger getLog() {
83     return LOG;
84   }
85
86   /**
87    * @return the keyPayload
88    */
89   public static String getKeyPayload() {
90     return KEY_PAYLOAD;
91   }
92
93
94   private static final Logger LOG = LoggerFactory.getInstance().getLogger(SearchServlet.class);
95
96   private SearchServiceWrapper searchWrapper = null;
97
98   private static final String KEY_PAYLOAD = "payload";
99   
100   /**
101    * Instantiates a new search servlet.
102    */
103   public SearchServlet() {
104   }
105
106   /*
107    * (non-Javadoc)
108    * 
109    * @see javax.servlet.http.HttpServlet#doGet(javax.servlet.http.HttpServletRequest,
110    * javax.servlet.http.HttpServletResponse)
111    */
112   @Override
113   public void doGet(HttpServletRequest request, HttpServletResponse response)
114       throws ServletException, IOException {
115     doPost(request, response);
116   }
117
118    public void destroy() {
119     // TODO Auto-generated method stub
120     super.destroy();
121   }
122   
123   public void init() throws ServletException {
124     super.init();
125     searchWrapper = new SearchServiceWrapper();
126   }
127
128   protected Map<String, String> getPayloadParams(JSONObject parameters) {
129     Map<String, String> payloadParams = new HashMap<String, String>();
130     try {
131       JSONObject payload = parameters.getJSONObject(KEY_PAYLOAD);
132       if (payload.length() > 0) {
133         for (String key : JSONObject.getNames(payload)) {
134           payloadParams.put(key, payload.getString(key));
135         }
136       }
137     } catch (JSONException exc) {
138       LOG.error(AaiUiMsgs.ERROR_PARSING_PARAMS, exc);
139     }
140     return payloadParams;
141   }
142
143   /*
144    * (non-Javadoc)
145    * 
146    * @see javax.servlet.http.HttpServlet#doPost(javax.servlet.http.HttpServletRequest,
147    * javax.servlet.http.HttpServletResponse)
148    */
149   @Override
150   public void doPost(HttpServletRequest request, HttpServletResponse response)
151       throws ServletException, IOException {
152     String txnID = request.getHeader("X-TransactionId");
153     if (txnID == null) { 
154       txnID = NodeUtils.getRandomTxnId();
155     }
156
157     String partnerName = request.getHeader("X-FromAppId");
158     if (partnerName == null) {
159       partnerName = "Browser";
160     }
161     MdcContext.initialize(txnID, "AAI_UI", "", partnerName, request.getRemoteAddr());
162     searchWrapper.doPost(request, response);
163   }
164
165   /**
166    * Generate json error response.
167    *
168    * @param message the message
169    * @return the string
170    */
171   /*
172    * This is the manual approach, however we could also create an object container for the error
173    * then use the Jackson ObjectWrite to dump the object to json instead. If it gets any more
174    * complicated we could do that approach so we don't have to manually trip over the JSON
175    * formatting.
176    */
177   protected String generateJsonErrorResponse(String message) {
178     return String.format("{ \"errorMessage\" : %s }", message);
179   }
180
181   /**
182    * Handle search servlet errors.
183    *
184    * @param errorMsg the error msg
185    * @param exc the exc
186    * @param response the response
187    * @throws IOException Signals that an I/O exception has occurred.
188    */
189   public void handleSearchServletErrors(String errorMsg, Exception exc,
190       HttpServletResponse response) throws IOException {
191
192     String errorLogMsg =
193         (exc == null ? errorMsg : errorMsg + ". Error:" + exc.getLocalizedMessage());
194
195     LOG.error(AaiUiMsgs.SEARCH_SERVLET_ERROR, errorLogMsg);
196
197     response.setContentType("application/json");
198     PrintWriter out = response.getWriter();
199     out.println(generateJsonErrorResponse(errorMsg));
200     out.close();
201   }
202
203
204   /**
205    * Sets the servlet response.
206    * 
207    * @param response the response
208    * @param postPayload the post payload
209    *
210    * @throws IOException Signals that an I/O exception has occurred.
211    */
212   private void setServletResponse(HttpServletResponse response, String postPayload)
213       throws IOException {
214
215     if (postPayload != null) {
216       response.setContentType("application/json");
217       PrintWriter out = response.getWriter();
218       out.println(postPayload);
219       out.close();
220     }
221   }
222
223   
224
225   
226 }