Fixed various sonar identified code smells
[clamp.git] / src / main / java / org / onap / clamp / clds / client / DcaeDispatcherServices.java
index f7aff0e..83401a3 100644 (file)
-/*-\r
- * ============LICENSE_START=======================================================\r
- * ONAP CLAMP\r
- * ================================================================================\r
- * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights\r
- *                             reserved.\r
- * ================================================================================\r
- * Modifications Copyright (c) 2019 Samsung\r
- * ================================================================================\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- * http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- * ============LICENSE_END============================================\r
- * ===================================================================\r
- *\r
- */\r
-\r
-package org.onap.clamp.clds.client;\r
-\r
-import com.att.eelf.configuration.EELFLogger;\r
-import com.att.eelf.configuration.EELFManager;\r
-\r
-import com.google.gson.JsonObject;\r
-import java.io.IOException;\r
-import java.util.Date;\r
-\r
-import org.json.simple.JSONObject;\r
-import org.json.simple.parser.JSONParser;\r
-import org.json.simple.parser.ParseException;\r
-import org.onap.clamp.clds.config.ClampProperties;\r
-import org.onap.clamp.clds.exception.dcae.DcaeDeploymentException;\r
-import org.onap.clamp.clds.util.LoggingUtils;\r
-import org.onap.clamp.util.HttpConnectionManager;\r
-import org.springframework.beans.factory.annotation.Autowired;\r
-import org.springframework.stereotype.Component;\r
-\r
-/**\r
- * This class implements the communication with DCAE for the service\r
- * deployments.\r
- */\r
-@Component\r
-public class DcaeDispatcherServices {\r
-\r
-    protected static final EELFLogger logger = EELFManager.getInstance().getLogger(DcaeDispatcherServices.class);\r
-    protected static final EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();\r
-    private final ClampProperties refProp;\r
-    private final HttpConnectionManager dcaeHttpConnectionManager;\r
-    private static final String STATUS_URL_LOG = "Status URL extracted: ";\r
-    private static final String DCAE_URL_PREFIX = "/dcae-deployments/";\r
-    private static final String DCAE_URL_PROPERTY_NAME = "dcae.dispatcher.url";\r
-    private static final String DCAE_LINK_FIELD = "links";\r
-    private static final String DCAE_STATUS_FIELD = "status";\r
-\r
-    @Autowired\r
-    public DcaeDispatcherServices(ClampProperties refProp, HttpConnectionManager dcaeHttpConnectionManager) {\r
-        this.refProp = refProp;\r
-        this.dcaeHttpConnectionManager = dcaeHttpConnectionManager;\r
-    }\r
-\r
-    /**\r
-     * Get the Operation Status from a specified URL with retry.\r
-     * @param operationStatusUrl\r
-     *        The URL of the DCAE\r
-     * @return The status\r
-     * @throws InterruptedException Exception during the retry\r
-     */\r
-    public String getOperationStatusWithRetry(String operationStatusUrl) throws InterruptedException {\r
-        String operationStatus = "";\r
-        for (int i = 0; i < Integer.valueOf(refProp.getStringValue("dcae.dispatcher.retry.limit")); i++) {\r
-            logger.info("Trying to get Operation status on DCAE for url:" + operationStatusUrl);\r
-            operationStatus = getOperationStatus(operationStatusUrl);\r
-            logger.info("Current Status is:" + operationStatus);\r
-            if (!"processing".equalsIgnoreCase(operationStatus)) {\r
-                return operationStatus;\r
-            } else {\r
-                Thread.sleep(Integer.valueOf(refProp.getStringValue("dcae.dispatcher.retry.interval")));\r
-            }\r
-        }\r
-        logger.warn("Number of attempts on DCAE is over, stopping the getOperationStatus method");\r
-        return operationStatus;\r
-    }\r
-\r
-    /**\r
-     * Get the Operation Status from a specified URL.\r
-     * @param statusUrl\r
-     *        The URL provided by a previous DCAE Query\r
-     * @return The status\r
-     */\r
-    public String getOperationStatus(String statusUrl) {\r
-        // Assigning processing status to monitor operation status further\r
-        String opStatus = "processing";\r
-        Date startTime = new Date();\r
-        LoggingUtils.setTargetContext("DCAE", "getOperationStatus");\r
-        try {\r
-            String responseStr = dcaeHttpConnectionManager.doHttpRequest(statusUrl, "GET", null,\r
-                                                                         null, "DCAE", null,\r
-                                                                         null);\r
-            JSONObject jsonObj = parseResponse(responseStr);\r
-            String operationType = (String) jsonObj.get("operationType");\r
-            String status = (String) jsonObj.get(DCAE_STATUS_FIELD);\r
-            logger.info("Operation Type - " + operationType + ", Status " + status);\r
-            LoggingUtils.setResponseContext("0", "Get operation status success", this.getClass().getName());\r
-            opStatus = status;\r
-        } catch (Exception e) {\r
-            LoggingUtils.setResponseContext("900", "Get operation status failed", this.getClass().getName());\r
-            LoggingUtils.setErrorContext("900", "Get operation status error");\r
-            logger.error("Exception occurred during getOperationStatus Operation with DCAE", e);\r
-        } finally {\r
-            LoggingUtils.setTimeContext(startTime, new Date());\r
-            metricsLogger.info("getOperationStatus complete");\r
-        }\r
-        return opStatus;\r
-    }\r
-\r
-    /**\r
-     * Returns status URL for createNewDeployment operation.\r
-     * @param deploymentId\r
-     *        The deployment ID\r
-     * @param serviceTypeId\r
-     *        Service type ID\r
-     * @param blueprintInputJson\r
-     *        The value for each blueprint parameters in a flat JSON\r
-     * @return The status URL\r
-     */\r
-    public String createNewDeployment(String deploymentId, String serviceTypeId, JsonObject blueprintInputJson) {\r
-        Date startTime = new Date();\r
-        LoggingUtils.setTargetContext("DCAE", "createNewDeployment");\r
-        try {\r
-            JsonObject rootObject = refProp.getJsonTemplate("dcae.deployment.template").getAsJsonObject();\r
-            rootObject.addProperty("serviceTypeId", serviceTypeId);\r
-            if (blueprintInputJson != null) {\r
-                rootObject.add("inputs", blueprintInputJson);\r
-            }\r
-            String apiBodyString = rootObject.toString();\r
-            logger.info("Dcae api Body String - " + apiBodyString);\r
-            String url = refProp.getStringValue(DCAE_URL_PROPERTY_NAME) + DCAE_URL_PREFIX + deploymentId;\r
-            String statusUrl = getDcaeResponse(url, "PUT", apiBodyString, "application/json", DCAE_LINK_FIELD,\r
-                DCAE_STATUS_FIELD);\r
-            LoggingUtils.setResponseContext("0", "Create new deployment failed", this.getClass().getName());\r
-            return statusUrl;\r
-        } catch (Exception e) {\r
-            LoggingUtils.setResponseContext("900", "Create new deployment failed", this.getClass().getName());\r
-            LoggingUtils.setErrorContext("900", "Create new deployment error");\r
-            logger.error("Exception occurred during createNewDeployment Operation with DCAE", e);\r
-            throw new DcaeDeploymentException("Exception occurred during createNewDeployment Operation with DCAE", e);\r
-        } finally {\r
-            LoggingUtils.setTimeContext(startTime, new Date());\r
-            metricsLogger.info("createNewDeployment complete");\r
-        }\r
-    }\r
-\r
-    /***\r
-     * Returns status URL for deleteExistingDeployment operation.\r
-     *\r
-     * @param deploymentId\r
-     *        The deployment ID\r
-     * @param serviceTypeId\r
-     *        The service Type ID\r
-     * @return The status URL\r
-     */\r
-    public String deleteExistingDeployment(String deploymentId, String serviceTypeId) {\r
-        Date startTime = new Date();\r
-        LoggingUtils.setTargetContext("DCAE", "deleteExistingDeployment");\r
-        try {\r
-            String apiBodyString = "{\"serviceTypeId\": \"" + serviceTypeId + "\"}";\r
-            logger.info("Dcae api Body String - " + apiBodyString);\r
-            String url = refProp.getStringValue(DCAE_URL_PROPERTY_NAME) + DCAE_URL_PREFIX + deploymentId;\r
-            String statusUrl = getDcaeResponse(url, "DELETE", apiBodyString, "application/json", DCAE_LINK_FIELD,\r
-                DCAE_STATUS_FIELD);\r
-            LoggingUtils.setResponseContext("0", "Delete existing deployment success", this.getClass().getName());\r
-            return statusUrl;\r
-\r
-        } catch (Exception e) {\r
-            LoggingUtils.setResponseContext("900", "Delete existing deployment failed", this.getClass().getName());\r
-            LoggingUtils.setErrorContext("900", "Delete existing deployment error");\r
-            logger.error("Exception occurred during deleteExistingDeployment Operation with DCAE", e);\r
-            throw new DcaeDeploymentException("Exception occurred during deleteExistingDeployment Operation with DCAE",\r
-                e);\r
-        } finally {\r
-            LoggingUtils.setTimeContext(startTime, new Date());\r
-            metricsLogger.info("deleteExistingDeployment complete");\r
-        }\r
-    }\r
-\r
-    private String getDcaeResponse(String url, String requestMethod, String payload, String contentType, String node,\r
-        String nodeAttr) throws IOException, ParseException {\r
-        Date startTime = new Date();\r
-        try {\r
-            String responseStr = dcaeHttpConnectionManager.doHttpRequest(url, requestMethod, payload, contentType, "DCAE", null, null);\r
-            JSONObject jsonObj = parseResponse(responseStr);\r
-            JSONObject linksObj = (JSONObject) jsonObj.get(node);\r
-            String statusUrl = (String) linksObj.get(nodeAttr);\r
-            logger.info(STATUS_URL_LOG + statusUrl);\r
-            return statusUrl;\r
-        } catch (IOException | ParseException e) {\r
-            logger.error("Exception occurred getting response from DCAE", e);\r
-            throw e;\r
-        } finally {\r
-            LoggingUtils.setTimeContext(startTime, new Date());\r
-            metricsLogger.info("getDcaeResponse complete");\r
-        }\r
-    }\r
-\r
-    private JSONObject parseResponse(String responseStr) throws ParseException {\r
-        JSONParser parser = new JSONParser();\r
-        Object obj0 = parser.parse(responseStr);\r
-        JSONObject jsonObj = (JSONObject) obj0;\r
-        return jsonObj;\r
-    }\r
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP CLAMP
+ * ================================================================================
+ * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
+ *                             reserved.
+ * ================================================================================
+ * Modifications Copyright (c) 2019 Samsung
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END============================================
+ * ===================================================================
+ *
+ */
+
+package org.onap.clamp.clds.client;
+
+import com.att.eelf.configuration.EELFLogger;
+import com.att.eelf.configuration.EELFManager;
+
+import com.google.gson.JsonObject;
+import java.io.IOException;
+import java.util.Date;
+
+import org.json.simple.JSONObject;
+import org.json.simple.parser.JSONParser;
+import org.json.simple.parser.ParseException;
+import org.onap.clamp.clds.config.ClampProperties;
+import org.onap.clamp.clds.exception.dcae.DcaeDeploymentException;
+import org.onap.clamp.clds.util.LoggingUtils;
+import org.onap.clamp.util.HttpConnectionManager;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Component;
+
+/**
+ * This class implements the communication with DCAE for the service
+ * deployments.
+ */
+@Component
+public class DcaeDispatcherServices {
+
+    protected static final EELFLogger logger = EELFManager.getInstance().getLogger(DcaeDispatcherServices.class);
+    protected static final EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();
+    private final ClampProperties refProp;
+    private final HttpConnectionManager dcaeHttpConnectionManager;
+    private static final String STATUS_URL_LOG = "Status URL extracted: ";
+    private static final String DCAE_URL_PREFIX = "/dcae-deployments/";
+    private static final String DCAE_URL_PROPERTY_NAME = "dcae.dispatcher.url";
+    private static final String DCAE_LINK_FIELD = "links";
+    private static final String DCAE_STATUS_FIELD = "status";
+
+    @Autowired
+    public DcaeDispatcherServices(ClampProperties refProp, HttpConnectionManager dcaeHttpConnectionManager) {
+        this.refProp = refProp;
+        this.dcaeHttpConnectionManager = dcaeHttpConnectionManager;
+    }
+
+    /**
+     * Get the Operation Status from a specified URL with retry.
+     * @param operationStatusUrl
+     *        The URL of the DCAE
+     * @return The status
+     * @throws InterruptedException Exception during the retry
+     */
+    public String getOperationStatusWithRetry(String operationStatusUrl) throws InterruptedException {
+        String operationStatus = "";
+        for (int i = 0; i < Integer.valueOf(refProp.getStringValue("dcae.dispatcher.retry.limit")); i++) {
+            logger.info("Trying to get Operation status on DCAE for url:" + operationStatusUrl);
+            operationStatus = getOperationStatus(operationStatusUrl);
+            logger.info("Current Status is:" + operationStatus);
+            if (!"processing".equalsIgnoreCase(operationStatus)) {
+                return operationStatus;
+            } else {
+                Thread.sleep(Integer.valueOf(refProp.getStringValue("dcae.dispatcher.retry.interval")));
+            }
+        }
+        logger.warn("Number of attempts on DCAE is over, stopping the getOperationStatus method");
+        return operationStatus;
+    }
+
+    /**
+     * Get the Operation Status from a specified URL.
+     * @param statusUrl
+     *        The URL provided by a previous DCAE Query
+     * @return The status
+     */
+    public String getOperationStatus(String statusUrl) {
+        // Assigning processing status to monitor operation status further
+        String opStatus = "processing";
+        Date startTime = new Date();
+        LoggingUtils.setTargetContext("DCAE", "getOperationStatus");
+        try {
+            String responseStr = dcaeHttpConnectionManager.doHttpRequest(statusUrl, "GET", null,
+                                                                         null, "DCAE", null,
+                                                                         null);
+            JSONObject jsonObj = parseResponse(responseStr);
+            String operationType = (String) jsonObj.get("operationType");
+            String status = (String) jsonObj.get(DCAE_STATUS_FIELD);
+            logger.info("Operation Type - " + operationType + ", Status " + status);
+            LoggingUtils.setResponseContext("0", "Get operation status success", this.getClass().getName());
+            opStatus = status;
+        } catch (Exception e) {
+            LoggingUtils.setResponseContext("900", "Get operation status failed", this.getClass().getName());
+            LoggingUtils.setErrorContext("900", "Get operation status error");
+            logger.error("Exception occurred during getOperationStatus Operation with DCAE", e);
+        } finally {
+            LoggingUtils.setTimeContext(startTime, new Date());
+            metricsLogger.info("getOperationStatus complete");
+        }
+        return opStatus;
+    }
+
+    /**
+     * Returns status URL for createNewDeployment operation.
+     * @param deploymentId
+     *        The deployment ID
+     * @param serviceTypeId
+     *        Service type ID
+     * @param blueprintInputJson
+     *        The value for each blueprint parameters in a flat JSON
+     * @return The status URL
+     */
+    public String createNewDeployment(String deploymentId, String serviceTypeId, JsonObject blueprintInputJson) {
+        Date startTime = new Date();
+        LoggingUtils.setTargetContext("DCAE", "createNewDeployment");
+        try {
+            JsonObject rootObject = refProp.getJsonTemplate("dcae.deployment.template").getAsJsonObject();
+            rootObject.addProperty("serviceTypeId", serviceTypeId);
+            if (blueprintInputJson != null) {
+                rootObject.add("inputs", blueprintInputJson);
+            }
+            String apiBodyString = rootObject.toString();
+            logger.info("Dcae api Body String - " + apiBodyString);
+            String url = refProp.getStringValue(DCAE_URL_PROPERTY_NAME) + DCAE_URL_PREFIX + deploymentId;
+            String statusUrl = getDcaeResponse(url, "PUT", apiBodyString, "application/json", DCAE_LINK_FIELD,
+                DCAE_STATUS_FIELD);
+            LoggingUtils.setResponseContext("0", "Create new deployment failed", this.getClass().getName());
+            return statusUrl;
+        } catch (Exception e) {
+            LoggingUtils.setResponseContext("900", "Create new deployment failed", this.getClass().getName());
+            LoggingUtils.setErrorContext("900", "Create new deployment error");
+            logger.error("Exception occurred during createNewDeployment Operation with DCAE", e);
+            throw new DcaeDeploymentException("Exception occurred during createNewDeployment Operation with DCAE", e);
+        } finally {
+            LoggingUtils.setTimeContext(startTime, new Date());
+            metricsLogger.info("createNewDeployment complete");
+        }
+    }
+
+    /***
+     * Returns status URL for deleteExistingDeployment operation.
+     *
+     * @param deploymentId
+     *        The deployment ID
+     * @param serviceTypeId
+     *        The service Type ID
+     * @return The status URL
+     */
+    public String deleteExistingDeployment(String deploymentId, String serviceTypeId) {
+        Date startTime = new Date();
+        LoggingUtils.setTargetContext("DCAE", "deleteExistingDeployment");
+        try {
+            String apiBodyString = "{\"serviceTypeId\": \"" + serviceTypeId + "\"}";
+            logger.info("Dcae api Body String - " + apiBodyString);
+            String url = refProp.getStringValue(DCAE_URL_PROPERTY_NAME) + DCAE_URL_PREFIX + deploymentId;
+            String statusUrl = getDcaeResponse(url, "DELETE", apiBodyString, "application/json", DCAE_LINK_FIELD,
+                DCAE_STATUS_FIELD);
+            LoggingUtils.setResponseContext("0", "Delete existing deployment success", this.getClass().getName());
+            return statusUrl;
+
+        } catch (Exception e) {
+            LoggingUtils.setResponseContext("900", "Delete existing deployment failed", this.getClass().getName());
+            LoggingUtils.setErrorContext("900", "Delete existing deployment error");
+            logger.error("Exception occurred during deleteExistingDeployment Operation with DCAE", e);
+            throw new DcaeDeploymentException("Exception occurred during deleteExistingDeployment Operation with DCAE",
+                e);
+        } finally {
+            LoggingUtils.setTimeContext(startTime, new Date());
+            metricsLogger.info("deleteExistingDeployment complete");
+        }
+    }
+
+    private String getDcaeResponse(String url, String requestMethod, String payload, String contentType, String node,
+        String nodeAttr) throws IOException, ParseException {
+        Date startTime = new Date();
+        try {
+            String responseStr = dcaeHttpConnectionManager.doHttpRequest(url, requestMethod, payload, contentType, "DCAE", null, null);
+            JSONObject jsonObj = parseResponse(responseStr);
+            JSONObject linksObj = (JSONObject) jsonObj.get(node);
+            String statusUrl = (String) linksObj.get(nodeAttr);
+            logger.info(STATUS_URL_LOG + statusUrl);
+            return statusUrl;
+        } catch (IOException | ParseException e) {
+            logger.error("Exception occurred getting response from DCAE", e);
+            throw e;
+        } finally {
+            LoggingUtils.setTimeContext(startTime, new Date());
+            metricsLogger.info("getDcaeResponse complete");
+        }
+    }
+
+    private JSONObject parseResponse(String responseStr) throws ParseException {
+        JSONParser parser = new JSONParser();
+        return (JSONObject) parser.parse(responseStr);
+    }
 }
\ No newline at end of file