Fix Checkstyle issues
[clamp.git] / src / main / java / org / onap / clamp / clds / client / DcaeDispatcherServices.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * ONAP CLAMP\r
4  * ================================================================================\r
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights\r
6  *                             reserved.\r
7  * ================================================================================\r
8  * Licensed under the Apache License, Version 2.0 (the "License");\r
9  * you may not use this file except in compliance with the License.\r
10  * You may obtain a copy of the License at\r
11  *\r
12  * http://www.apache.org/licenses/LICENSE-2.0\r
13  *\r
14  * Unless required by applicable law or agreed to in writing, software\r
15  * distributed under the License is distributed on an "AS IS" BASIS,\r
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17  * See the License for the specific language governing permissions and\r
18  * limitations under the License.\r
19  * ============LICENSE_END============================================\r
20  * ===================================================================\r
21  *\r
22  */\r
23 \r
24 package org.onap.clamp.clds.client;\r
25 \r
26 import com.att.eelf.configuration.EELFLogger;\r
27 import com.att.eelf.configuration.EELFManager;\r
28 \r
29 import com.google.gson.JsonObject;\r
30 import java.io.IOException;\r
31 import java.util.Date;\r
32 \r
33 import org.json.simple.JSONObject;\r
34 import org.json.simple.parser.JSONParser;\r
35 import org.json.simple.parser.ParseException;\r
36 import org.onap.clamp.clds.config.ClampProperties;\r
37 import org.onap.clamp.clds.exception.dcae.DcaeDeploymentException;\r
38 import org.onap.clamp.clds.util.LoggingUtils;\r
39 import org.onap.clamp.util.HttpConnectionManager;\r
40 import org.springframework.beans.factory.annotation.Autowired;\r
41 import org.springframework.stereotype.Component;\r
42 \r
43 /**\r
44  * This class implements the communication with DCAE for the service\r
45  * deployments.\r
46  */\r
47 @Component\r
48 public class DcaeDispatcherServices {\r
49 \r
50     protected static final EELFLogger logger = EELFManager.getInstance().getLogger(DcaeDispatcherServices.class);\r
51     protected static final EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();\r
52     private final ClampProperties refProp;\r
53     private final HttpConnectionManager dcaeHttpConnectionManager;\r
54     private static final String STATUS_URL_LOG = "Status URL extracted: ";\r
55     private static final String DCAE_URL_PREFIX = "/dcae-deployments/";\r
56     private static final String DCAE_URL_PROPERTY_NAME = "dcae.dispatcher.url";\r
57     public static final String DCAE_REQUESTID_PROPERTY_NAME = "dcae.header.requestId";\r
58     private static final String DCAE_LINK_FIELD = "links";\r
59     private static final String DCAE_STATUS_FIELD = "status";\r
60 \r
61     @Autowired\r
62     public DcaeDispatcherServices(ClampProperties refProp, HttpConnectionManager dcaeHttpConnectionManager) {\r
63         this.refProp = refProp;\r
64         this.dcaeHttpConnectionManager = dcaeHttpConnectionManager;\r
65     }\r
66 \r
67     /**\r
68      * Get the Operation Status from a specified URL with retry.\r
69      * @param operationStatusUrl\r
70      *        The URL of the DCAE\r
71      * @return The status\r
72      * @throws InterruptedException Exception during the retry\r
73      */\r
74     public String getOperationStatusWithRetry(String operationStatusUrl) throws InterruptedException {\r
75         String operationStatus = "";\r
76         for (int i = 0; i < Integer.valueOf(refProp.getStringValue("dcae.dispatcher.retry.limit")); i++) {\r
77             logger.info("Trying to get Operation status on DCAE for url:" + operationStatusUrl);\r
78             operationStatus = getOperationStatus(operationStatusUrl);\r
79             logger.info("Current Status is:" + operationStatus);\r
80             if (!"processing".equalsIgnoreCase(operationStatus)) {\r
81                 return operationStatus;\r
82             } else {\r
83                 Thread.sleep(Integer.valueOf(refProp.getStringValue("dcae.dispatcher.retry.interval")));\r
84             }\r
85         }\r
86         logger.warn("Number of attempts on DCAE is over, stopping the getOperationStatus method");\r
87         return operationStatus;\r
88     }\r
89 \r
90     /**\r
91      * Get the Operation Status from a specified URL.\r
92      * @param statusUrl\r
93      *        The URL provided by a previous DCAE Query\r
94      * @return The status\r
95      */\r
96     public String getOperationStatus(String statusUrl) {\r
97         // Assigning processing status to monitor operation status further\r
98         String opStatus = "processing";\r
99         Date startTime = new Date();\r
100         LoggingUtils.setTargetContext("DCAE", "getOperationStatus");\r
101         try {\r
102             String responseStr = dcaeHttpConnectionManager.doHttpRequest(statusUrl, "GET", null,\r
103                                                                          null, "DCAE", null,\r
104                                                                          null);\r
105             JSONObject jsonObj = parseResponse(responseStr);\r
106             String operationType = (String) jsonObj.get("operationType");\r
107             String status = (String) jsonObj.get(DCAE_STATUS_FIELD);\r
108             logger.info("Operation Type - " + operationType + ", Status " + status);\r
109             LoggingUtils.setResponseContext("0", "Get operation status success", this.getClass().getName());\r
110             opStatus = status;\r
111         } catch (Exception e) {\r
112             LoggingUtils.setResponseContext("900", "Get operation status failed", this.getClass().getName());\r
113             LoggingUtils.setErrorContext("900", "Get operation status error");\r
114             logger.error("Exception occurred during getOperationStatus Operation with DCAE", e);\r
115         } finally {\r
116             LoggingUtils.setTimeContext(startTime, new Date());\r
117             metricsLogger.info("getOperationStatus complete");\r
118         }\r
119         return opStatus;\r
120     }\r
121 \r
122     /**\r
123      * Returns status URL for createNewDeployment operation.\r
124      * @param deploymentId\r
125      *        The deployment ID\r
126      * @param serviceTypeId\r
127      *        Service type ID\r
128      * @param blueprintInputJson\r
129      *        The value for each blueprint parameters in a flat JSON\r
130      * @return The status URL\r
131      */\r
132     public String createNewDeployment(String deploymentId, String serviceTypeId, JsonObject blueprintInputJson) {\r
133         Date startTime = new Date();\r
134         LoggingUtils.setTargetContext("DCAE", "createNewDeployment");\r
135         try {\r
136             JsonObject rootObject = refProp.getJsonTemplate("dcae.deployment.template").getAsJsonObject();\r
137             rootObject.addProperty("serviceTypeId", serviceTypeId);\r
138             if (blueprintInputJson != null) {\r
139                 rootObject.add("inputs", blueprintInputJson);\r
140             }\r
141             String apiBodyString = rootObject.toString();\r
142             logger.info("Dcae api Body String - " + apiBodyString);\r
143             String url = refProp.getStringValue(DCAE_URL_PROPERTY_NAME) + DCAE_URL_PREFIX + deploymentId;\r
144             String statusUrl = getDcaeResponse(url, "PUT", apiBodyString, "application/json", DCAE_LINK_FIELD,\r
145                 DCAE_STATUS_FIELD);\r
146             LoggingUtils.setResponseContext("0", "Create new deployment failed", this.getClass().getName());\r
147             return statusUrl;\r
148         } catch (Exception e) {\r
149             LoggingUtils.setResponseContext("900", "Create new deployment failed", this.getClass().getName());\r
150             LoggingUtils.setErrorContext("900", "Create new deployment error");\r
151             logger.error("Exception occurred during createNewDeployment Operation with DCAE", e);\r
152             throw new DcaeDeploymentException("Exception occurred during createNewDeployment Operation with DCAE", e);\r
153         } finally {\r
154             LoggingUtils.setTimeContext(startTime, new Date());\r
155             metricsLogger.info("createNewDeployment complete");\r
156         }\r
157     }\r
158 \r
159     /***\r
160      * Returns status URL for deleteExistingDeployment operation.\r
161      *\r
162      * @param deploymentId\r
163      *        The deployment ID\r
164      * @param serviceTypeId\r
165      *        The service Type ID\r
166      * @return The status URL\r
167      */\r
168     public String deleteExistingDeployment(String deploymentId, String serviceTypeId) {\r
169         Date startTime = new Date();\r
170         LoggingUtils.setTargetContext("DCAE", "deleteExistingDeployment");\r
171         try {\r
172             String apiBodyString = "{\"serviceTypeId\": \"" + serviceTypeId + "\"}";\r
173             logger.info("Dcae api Body String - " + apiBodyString);\r
174             String url = refProp.getStringValue(DCAE_URL_PROPERTY_NAME) + DCAE_URL_PREFIX + deploymentId;\r
175             String statusUrl = getDcaeResponse(url, "DELETE", apiBodyString, "application/json", DCAE_LINK_FIELD,\r
176                 DCAE_STATUS_FIELD);\r
177             LoggingUtils.setResponseContext("0", "Delete existing deployment success", this.getClass().getName());\r
178             return statusUrl;\r
179 \r
180         } catch (Exception e) {\r
181             LoggingUtils.setResponseContext("900", "Delete existing deployment failed", this.getClass().getName());\r
182             LoggingUtils.setErrorContext("900", "Delete existing deployment error");\r
183             logger.error("Exception occurred during deleteExistingDeployment Operation with DCAE", e);\r
184             throw new DcaeDeploymentException("Exception occurred during deleteExistingDeployment Operation with DCAE",\r
185                 e);\r
186         } finally {\r
187             LoggingUtils.setTimeContext(startTime, new Date());\r
188             metricsLogger.info("deleteExistingDeployment complete");\r
189         }\r
190     }\r
191 \r
192     private String getDcaeResponse(String url, String requestMethod, String payload, String contentType, String node,\r
193         String nodeAttr) throws IOException, ParseException {\r
194         Date startTime = new Date();\r
195         try {\r
196             String responseStr = dcaeHttpConnectionManager.doHttpRequest(url, requestMethod, payload, contentType, "DCAE", null, null);\r
197             JSONObject jsonObj = parseResponse(responseStr);\r
198             JSONObject linksObj = (JSONObject) jsonObj.get(node);\r
199             String statusUrl = (String) linksObj.get(nodeAttr);\r
200             logger.info(STATUS_URL_LOG + statusUrl);\r
201             return statusUrl;\r
202         } catch (IOException | ParseException e) {\r
203             logger.error("Exception occurred getting response from DCAE", e);\r
204             throw e;\r
205         } finally {\r
206             LoggingUtils.setTimeContext(startTime, new Date());\r
207             metricsLogger.info("getDcaeResponse complete");\r
208         }\r
209     }\r
210 \r
211     private JSONObject parseResponse(String responseStr) throws ParseException {\r
212         JSONParser parser = new JSONParser();\r
213         Object obj0 = parser.parse(responseStr);\r
214         JSONObject jsonObj = (JSONObject) obj0;\r
215         return jsonObj;\r
216     }\r
217 }