Fix servlet response flows
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / aggregatevnf / search / AggregateSummaryProcessor.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 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 package org.onap.aai.sparky.aggregatevnf.search;
22
23 import java.io.IOException;
24 import java.util.ArrayList;
25 import java.util.List;
26
27 import javax.json.JsonObject;
28 import javax.servlet.http.HttpServletRequest;
29
30 import org.apache.camel.Exchange;
31 import org.json.JSONArray;
32 import org.json.JSONObject;
33 import org.onap.aai.cl.api.Logger;
34 import org.onap.aai.cl.eelf.LoggerFactory;
35 import org.onap.aai.restclient.client.OperationResult;
36 import org.onap.aai.sparky.dal.ElasticSearchAdapter;
37 import org.onap.aai.sparky.logging.AaiUiMsgs;
38 import org.onap.aai.sparky.logging.util.ServletUtils;
39 import org.onap.aai.sparky.search.filters.FilterQueryBuilder;
40 import org.onap.aai.sparky.search.filters.config.FiltersConfig;
41 import org.onap.aai.sparky.search.filters.entity.SearchFilter;
42 import org.onap.aai.sparky.viewandinspect.config.SparkyConstants;
43
44 public class AggregateSummaryProcessor {
45
46   private static final Logger LOG =
47       LoggerFactory.getInstance().getLogger(AggregateSummaryProcessor.class);
48
49   private static final String KEY_FILTERS = "filters";
50
51   private ElasticSearchAdapter elasticSearchAdapter = null;
52
53   private String vnfAggregationIndexName;
54   private FiltersConfig filtersConfig;
55
56   public AggregateSummaryProcessor(ElasticSearchAdapter elasticSearchAdapter,
57       FiltersConfig filtersConfig) {
58     this.elasticSearchAdapter = elasticSearchAdapter;
59     this.filtersConfig = filtersConfig;
60   }
61
62   public void setVnfAggregationIndexName(String vnfAggregationIndexName) {
63     this.vnfAggregationIndexName = vnfAggregationIndexName;
64   }
65
66   public void getFilteredAggregation(Exchange exchange) {
67
68     HttpServletRequest request = exchange.getIn().getBody(HttpServletRequest.class);
69     ServletUtils.setUpMdcContext(exchange, request);
70
71     try {
72       String payload = exchange.getIn().getBody(String.class);
73
74       if (payload == null || payload.isEmpty()) {
75
76         LOG.error(AaiUiMsgs.SEARCH_SERVLET_ERROR, "Request Payload is empty");
77
78         /*
79          * Don't throw back an error, just return an empty set
80          */
81
82       } else {
83
84         JSONObject parameters = new JSONObject(payload);
85
86         JSONArray requestFilters = null;
87         if (parameters.has(KEY_FILTERS)) {
88           requestFilters = parameters.getJSONArray(KEY_FILTERS);
89         } else {
90
91           JSONObject zeroResponsePayload = new JSONObject();
92           zeroResponsePayload.put("count", 0);
93           exchange.getOut().setHeader(Exchange.HTTP_RESPONSE_CODE, 200);
94           exchange.getOut().setHeader(Exchange.CONTENT_TYPE, "application/json");
95           exchange.getOut().setBody(zeroResponsePayload.toString());
96
97           LOG.error(AaiUiMsgs.ERROR_FILTERS_NOT_FOUND);
98           return;
99         }
100
101         if (requestFilters != null && requestFilters.length() > 0) {
102           List<JSONObject> filtersToQuery = new ArrayList<JSONObject>();
103           for (int i = 0; i < requestFilters.length(); i++) {
104             JSONObject filterEntry = requestFilters.getJSONObject(i);
105             filtersToQuery.add(filterEntry);
106           }
107
108           String jsonResponsePayload = getVnfFilterAggregations(filtersToQuery);
109           exchange.getOut().setHeader(Exchange.HTTP_RESPONSE_CODE, 200);
110           exchange.getOut().setHeader(Exchange.CONTENT_TYPE, "application/json");
111           exchange.getOut().setBody(jsonResponsePayload);
112
113         } else {
114           String emptyResponse = getEmptyAggResponse();
115           exchange.getOut().setHeader(Exchange.HTTP_RESPONSE_CODE, 200);
116           exchange.getOut().setHeader(Exchange.CONTENT_TYPE, "application/json");
117           exchange.getOut().setBody(emptyResponse);
118           LOG.error(AaiUiMsgs.ERROR_FILTERS_NOT_FOUND);
119         }
120       }
121     } catch (Exception exc) {
122       LOG.error(AaiUiMsgs.ERROR_GENERIC,
123           "AggregateSummaryProcessor failed to process request due to error = " + exc.getMessage());
124       
125       
126     }
127   }
128
129   private String getEmptyAggResponse() {
130     JSONObject aggPayload = new JSONObject();
131     aggPayload.put("totalChartHits", 0);
132     aggPayload.put("buckets", new JSONArray());
133     JSONObject payload = new JSONObject();
134     payload.append("groupby_aggregation", aggPayload);
135
136     return payload.toString();
137   }
138
139   private static final String FILTER_ID_KEY = "filterId";
140   private static final String FILTER_VALUE_KEY = "filterValue";
141   private static final int DEFAULT_SHOULD_MATCH_SCORE = 1;
142   private static final String VNF_FILTER_AGGREGATION = "vnfFilterAggregation";
143
144
145   private String getVnfFilterAggregations(List<JSONObject> filtersToQuery) throws IOException {
146
147     List<SearchFilter> searchFilters = new ArrayList<SearchFilter>();
148     for (JSONObject filterEntry : filtersToQuery) {
149
150       String filterId = filterEntry.getString(FILTER_ID_KEY);
151       if (filterId != null) {
152         SearchFilter filter = new SearchFilter();
153         filter.setFilterId(filterId);
154
155         if (filterEntry.has(FILTER_VALUE_KEY)) {
156           String filterValue = filterEntry.getString(FILTER_VALUE_KEY);
157           filter.addValue(filterValue);
158         }
159
160         searchFilters.add(filter);
161       }
162     }
163
164     // Create query for summary by entity type
165     JsonObject vnfSearch = FilterQueryBuilder.createCombinedBoolAndAggQuery(filtersConfig,
166         searchFilters, DEFAULT_SHOULD_MATCH_SCORE);
167
168     // Parse response for summary by entity type query
169     OperationResult opResult = elasticSearchAdapter.doPost(
170         elasticSearchAdapter.buildElasticSearchUrlForApi(vnfAggregationIndexName,
171             SparkyConstants.ES_SEARCH_API),
172         vnfSearch.toString(), javax.ws.rs.core.MediaType.APPLICATION_JSON_TYPE);
173
174     if (opResult.wasSuccessful()) {
175       return buildAggregateVnfResponseJson(opResult.getResult());
176     } else {
177       return buildEmptyAggregateVnfResponseJson();
178     }
179   }
180
181   private String buildEmptyAggregateVnfResponseJson() {
182     JSONObject finalOutputToFe = new JSONObject();
183     finalOutputToFe.put("total", 0);
184     return finalOutputToFe.toString();
185   }
186
187   private String buildAggregateVnfResponseJson(String responseJsonStr) {
188
189     JSONObject finalOutputToFe = new JSONObject();
190     JSONObject responseJson = new JSONObject(responseJsonStr);
191
192
193     JSONObject hits = responseJson.getJSONObject("hits");
194     int totalHits = hits.getInt("total");
195     finalOutputToFe.put("total", totalHits);
196
197     JSONObject aggregations = responseJson.getJSONObject("aggregations");
198     String[] aggKeys = JSONObject.getNames(aggregations);
199     JSONObject aggregationsList = new JSONObject();
200
201     for (String aggName : aggKeys) {
202       JSONObject aggregation = aggregations.getJSONObject(aggName);
203       JSONArray buckets = aggregation.getJSONArray("buckets");
204       aggregationsList.put(aggName, buckets);
205     }
206
207     finalOutputToFe.put("aggregations", aggregationsList);
208
209     return finalOutputToFe.toString();
210   }
211 }