aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOGammaBPMN/src/main/groovy/com/att/bpm/scripts/FalloutHandler.groovy
blob: eefcf47e1b54898655137300e831103182dc6dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
/*-
 * ============LICENSE_START=======================================================
 * OPENECOMP - MSO
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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 com.att.bpm.scripts

import java.text.SimpleDateFormat

import org.apache.commons.lang3.*
import org.camunda.bpm.engine.runtime.Execution

public class FalloutHandler extends AbstractServiceTaskProcessor {

	String Prefix="FH_"
	ExceptionUtil exceptionUtil = new ExceptionUtil()

	public initializeProcessVariables(Execution execution){
		def method = getClass().getSimpleName() + '.initializeProcessVariables(' +'execution=' + execution.getId() +')'
		def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
		logDebug('Entered ' + method, isDebugLogEnabled)

		try {
			execution.setVariable("prefix",Prefix)

			//These variables are form the input Message to the BPMN
			execution.setVariable("FH_request_id","")
			execution.setVariable("FH_request_action","")
			execution.setVariable("FH_notification-url","")
			execution.setVariable("FH_mso-bpel-name","")
			execution.setVariable("FH_ErrorCode", "")
			execution.setVariable("FH_ErrorMessage", "")

			execution.setVariable("FH_notification-url-Ok", false)
			execution.setVariable("FH_request_id-Ok", false)

			//These variables are for Get Mso Aai Password Adapter
			execution.setVariable("FH_deliveryStatus", true)

			//Notify CSI Adapter variables
			execution.setVariable("FH_notifyCSIPayload", "")
			execution.setVariable("FH_notifyCSIResponseCode", null)
			execution.setVariable("FH_notifyCSIResponse", "")

			//update Response Status to pending ...Adapter variables
			execution.setVariable("FH_updateResponseStatusPayload", null)
			execution.setVariable("FH_updateResponseStatusResponse", null)

			//update Request Gamma ...Adapter variables
			execution.setVariable("FH_updateRequestGammaPayload", "")
			execution.setVariable("FH_updateRequestGammaResponse", null)
			execution.setVariable("FH_updateRequestGammaResponseCode", null)

			//update Request Infra ...Adapter variables
			execution.setVariable("FH_updateRequestInfraPayload", "")
			execution.setVariable("FH_updateRequestInfraResponse", null)
			execution.setVariable("FH_updateRequestInfraResponseCode", null)

			//assign True to success variable
			execution.setVariable("FH_success", true)

			//Set notify status to Failed variable
			execution.setVariable("FH_NOTIFY_STATUS", "SUCCESS")

			//Set DB update variable
			execution.setVariable("FH_updateRequestPayload", "")
			execution.setVariable("FH_updateRequestResponse", null)
			execution.setVariable("FH_updateRequestResponseCode", null)

			//Auth variables
			execution.setVariable("BasicAuthHeaderValue","")

			//Parameter list
			execution.setVariable("FH_parameterList",  "")

			//Response variables
			execution.setVariable("FalloutHandlerResponse","")
			execution.setVariable("FH_ErrorResponse", null)
			execution.setVariable("FH_ResponseCode", "")

		} catch (Exception e) {
			logError('Caught exception in ' + method, e)
			exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
		}
	}

	public void preProcessRequest (Execution execution) {
		def method = getClass().getSimpleName() + '.preProcessRequest(' +'execution=' + execution.getId() +')'
		def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
		logDebug('Entered ' + method, isDebugLogEnabled)

		// Initialize flow variables
		initializeProcessVariables(execution)
		setSuccessIndicator(execution, false)

		try {
			def xml = execution.getVariable("FalloutHandlerRequest")
			utils.log("DEBUG", " XML --> " + xml, isDebugLogEnabled)
			utils.logAudit("FalloutHandler request: " + xml)

			//Check the incoming request type
			//Incoming request can be ACTIVE_REQUESTS (request-information node) or  INFRA_ACTIVE_REQUESTS (request-info node)
			if (utils.nodeExists(xml, "request-information")) {
				execution.setVariable("FH_request_id-Ok", true) // Incoming request is for ACTIVE_REQUESTS
			}

			//Check notification-url for the incoming request type
			//ACTIVE_REQUESTS may have notificationurl node
			//INFRA_ACTIVE_REQUESTS notificationurl node does not exist
			def notificationurl = ""
			if (utils.nodeExists(xml, "notification-url")) {
				notificationurl = utils.getNodeText(xml,"notification-url")
				if(notificationurl != null && !notificationurl.isEmpty()) {
					execution.setVariable("FH_notification-url-Ok", true)
					execution.setVariable("FH_notification-url",notificationurl)
				}
			}

			//Check request_id for the incoming request type
			//For INFRA_ACTIVE_REQUESTS payload request-id IS optional (Not sure why this is option since req id is primary key ... also tried exe through SOAP UI to check if MSO code handles null like auto generated seq not it does not)
			//For ACTIVE_REQUESTS payload request-id is NOT optional
			def request_id = ""
			if (utils.nodeExists(xml, "request-id")) {
				execution.setVariable("FH_request_id",utils.getNodeText(xml,"request-id"))
			}
			utils.logAudit("FH_request_id: " + execution.getVariable("FH_request_id"))

			// INFRA_ACTIVE_REQUESTS	 have "action" element ... mandatory
			// ACTIVE_REQUEST have "request-action" ... mandatory
			if (utils.nodeExists(xml, "request-action")) {
				execution.setVariable("FH_request_action",utils.getNodeText(xml,"request-action"))
			} else if (utils.nodeExists(xml, "action")) {
				execution.setVariable("FH_request_action",utils.getNodeText(xml,"action"))
			}


			//Check source for the incoming request type
			//For INFRA_ACTIVE_REQUESTS payload source IS optional
			//For ACTIVE_REQUESTS payload source is NOT optional
			def source = ""
			if (utils.nodeExists(xml, "source")) {
				execution.setVariable("FH_source",utils.getNodeText(xml,"source"))
			}

			//Check if ErrorCode node exists. If yes, initialize it from request xml, if no, it will stay with defaulf value already set in initializeProcessVariables() method above.
			def errorCode = ""
			if (utils.nodeExists(xml, "ErrorCode")) {
				errorCode = utils.getNodeText(xml,"ErrorCode")
				if(errorCode != null && !errorCode.isEmpty()) {
					execution.setVariable("FH_ErrorCode", errorCode)
				}
			}
			utils.logAudit("FH_ErrorCode: " + errorCode)

			//Check if ErrorMessage node exists. If yes, initialize it from request xml, if no, it will stay with defaulf value already set in initializeProcessVariables() method above.
			def errorMessage = ""
			if (utils.nodeExists(xml, "ErrorMessage")) {
				errorCode = utils.getNodeText(xml,"ErrorMessage")
				if(errorCode != null && !errorCode.isEmpty()) {
					errorCode = errorCode.replace("&", "&amp;").replace("<", "&lt;").replace(">", "&gt;")
					execution.setVariable("FH_ErrorMessage", errorCode)
				}
			}

			//Check for Parameter List
			if (utils.nodeExists(xml, "parameter-list")) {
				def parameterList = utils.getNodeXml(xml, "parameter-list", false)
				execution.setVariable("FH_parameterList", parameterList)
			}

			utils.log("DEBUG","FH_notification-url-Ok --> " + execution.getVariable("FH_notification-url-Ok"),isDebugLogEnabled)
			utils.log("DEBUG","FH_request_id-OK --> " + execution.getVariable("FH_request_id-Ok"),isDebugLogEnabled)

		} catch (Exception e) {
			logError('Caught exception in ' + method, e)
			exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in" + method)
		}

		utils.log("DEBUG","OUTOF --> Initialize Variables Fallout Handler #########",isDebugLogEnabled);
	}

	public String updateRequestPayload (Execution execution){
		def method = getClass().getSimpleName() + '.updateRequestPayload(' +'execution=' + execution.getId() +')'
		def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
		logDebug('Entered ' + method, isDebugLogEnabled)

		try {
			String payload = """
				<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://com.att.mso/requestsdb">
				<soapenv:Header/>
				<soapenv:Body>
					<req:updateRequest>
						<requestId>${execution.getVariable("FH_request_id")}</requestId>
						<lastModifiedBy>BPEL</lastModifiedBy>
						<finalErrorMessage>${execution.getVariable("FH_ErrorMessage")}</finalErrorMessage>
						<finalErrorCode>${execution.getVariable("FH_ErrorCode")}</finalErrorCode>
						<status>FAILED</status>
						<responseStatus>${execution.getVariable("FH_NOTIFY_STATUS")}</responseStatus>
					</req:updateRequest>
				</soapenv:Body>
				</soapenv:Envelope>
			"""

			utils.logAudit("updateRequestPayload: " + payload)
			execution.setVariable("FH_updateRequestPayload", payload)
			return execution.getVariable("FH_updateRequestPayload")
		} catch (Exception e) {
			logError('Caught exception in ' + method, e)
			exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
		}
	}

	public String updateRequestInfraPayload (Execution execution){
		def method = getClass().getSimpleName() + '.updateRequestInfraPayload(' +'execution=' + execution.getId() +')'
		def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
		logDebug('Entered ' + method, isDebugLogEnabled)

		try {
			String payload = """
				<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://com.att.mso/requestsdb">
				<soapenv:Header/>
				<soapenv:Body>
					<req:updateInfraRequest>
						<requestId>${execution.getVariable("FH_request_id")}</requestId>
						<lastModifiedBy>BPEL</lastModifiedBy>
						<statusMessage>${execution.getVariable("FH_ErrorMessage")}</statusMessage>
						<requestStatus>FAILED</requestStatus>
						<progress>100</progress>
					</req:updateInfraRequest>
				</soapenv:Body>
				</soapenv:Envelope>
			"""

			execution.setVariable("FH_updateRequestInfraPayload", payload)
			utils.logAudit("updateRequestInfraPayload: " + payload)
			return execution.getVariable("FH_updateRequestInfraPayload")
		} catch (Exception e) {
			logError('Caught exception in ' + method, e)
			exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
		}
	}

	public String updateRequestGammaPayload (Execution execution){
		def method = getClass().getSimpleName() + '.updateRequestGammaPayload(' +'execution=' + execution.getId() +')'
		def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
		logDebug('Entered ' + method, isDebugLogEnabled)

		try {
			String payload = """
				<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://com.att.mso/requestsdb">
				<soapenv:Header/>
				<soapenv:Body>
					<req:updateRequest>
						<requestId>${execution.getVariable("FH_request_id")}</requestId>
						<lastModifiedBy>BPEL</lastModifiedBy>
						<finalErrorMessage>${execution.getVariable("FH_ErrorMessage")}</finalErrorMessage>
						<finalErrorCode>${execution.getVariable("FH_ErrorCode")}</finalErrorCode>
						<status>FAILED</status>
					</req:updateRequest>
				</soapenv:Body>
				</soapenv:Envelope>
			"""

			execution.setVariable("FH_updateRequestGammaPayload", payload)
			utils.logAudit("updateRequestGammaPayload: " + payload)
			return execution.getVariable("FH_updateRequestGammaPayload")
		} catch (Exception e) {
			logError('Caught exception in ' + method, e)
			exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
		}
	}

	public String updateResponseStatusPayload (Execution execution){
		def method = getClass().getSimpleName() + '.updateResponseStatusPayload(' +'execution=' + execution.getId() +')'
		def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
		logDebug('Entered ' + method, isDebugLogEnabled)

		try {
			String payload = """
				<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://com.att.mso/requestsdb">
				<soapenv:Header/>
				<soapenv:Body>
					<req:updateResponseStatus>
						<requestId>${execution.getVariable("FH_request_id")}</requestId>
						<lastModifiedBy>BPEL</lastModifiedBy>
						<responseStatus>SENDING_FINAL_NOTIFY</responseStatus>
					</req:updateResponseStatus>
				</soapenv:Body>
				</soapenv:Envelope>
			"""

			execution.setVariable("FH_updateResponseStatusPayload", payload)
			utils.logAudit("updateResponseStatusPayload: " + payload)
			return execution.getVariable("FH_updateResponseStatusPayload")
		} catch (Exception e) {
			logError('Caught exception in ' + method, e)
			exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
		}
	}

	public String notifyCSIPayload (Execution execution) {
		return "";
	}

	public String notifyCCDFailurePayload (Execution execution) {
		def method = getClass().getSimpleName() + '.notifyCCDFailurePayload(' +'execution=' + execution.getId() +')'
		def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
		logDebug('Entered ' + method, isDebugLogEnabled)

		try {
			def parameterList = execution.getVariable('FH_parameterList')
			String payload ="""
				<ns:status-notification xmlns:ns="http://ecomp.att.com/mso/statusnotification/schema/v1" xmlns:msoservtypes="http://ecomp.att.com/mso/request/types/v1">
					<msoservtypes:request-id>${execution.getVariable("FH_request_id")}</msoservtypes:request-id>
					<msoservtypes:request-action>${execution.getVariable("FH_request_action")}</msoservtypes:request-action>
					<msoservtypes:source>${execution.getVariable("FH_source")}</msoservtypes:source>
					<msoservtypes:error-code>${execution.getVariable("FH_ErrorCode")}</msoservtypes:error-code>
					<msoservtypes:error-message>${execution.getVariable("FH_ErrorMessage")}</msoservtypes:error-message>
					<msoservtypes:ack-final-indicator>Y</msoservtypes:ack-final-indicator>
					${parameterList}
				</ns:status-notification>
			"""

			payload = utils.formatXml(payload)
			utils.logAudit("notifyCCDFailurePayload: " + payload)

			execution.setVariable("FH_notifyCCDFailurePayload", payload)
			utils.log("DEBUG", "FH_notifyCCDFailurePayload --> " + "\n" + execution.getVariable("FH_notifyCCDFailurePayload"), isDebugLogEnabled)
			return execution.getVariable("FH_notifyCCDFailurePayload")
		} catch (Exception e) {
			logError('Caught exception in ' + method, e)
			exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
		}
	}

	public void buildDBWorkflowException(Execution execution, String responseCodeVariable) {
		def method = getClass().getSimpleName() + '.buildDBWorkflowException(' +
			'execution=' + execution.getId() +
			', responseCodeVariable=' + responseCodeVariable + ')'
		def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
		logDebug('Entered ' + method, isDebugLogEnabled)

		try {
			def responseCode = execution.getVariable(responseCodeVariable)
			// If the HTTP response code was null, it means a connection fault occurred (a java exception)
			def errorMessage = responseCode == null ? "Could not connect to DB Adapter" : "DB Adapter returned ${responseCode} response"
			def errorCode = responseCode == null ? 7000 : 7020
			exceptionUtil.buildWorkflowException(execution, errorCode, errorMessage)
		} catch (Exception e) {
			logError('Caught exception in ' + method, e)
			exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
		}
	}

	/**
	 * Used to create a workflow response in success and failure cases.
	 */
	public void postProcessResponse (Execution execution) {
		def method = getClass().getSimpleName() + '.postProcessResponse(' +'execution=' + execution.getId() +')'
		def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
		logDebug('Entered ' + method, isDebugLogEnabled)

		try {
			Boolean success = (Boolean) execution.getVariable("FH_success")
			String out = success ? "Fallout Handler Succeeded" : "Fallout Handler Failed";

			def falloutHandlerResponse = """
				<workflow:FalloutHandlerResponse xmlns:workflow="http://ecomp.att.com/mso/workflow/schema/v1">
				   <workflow:out>${out}</workflow:out>
				</workflow:FalloutHandlerResponse>
			"""

			falloutHandlerResponse = utils.formatXml(falloutHandlerResponse)
			utils.logAudit("FalloutHandler Response: " + falloutHandlerResponse);

			execution.setVariable("FalloutHandlerResponse", falloutHandlerResponse)
			execution.setVariable("WorkflowResponse", falloutHandlerResponse)
			execution.setVariable("FH_ResponseCode", success ? "200" : "500")
			setSuccessIndicator(execution, success)

			logDebug("FalloutHandlerResponse =\n" + falloutHandlerResponse, isDebugLogEnabled)
		} catch (Exception e) {
			// Do NOT throw WorkflowException!
			logError('Caught exception in ' + method, e)
		}
	}
}