Rework the submit operation
[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.doGeneralHttpQuery(statusUrl, "GET", null, null, "DCAE", null, null);\r
103             JSONObject jsonObj = parseResponse(responseStr);\r
104             String operationType = (String) jsonObj.get("operationType");\r
105             String status = (String) jsonObj.get(DCAE_STATUS_FIELD);\r
106             logger.info("Operation Type - " + operationType + ", Status " + status);\r
107             LoggingUtils.setResponseContext("0", "Get operation status success", this.getClass().getName());\r
108             opStatus = status;\r
109         } catch (Exception e) {\r
110             LoggingUtils.setResponseContext("900", "Get operation status failed", this.getClass().getName());\r
111             LoggingUtils.setErrorContext("900", "Get operation status error");\r
112             logger.error("Exception occurred during getOperationStatus Operation with DCAE", e);\r
113         } finally {\r
114             LoggingUtils.setTimeContext(startTime, new Date());\r
115             metricsLogger.info("getOperationStatus complete");\r
116         }\r
117         return opStatus;\r
118     }\r
119 \r
120     /**\r
121      * Returns status URL for createNewDeployment operation.\r
122      * @param deploymentId\r
123      *        The deployment ID\r
124      * @param serviceTypeId\r
125      *        Service type ID\r
126      * @param blueprintInputJson\r
127      *        The value for each blueprint parameters in a flat JSON\r
128      * @return The status URL\r
129      */\r
130     public String createNewDeployment(String deploymentId, String serviceTypeId, JsonObject blueprintInputJson) {\r
131         Date startTime = new Date();\r
132         LoggingUtils.setTargetContext("DCAE", "createNewDeployment");\r
133         try {\r
134             JsonObject rootObject = refProp.getJsonTemplate("dcae.deployment.template").getAsJsonObject();\r
135             rootObject.addProperty("serviceTypeId", serviceTypeId);\r
136             if (blueprintInputJson != null) {\r
137                 rootObject.add("inputs", blueprintInputJson);\r
138             }\r
139             String apiBodyString = rootObject.toString();\r
140             logger.info("Dcae api Body String - " + apiBodyString);\r
141             String url = refProp.getStringValue(DCAE_URL_PROPERTY_NAME) + DCAE_URL_PREFIX + deploymentId;\r
142             String statusUrl = getDcaeResponse(url, "PUT", apiBodyString, "application/json", DCAE_LINK_FIELD,\r
143                 DCAE_STATUS_FIELD);\r
144             LoggingUtils.setResponseContext("0", "Create new deployment failed", this.getClass().getName());\r
145             return statusUrl;\r
146         } catch (Exception e) {\r
147             LoggingUtils.setResponseContext("900", "Create new deployment failed", this.getClass().getName());\r
148             LoggingUtils.setErrorContext("900", "Create new deployment error");\r
149             logger.error("Exception occurred during createNewDeployment Operation with DCAE", e);\r
150             throw new DcaeDeploymentException("Exception occurred during createNewDeployment Operation with DCAE", e);\r
151         } finally {\r
152             LoggingUtils.setTimeContext(startTime, new Date());\r
153             metricsLogger.info("createNewDeployment complete");\r
154         }\r
155     }\r
156 \r
157     /***\r
158      * Returns status URL for deleteExistingDeployment operation.\r
159      * @param deploymentId\r
160      *        The deployment ID\r
161      * @param serviceTypeId\r
162      *        The service Type ID\r
163      * @return The status URL\r
164      */\r
165     public String deleteExistingDeployment(String deploymentId, String serviceTypeId) {\r
166         Date startTime = new Date();\r
167         LoggingUtils.setTargetContext("DCAE", "deleteExistingDeployment");\r
168         try {\r
169             String apiBodyString = "{\"serviceTypeId\": \"" + serviceTypeId + "\"}";\r
170             logger.info("Dcae api Body String - " + apiBodyString);\r
171             String url = refProp.getStringValue(DCAE_URL_PROPERTY_NAME) + DCAE_URL_PREFIX + deploymentId;\r
172             String statusUrl = getDcaeResponse(url, "DELETE", apiBodyString, "application/json", DCAE_LINK_FIELD,\r
173                 DCAE_STATUS_FIELD);\r
174             LoggingUtils.setResponseContext("0", "Delete existing deployment success", this.getClass().getName());\r
175             return statusUrl;\r
176 \r
177         } catch (Exception e) {\r
178             LoggingUtils.setResponseContext("900", "Delete existing deployment failed", this.getClass().getName());\r
179             LoggingUtils.setErrorContext("900", "Delete existing deployment error");\r
180             logger.error("Exception occurred during deleteExistingDeployment Operation with DCAE", e);\r
181             throw new DcaeDeploymentException("Exception occurred during deleteExistingDeployment Operation with DCAE",\r
182                 e);\r
183         } finally {\r
184             LoggingUtils.setTimeContext(startTime, new Date());\r
185             metricsLogger.info("deleteExistingDeployment complete");\r
186         }\r
187     }\r
188 \r
189     private String getDcaeResponse(String url, String requestMethod, String payload, String contentType, String node,\r
190         String nodeAttr) throws IOException, ParseException {\r
191         Date startTime = new Date();\r
192         try {\r
193             String responseStr = dcaeHttpConnectionManager.doGeneralHttpQuery(url, requestMethod, payload, contentType, "DCAE", null, null);\r
194             JSONObject jsonObj = parseResponse(responseStr);\r
195             JSONObject linksObj = (JSONObject) jsonObj.get(node);\r
196             String statusUrl = (String) linksObj.get(nodeAttr);\r
197             logger.info(STATUS_URL_LOG + statusUrl);\r
198             return statusUrl;\r
199         } catch (IOException | ParseException e) {\r
200             logger.error("Exception occurred getting response from DCAE", e);\r
201             throw e;\r
202         } finally {\r
203             LoggingUtils.setTimeContext(startTime, new Date());\r
204             metricsLogger.info("getDcaeResponse complete");\r
205         }\r
206     }\r
207 \r
208     private JSONObject parseResponse(String responseStr) throws ParseException {\r
209         JSONParser parser = new JSONParser();\r
210         Object obj0 = parser.parse(responseStr);\r
211         JSONObject jsonObj = (JSONObject) obj0;\r
212         return jsonObj;\r
213     }\r
214 }