aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOCommonBPMN
diff options
context:
space:
mode:
authorsanket12345 <SX00562924@techmahindra.com>2021-08-25 17:27:59 +0530
committersanket12345 <SX00562924@techmahindra.com>2021-08-25 17:29:03 +0530
commit834a687fc5d277dd95cb4a40441f4c65076822e1 (patch)
treef2db2dbae40f65a946088accad76a9cfff36b361 /bpmn/MSOCommonBPMN
parent9e597da1e74ab81a27879f6100335e6815ff1702 (diff)
Implementation of HealthCheckBB
Code changes to implement HealthCheckBB Issue-ID: SO-3691 Change-Id: I88d22f125c122d813f42f0b800aeb6530d7c6acf Signed-off-by: sanket12345 <SX00562924@techmahindra.com>
Diffstat (limited to 'bpmn/MSOCommonBPMN')
-rwxr-xr-xbpmn/MSOCommonBPMN/src/main/groovy/org/onap/so/bpmn/common/scripts/CNFAdapterAsync.groovy80
-rwxr-xr-xbpmn/MSOCommonBPMN/src/main/resources/subprocess/CNFAdapterAsyncCall.bpmn106
2 files changed, 186 insertions, 0 deletions
diff --git a/bpmn/MSOCommonBPMN/src/main/groovy/org/onap/so/bpmn/common/scripts/CNFAdapterAsync.groovy b/bpmn/MSOCommonBPMN/src/main/groovy/org/onap/so/bpmn/common/scripts/CNFAdapterAsync.groovy
new file mode 100755
index 0000000000..9de40b4e69
--- /dev/null
+++ b/bpmn/MSOCommonBPMN/src/main/groovy/org/onap/so/bpmn/common/scripts/CNFAdapterAsync.groovy
@@ -0,0 +1,80 @@
+package org.onap.so.bpmn.common.scripts
+
+import javax.ws.rs.core.Response
+
+import org.camunda.bpm.engine.delegate.DelegateExecution
+import org.slf4j.Logger
+import org.slf4j.LoggerFactory
+
+import com.fasterxml.jackson.databind.ObjectMapper
+
+import org.onap.so.bpmn.core.UrnPropertiesReader
+import org.onap.logging.filter.base.ONAPComponents
+import org.onap.so.client.HttpClient
+import org.onap.so.client.HttpClientFactory
+
+import static org.onap.so.bpmn.common.scripts.GenericUtils.isBlank
+
+public class CNFAdapterAsync extends AbstractServiceTaskProcessor {
+ private static final Logger logger = LoggerFactory.getLogger(CNFAdapterAsync.class)
+
+ ExceptionUtil exceptionUtil = new ExceptionUtil()
+ ObjectMapper mapper = new ObjectMapper();
+
+ @Override
+ public void preProcessRequest(DelegateExecution execution) {
+ logger.debug("Start preProcessRequest");
+
+ String apiPath = execution.getVariable("apiPath")
+ if (isBlank(apiPath)) {
+ String msg = "Cannot process CNF adapter call : API PATH is null"
+ exceptionUtil.buildAndThrowWorkflowException(execution, 500, msg)
+ }
+
+ //Object cnfRequestPayloadFromExecutionVariable = execution.getVariable("cnfRequestPayload")
+
+ String cnfRequestPayload = execution.getVariable("cnfRequestPayload")
+ if (isBlank(cnfRequestPayload)) {
+ String msg = "Cannot process CNF adapter call : cnfRequestPayload is null"
+ exceptionUtil.buildAndThrowWorkflowException(execution, 500, msg)
+ }
+
+ String correlator = execution.getVariable("correlator")
+ if (isBlank(correlator)) {
+ String msg = "Cannot process CNF adapter call : correlator is null"
+ exceptionUtil.buildAndThrowWorkflowException(execution, 500, msg)
+ }
+
+ String messageType = execution.getVariable("messageType")
+ if (isBlank(messageType)) {
+ String msg = "Cannot process CNF adapter call : messageType is null"
+ exceptionUtil.buildAndThrowWorkflowException(execution, 500, msg)
+ }
+
+ String timeout = UrnPropertiesReader.getVariable("mso.adapters.cnf.timeout", execution);
+ if (isBlank(timeout)) {
+ logger.debug("Setting CNF Adapter timeout to default : PT30M")
+ timeout = "PT30M"
+ }
+
+ execution.setVariable("timeout",timeout)
+
+ logger.debug("Enter preProcessRequest: {}",execution.getVariable("messageType"));
+ }
+
+ void callCnfAdapter(DelegateExecution execution) {
+ logger.debug("Start callCnfAdapter")
+ String cnfAdapterEndpoint = execution.getVariable("apiPath")
+ URL requestUrl = new URL(cnfAdapterEndpoint)
+ String cnfRequest = execution.getVariable("cnfRequestPayload")
+ logger.debug("cnfRequest : " + cnfRequest)
+ HttpClient httpClient = new HttpClientFactory().newJsonClient(requestUrl, ONAPComponents.EXTERNAL)
+ Response httpResponse = httpClient.post(cnfRequest)
+ int responseCode = httpResponse.getStatus()
+ logger.debug("CNF sync response code is: " + responseCode)
+ if(responseCode < 200 || responseCode >= 300){
+ exceptionUtil.buildAndThrowWorkflowException(execution, responseCode, "Received a Bad Sync Response from CNF.")
+ }
+ logger.debug("End callCnfAdapter")
+ }
+}
diff --git a/bpmn/MSOCommonBPMN/src/main/resources/subprocess/CNFAdapterAsyncCall.bpmn b/bpmn/MSOCommonBPMN/src/main/resources/subprocess/CNFAdapterAsyncCall.bpmn
new file mode 100755
index 0000000000..39846f2d39
--- /dev/null
+++ b/bpmn/MSOCommonBPMN/src/main/resources/subprocess/CNFAdapterAsyncCall.bpmn
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0xinghn" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.0.0">
+ <bpmn:process id="CNFAdapterAsyncCall" name="CNFAdapterAsyncCall" isExecutable="true">
+ <bpmn:startEvent id="StartEvent_1" name="CNFAdapterAsyncCall_start">
+ <bpmn:outgoing>Flow_0q7kp9w</bpmn:outgoing>
+ </bpmn:startEvent>
+ <bpmn:endEvent id="Event_15f5cnf" name="CNFAdapterAsyncCall_end">
+ <bpmn:incoming>Flow_0cy88g6</bpmn:incoming>
+ </bpmn:endEvent>
+ <bpmn:callActivity id="Activity_0fhymrt" name="Receive Async Callback" camunda:modelerTemplate="receiveWorkflowMessage" calledElement="ReceiveWorkflowMessage">
+ <bpmn:extensionElements>
+ <camunda:in source="true" target="isDebugLogEnabled" />
+ <camunda:out source="WorkflowException" target="WorkflowException" />
+ <camunda:in source="messageType" target="RCVWFMSG_messageType" />
+ <camunda:in source="correlator" target="RCVWFMSG_correlator" />
+ <camunda:in source="timeout" target="RCVWFMSG_timeout" />
+ <camunda:out source="WorkflowResponse" target="asyncCallbackResponse" />
+ </bpmn:extensionElements>
+ <bpmn:incoming>Flow_0njjlbm</bpmn:incoming>
+ <bpmn:outgoing>Flow_0cy88g6</bpmn:outgoing>
+ </bpmn:callActivity>
+ <bpmn:sequenceFlow id="Flow_0njjlbm" sourceRef="Activity_1ttieoz" targetRef="Activity_0fhymrt" />
+ <bpmn:sequenceFlow id="Flow_0q7kp9w" sourceRef="StartEvent_1" targetRef="Activity_0lttdg6" />
+ <bpmn:sequenceFlow id="Flow_0cy88g6" sourceRef="Activity_0fhymrt" targetRef="Event_15f5cnf" />
+ <bpmn:sequenceFlow id="Flow_04o97wl" sourceRef="Activity_0lttdg6" targetRef="Activity_1ttieoz" />
+ <bpmn:scriptTask id="Activity_0lttdg6" name="Preprocess request" scriptFormat="groovy">
+ <bpmn:incoming>Flow_0q7kp9w</bpmn:incoming>
+ <bpmn:outgoing>Flow_04o97wl</bpmn:outgoing>
+ <bpmn:script>import org.onap.so.bpmn.common.scripts.*
+def cnf= new CNFAdapterAsync()
+cnf.preProcessRequest(execution)</bpmn:script>
+ </bpmn:scriptTask>
+ <bpmn:scriptTask id="Activity_1ttieoz" name="Call CnfAdapter" scriptFormat="groovy">
+ <bpmn:incoming>Flow_04o97wl</bpmn:incoming>
+ <bpmn:outgoing>Flow_0njjlbm</bpmn:outgoing>
+ <bpmn:script>import org.onap.so.bpmn.common.scripts.*
+def cnf= new CNFAdapterAsync()
+cnf.callCnfAdapter(execution)</bpmn:script>
+ </bpmn:scriptTask>
+ <bpmn:subProcess id="Activity_06t66qc" name="Error Handling&#10;&#10;" triggeredByEvent="true">
+ <bpmn:startEvent id="Event_0ny1qj3">
+ <bpmn:outgoing>Flow_0xo7st8</bpmn:outgoing>
+ <bpmn:errorEventDefinition id="ErrorEventDefinition_0ta0yq5" />
+ </bpmn:startEvent>
+ <bpmn:endEvent id="Event_1t6t0h6">
+ <bpmn:incoming>Flow_0xo7st8</bpmn:incoming>
+ <bpmn:terminateEventDefinition id="TerminateEventDefinition_1i0gtkr" />
+ </bpmn:endEvent>
+ <bpmn:sequenceFlow id="Flow_0xo7st8" sourceRef="Event_0ny1qj3" targetRef="Event_1t6t0h6" />
+ </bpmn:subProcess>
+ </bpmn:process>
+ <bpmndi:BPMNDiagram id="BPMNDiagram_1">
+ <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="CNFAdapterAsyncCall">
+ <bpmndi:BPMNEdge id="Flow_04o97wl_di" bpmnElement="Flow_04o97wl">
+ <di:waypoint x="330" y="120" />
+ <di:waypoint x="370" y="120" />
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNEdge id="Flow_0cy88g6_di" bpmnElement="Flow_0cy88g6">
+ <di:waypoint x="610" y="120" />
+ <di:waypoint x="682" y="120" />
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNEdge id="Flow_0q7kp9w_di" bpmnElement="Flow_0q7kp9w">
+ <di:waypoint x="188" y="120" />
+ <di:waypoint x="230" y="120" />
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNEdge id="Flow_0njjlbm_di" bpmnElement="Flow_0njjlbm">
+ <di:waypoint x="470" y="120" />
+ <di:waypoint x="510" y="120" />
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
+ <dc:Bounds x="152" y="102" width="36" height="36" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="128" y="145" width="85" height="27" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNShape id="Event_15f5cnf_di" bpmnElement="Event_15f5cnf">
+ <dc:Bounds x="682" y="102" width="36" height="36" />
+ <bpmndi:BPMNLabel>
+ <dc:Bounds x="658" y="145" width="85" height="27" />
+ </bpmndi:BPMNLabel>
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNShape id="Activity_0fhymrt_di" bpmnElement="Activity_0fhymrt">
+ <dc:Bounds x="510" y="80" width="100" height="80" />
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNShape id="Activity_0j7hue7_di" bpmnElement="Activity_0lttdg6">
+ <dc:Bounds x="230" y="80" width="100" height="80" />
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNShape id="Activity_0o6kxz9_di" bpmnElement="Activity_1ttieoz">
+ <dc:Bounds x="370" y="80" width="100" height="80" />
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNShape id="Activity_06t66qc_di" bpmnElement="Activity_06t66qc" isExpanded="true">
+ <dc:Bounds x="210" y="220" width="460" height="135" />
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNEdge id="Flow_0xo7st8_di" bpmnElement="Flow_0xo7st8">
+ <di:waypoint x="328" y="294" />
+ <di:waypoint x="562" y="294" />
+ </bpmndi:BPMNEdge>
+ <bpmndi:BPMNShape id="Event_0ny1qj3_di" bpmnElement="Event_0ny1qj3">
+ <dc:Bounds x="292" y="276" width="36" height="36" />
+ </bpmndi:BPMNShape>
+ <bpmndi:BPMNShape id="Event_1t6t0h6_di" bpmnElement="Event_1t6t0h6">
+ <dc:Bounds x="562" y="276" width="36" height="36" />
+ </bpmndi:BPMNShape>
+ </bpmndi:BPMNPlane>
+ </bpmndi:BPMNDiagram>
+</bpmn:definitions>