f1ae6b18ba5deade49c3a95574df8b378a9c7d98
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / search / SearchServiceAdapter.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.search;
24
25 import java.util.Arrays;
26 import java.util.HashMap;
27 import java.util.List;
28 import java.util.Map;
29
30 import javax.ws.rs.core.MediaType;
31
32 import org.onap.aai.cl.mdc.MdcContext;
33 import org.onap.aai.restclient.client.Headers;
34 import org.onap.aai.restclient.client.OperationResult;
35 import org.onap.aai.restclient.client.RestClient;
36 import org.onap.aai.sparky.dal.rest.RestClientFactory;
37 import org.onap.aai.sparky.dal.rest.config.RestEndpointConfig;
38 import org.slf4j.MDC;
39
40
41 /**
42  * The Class SearchServiceAdapter.
43  */
44 public class SearchServiceAdapter {
45
46   private static final String VALUE_QUERY = "query";
47   
48   private RestClient client;
49   private RestEndpointConfig endpointConfig;
50   private String serviceApiVersion;
51
52   private Map<String, List<String>> commonHeaders;
53
54   /**
55    * Instantiates a new search adapter.
56    * @throws Exception 
57    */
58   public SearchServiceAdapter(RestEndpointConfig endpointConfig, String serviceApiVersion) throws Exception {
59
60     client = RestClientFactory.buildClient(endpointConfig);
61
62     commonHeaders = new HashMap<String, List<String>>();
63     commonHeaders.put("Accept", Arrays.asList("application/json"));
64     commonHeaders.put(Headers.FROM_APP_ID, Arrays.asList("AAI-UI"));
65     
66     this.serviceApiVersion = serviceApiVersion;
67     this.endpointConfig = endpointConfig;
68   }
69   
70   public String getServiceApiVersion() {
71     return serviceApiVersion;
72   }
73
74   public void setServiceApiVersion(String serviceApiVersion) {
75     this.serviceApiVersion = serviceApiVersion;
76   }
77
78   public RestEndpointConfig getEndpointConfig() {
79     return endpointConfig;
80   }
81
82   public void setEndpointConfig(RestEndpointConfig endpointConfig) {
83     this.endpointConfig = endpointConfig;
84   }
85
86   public OperationResult doPost(String url, String jsonPayload, String acceptContentType) {
87     OperationResult or = client.post(url, jsonPayload, getTxnHeader(),
88         MediaType.APPLICATION_JSON_TYPE, MediaType.APPLICATION_JSON_TYPE);
89     return new OperationResult(or.getResultCode(), or.getResult());
90   }
91
92   public OperationResult doGet(String url, String acceptContentType) {
93     OperationResult or =
94         client.get(url, getTxnHeader(), MediaType.APPLICATION_JSON_TYPE);
95     return new OperationResult(or.getResultCode(), or.getResult());
96   }
97
98   public OperationResult doPut(String url, String payload, String acceptContentType) {
99     OperationResult or = client.put(url, payload, getTxnHeader(),
100         MediaType.APPLICATION_JSON_TYPE, MediaType.APPLICATION_JSON_TYPE);
101     return new OperationResult(or.getResultCode(), or.getResult());
102   }
103
104   public OperationResult doDelete(String url, String acceptContentType) {
105
106     OperationResult or =
107         client.delete(url, getTxnHeader(), MediaType.APPLICATION_JSON_TYPE);
108     return new OperationResult(or.getResultCode(), or.getResult());
109   }
110
111   public Map<String, List<String>> getTxnHeader() {
112     HashMap<String, List<String>> headers = new HashMap<String, List<String>>();
113     headers.putAll(this.commonHeaders);
114     headers.put("X-TransactionId", Arrays.asList(MDC.get(MdcContext.MDC_REQUEST_ID)));
115     headers.put("X-FromAppId", Arrays.asList(MDC.get(MdcContext.MDC_PARTNER_NAME)));
116     return headers;
117   }
118
119   /**
120    * Get Full URL for search
121    *
122    * @param api the api
123    * @param indexName
124    * @return the full url
125    */
126   public String buildSearchServiceQueryUrl(String indexName) {
127     return buildSearchServiceUrlForApi(indexName, VALUE_QUERY);
128   }
129
130   public String buildSearchServiceUrlForApi(String indexName, String api) {
131     return String.format("https://%s:%s/services/search-data-service/%s/search/indexes/%s/%s",
132         endpointConfig.getEndpointIpAddress(), endpointConfig.getEndpointServerPort(),
133         serviceApiVersion, indexName, api);
134   }
135
136
137 }