2 * ============LICENSE_START=======================================================
\r
4 * ================================================================================
\r
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
\r
6 * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights 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
12 * http://www.apache.org/licenses/LICENSE-2.0
\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
21 package org.openecomp.mso.bpmn.infrastructure.scripts;
\r
23 import groovy.xml.XmlUtil
\r
24 import groovy.json.*
\r
26 import org.openecomp.mso.bpmn.core.json.JsonUtils
\r
27 import org.openecomp.mso.bpmn.common.scripts.AbstractServiceTaskProcessor
\r
28 import org.openecomp.mso.bpmn.common.scripts.ExceptionUtil
\r
29 import org.openecomp.mso.bpmn.common.scripts.VidUtils
\r
30 import org.openecomp.mso.bpmn.core.WorkflowException
\r
31 import org.openecomp.mso.rest.APIResponse;
\r
33 import java.util.UUID;
\r
34 import javax.xml.parsers.DocumentBuilder
\r
35 import javax.xml.parsers.DocumentBuilderFactory
\r
37 import org.camunda.bpm.engine.delegate.BpmnError
\r
38 import org.camunda.bpm.engine.runtime.Execution
\r
39 import org.json.JSONObject;
\r
40 import org.apache.commons.lang3.*
\r
41 import org.apache.commons.codec.binary.Base64;
\r
42 import org.w3c.dom.Document
\r
43 import org.w3c.dom.Element
\r
44 import org.w3c.dom.Node
\r
45 import org.w3c.dom.NodeList
\r
46 import org.xml.sax.InputSource
\r
47 import static org.apache.commons.lang3.StringUtils.*;
\r
49 import org.springframework.web.util.UriUtils;
\r
52 * This groovy class supports the <class>DelE2EServiceInstance.bpmn</class> process.
\r
55 public class DeleteCustomE2EServiceInstance extends AbstractServiceTaskProcessor {
\r
57 String Prefix="DELSI_"
\r
58 ExceptionUtil exceptionUtil = new ExceptionUtil()
\r
59 JsonUtils jsonUtil = new JsonUtils()
\r
60 VidUtils vidUtils = new VidUtils()
\r
62 public void preProcessRequest (Execution execution) {
\r
63 def isDebugEnabled=execution.getVariable("isDebugLogEnabled")
\r
64 execution.setVariable("prefix",Prefix)
\r
67 utils.log("INFO", " *** preProcessRequest Request *** ", isDebugEnabled)
\r
70 // check for incoming json message/input
\r
71 String siRequest = execution.getVariable("bpmnRequest")
\r
72 utils.logAudit(siRequest)
\r
75 String requestId = execution.getVariable("mso-request-id")
\r
76 execution.setVariable("msoRequestId", requestId)
\r
77 utils.log("INFO", "Input Request:" + siRequest + " reqId:" + requestId, isDebugEnabled)
\r
79 String serviceInstanceId = execution.getVariable("serviceInstanceId")
\r
80 if (isBlank(serviceInstanceId)) {
\r
81 msg = "Input serviceInstanceId' is null"
\r
82 exceptionUtil.buildAndThrowWorkflowException(execution, 500, msg)
\r
85 String serviceType = execution.getVariable("serviceType")
\r
86 if (isBlank(serviceType)) {
\r
87 msg = "Input serviceType' is null"
\r
88 utils.log("INFO", msg, isDebugEnabled)
\r
90 execution.setVariable("serviceType", serviceType)
\r
94 String globalSubscriberId = jsonUtil.getJsonValue(siRequest, "globalSubscriberId")
\r
95 if (isBlank(globalSubscriberId)) {
\r
96 msg = "Input globalSubscriberId' is null"
\r
97 utils.log("INFO", msg, isDebugEnabled)
\r
99 execution.setVariable("globalSubscriberId", globalSubscriberId)
\r
103 String operationId = jsonUtil.getJsonValue(siRequest, "operationId")
\r
104 if (isBlank(operationId)) {
\r
105 operationId = UUID.randomUUID().toString()
\r
107 execution.setVariable("operationId", operationId)
\r
109 execution.setVariable("URN_mso_adapters_openecomp_db_endpoint","http://mso.mso.testlab.openecomp.org:8080/dbadapters/RequestsDbAdapter")
\r
111 } catch (BpmnError e) {
\r
113 } catch (Exception ex){
\r
114 msg = "Exception in preProcessRequest " + ex.getMessage()
\r
115 utils.log("INFO", msg, isDebugEnabled)
\r
116 exceptionUtil.buildAndThrowWorkflowException(execution, 7000, msg)
\r
118 utils.log("INFO"," ***** Exit preProcessRequest *****", isDebugEnabled)
\r
121 public void sendSyncResponse (Execution execution) {
\r
122 def isDebugEnabled=execution.getVariable("isDebugLogEnabled")
\r
123 utils.log("INFO", " *** sendSyncResponse *** ", isDebugEnabled)
\r
126 String operationId = execution.getVariable("operationId")
\r
128 // RESTResponse (for API Handler (APIH) Reply Task) : :
\r
129 String syncResponse = """{"operationId":"${operationId}"}""".trim()
\r
130 utils.log("INFO", " sendSynchResponse: xmlSyncResponse - " + "\n" + syncResponse, isDebugEnabled)
\r
131 sendWorkflowResponse(execution, 202, syncResponse)
\r
133 } catch (Exception ex) {
\r
134 String msg = "Exception in sendSyncResponse: " + ex.getMessage()
\r
135 exceptionUtil.buildAndThrowWorkflowException(execution, 7000, exceptionMessage)
\r
137 utils.log("INFO"," ***** Exit sendSyncResopnse *****", isDebugEnabled)
\r
140 public void sendSyncError (Execution execution) {
\r
141 def isDebugEnabled=execution.getVariable("isDebugLogEnabled")
\r
142 utils.log("INFO", " *** sendSyncError *** ", isDebugEnabled)
\r
145 String errorMessage = ""
\r
146 if (execution.getVariable("WorkflowException") instanceof WorkflowException) {
\r
147 WorkflowException wfe = execution.getVariable("WorkflowException")
\r
148 errorMessage = wfe.getErrorMessage()
\r
150 errorMessage = "Sending Sync Error."
\r
153 String buildworkflowException =
\r
154 """<aetgt:WorkflowException xmlns:aetgt="http://org.openecomp/mso/workflow/schema/v1">
\r
155 <aetgt:ErrorMessage>${errorMessage}</aetgt:ErrorMessage>
\r
156 <aetgt:ErrorCode>7000</aetgt:ErrorCode>
\r
157 </aetgt:WorkflowException>"""
\r
159 utils.logAudit(buildworkflowException)
\r
160 sendWorkflowResponse(execution, 500, buildworkflowException)
\r
162 } catch (Exception ex) {
\r
163 utils.log("INFO", " Sending Sync Error Activity Failed. " + "\n" + ex.getMessage(), isDebugEnabled)
\r
168 public void prepareCompletionRequest (Execution execution) {
\r
169 def isDebugEnabled=execution.getVariable("isDebugLogEnabled")
\r
170 utils.log("INFO", " *** prepareCompletion *** ", isDebugEnabled)
\r
173 String requestId = execution.getVariable("msoRequestId")
\r
174 String source = execution.getVariable("source")
\r
175 String msoCompletionRequest =
\r
176 """<aetgt:MsoCompletionRequest xmlns:aetgt="http://org.openecomp/mso/workflow/schema/v1"
\r
177 xmlns:ns="http://org.openecomp/mso/request/types/v1">
\r
178 <request-info xmlns="http://org.openecomp/mso/infra/vnf-request/v1">
\r
179 <request-id>${requestId}</request-id>
\r
180 <action>DELETE</action>
\r
181 <source>${source}</source>
\r
183 <aetgt:status-message>E2E Service Instance was deleted successfully.</aetgt:status-message>
\r
184 <aetgt:mso-bpel-name>DeleteCustomE2EServiceInstance</aetgt:mso-bpel-name>
\r
185 </aetgt:MsoCompletionRequest>"""
\r
188 String xmlMsoCompletionRequest = utils.formatXml(msoCompletionRequest)
\r
190 execution.setVariable("completionRequest", xmlMsoCompletionRequest)
\r
191 utils.log("INFO", " Overall SUCCESS Response going to CompleteMsoProcess - " + "\n" + xmlMsoCompletionRequest, isDebugEnabled)
\r
193 } catch (Exception ex) {
\r
194 String msg = " Exception in prepareCompletion:" + ex.getMessage()
\r
195 utils.log("INFO", msg, isDebugEnabled)
\r
196 exceptionUtil.buildAndThrowWorkflowException(execution, 7000, msg)
\r
198 utils.log("INFO", "*** Exit prepareCompletionRequest ***", isDebugEnabled)
\r
201 public void prepareFalloutRequest(Execution execution){
\r
202 def isDebugEnabled=execution.getVariable("isDebugLogEnabled")
\r
203 utils.log("INFO", " *** prepareFalloutRequest *** ", isDebugEnabled)
\r
206 WorkflowException wfex = execution.getVariable("WorkflowException")
\r
207 utils.log("INFO", " Input Workflow Exception: " + wfex.toString(), isDebugEnabled)
\r
208 String requestId = execution.getVariable("msoRequestId")
\r
209 String source = execution.getVariable("source")
\r
210 String requestInfo =
\r
211 """<request-info xmlns="http://org.openecomp/mso/infra/vnf-request/v1">
\r
212 <request-id>${requestId}</request-id>
\r
213 <action>DELETE</action>
\r
214 <source>${source}</source>
\r
217 String falloutRequest = exceptionUtil.processMainflowsBPMNException(execution, requestInfo)
\r
218 execution.setVariable("falloutRequest", falloutRequest)
\r
219 } catch (Exception ex) {
\r
220 utils.log("INFO", "Exception prepareFalloutRequest:" + ex.getMessage(), isDebugEnabled)
\r
221 String errorException = " Bpmn error encountered in CreateServiceInstance flow. FalloutHandlerRequest, buildErrorResponse() - " + ex.getMessage()
\r
222 String requestId = execution.getVariable("msoRequestId")
\r
223 String falloutRequest =
\r
224 """<aetgt:FalloutHandlerRequest xmlns:aetgt="http://org.openecomp/mso/workflow/schema/v1"
\r
225 xmlns:ns="http://org.openecomp/mso/request/types/v1"
\r
226 xmlns:wfsch="http://org.openecomp/mso/workflow/schema/v1">
\r
227 <request-info xmlns="http://org.openecomp/mso/infra/vnf-request/v1">
\r
228 <request-id>${requestId}</request-id>
\r
229 <action>DELETE</action>
\r
230 <source>VID</source>
\r
232 <aetgt:WorkflowException xmlns:aetgt="http://org.openecomp/mso/workflow/schema/v1">
\r
233 <aetgt:ErrorMessage>${errorException}</aetgt:ErrorMessage>
\r
234 <aetgt:ErrorCode>7000</aetgt:ErrorCode>
\r
235 </aetgt:WorkflowException>
\r
236 </aetgt:FalloutHandlerRequest>"""
\r
238 execution.setVariable("falloutRequest", falloutRequest)
\r
240 utils.log("INFO", "*** Exit prepareFalloutRequest ***", isDebugEnabled)
\r
244 // *******************************
\r
245 // Build DB request Section
\r
246 // *******************************
\r
247 public void prepareDBRequest (Execution execution) {
\r
248 def isDebugEnabled=execution.getVariable("isDebugLogEnabled")
\r
249 execution.setVariable("prefix", Prefix)
\r
252 utils.log("INFO", " ***** Inside prepareDBRequest of DeleteCustomE2EServiceInstance ***** ", isDebugEnabled)
\r
254 String requestId = execution.getVariable("DELSI_requestId")
\r
255 String statusMessage = "E2E Service Instance successfully deleted."
\r
257 //TODO - verify the format for Service Instance Delete,
\r
259 """<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
\r
262 <ns:updateInfraRequest xmlns:ns="http://org.openecomp.mso/requestsdb">
\r
263 <requestId>${requestId}</requestId>
\r
264 <lastModifiedBy>BPMN</lastModifiedBy>
\r
265 <statusMessage>${statusMessage}</statusMessage>
\r
266 <responseBody></responseBody>
\r
267 <requestStatus>COMPLETED</requestStatus>
\r
268 <progress>100</progress>
\r
269 </ns:updateInfraRequest>
\r
271 </soapenv:Envelope>"""
\r
273 String buildDeleteDBRequestAsString = utils.formatXml(dbRequest)
\r
274 execution.setVariable("DELSI_createDBRequest", buildDeleteDBRequestAsString)
\r
275 utils.logAudit(buildDeleteDBRequestAsString)
\r
277 } catch (Exception ex) {
\r
278 // try error in method block
\r
279 String exceptionMessage = "Bpmn error encountered in DeleteCustomE2EServiceInstance flow. Unexpected Error from method prepareDBRequest() - " + ex.getMessage()
\r
280 exceptionUtil.buildAndThrowWorkflowException(execution, 7000, exceptionMessage)
\r
286 // *******************************
\r
287 // Build Error Section
\r
288 // *******************************
\r
289 public void prepareDBRequestError (Execution execution) {
\r
290 def isDebugEnabled=execution.getVariable("isDebugLogEnabled")
\r
291 execution.setVariable("prefix", Prefix)
\r
293 utils.log("INFO", " ***** Inside prepareDBRequestError of DeleteCustomE2EServiceInstance ***** ", isDebugEnabled)
\r
296 String requestId = execution.getVariable("DELSI_requestId")
\r
297 String statusMessage = ""
\r
298 if (execution.getVariable("WorkflowException") instanceof WorkflowException) {
\r
299 WorkflowException wfe = execution.getVariable("WorkflowException")
\r
300 statusMessage = wfe.getErrorMessage()
\r
303 statusMessage = "Encountered Error during DeleteCustomE2EServiceInstance proccessing. "
\r
306 //TODO - verify the format for Service Instance Create,
\r
308 """<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
\r
311 <ns:updateInfraRequest xmlns:ns="http://org.openecomp.mso/requestsdb">
\r
312 <requestId>${requestId}</requestId>
\r
313 <lastModifiedBy>BPMN</lastModifiedBy>
\r
314 <statusMessage>${statusMessage}</statusMessage>
\r
315 <responseBody></responseBody>
\r
316 <requestStatus>FAILED</requestStatus>
\r
317 </ns:updateInfraRequest>
\r
319 </soapenv:Envelope>"""
\r
321 String buildDBRequestAsString = utils.formatXml(dbRequest)
\r
322 execution.setVariable("DELSI_createDBInfraErrorRequest", buildDBRequestAsString)
\r
323 utils.logAudit(buildDBRequestAsString)
\r
325 } catch (Exception ex) {
\r
326 // try error in method block
\r
327 String exceptionMessage = "Bpmn error encountered in DeleteCustomE2EServiceInstance flow. Unexpected Error from method prepareDBRequestError() - " + ex.getMessage()
\r
328 exceptionUtil.buildWorkflowException(execution, 7000, exceptionMessage)
\r
334 public void processJavaException(Execution execution) {
\r