summaryrefslogtreecommitdiffstats
path: root/aai-core/src/main/java/org/openecomp/aai/dmaap/AAIDmaapEventJMSConsumer.java
blob: a30ebc0d872efc8efc61a1109fd80ac0564d50a4 (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
/*-
 * ============LICENSE_START=======================================================
 * org.openecomp.aai
 * ================================================================================
 * 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 org.openecomp.aai.dmaap;

import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFManager;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;
import org.apache.log4j.MDC;
import org.json.JSONException;
import org.json.JSONObject;
import org.openecomp.aai.logging.ErrorLogHelper;
import org.openecomp.aai.util.AAIConstants;

import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageListener;
import javax.jms.TextMessage;
import javax.ws.rs.core.MediaType;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.Properties;

public class AAIDmaapEventJMSConsumer implements MessageListener {

	private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(AAIDmaapEventJMSConsumer.class);

	private Client httpClient;

	private Properties aaiEventProps;
	private String aaiEventUrl = "";

	public AAIDmaapEventJMSConsumer() throws org.apache.commons.configuration.ConfigurationException {
		super();
		try {

			if (this.httpClient == null) {
				FileReader reader = new FileReader(new File(AAIConstants.AAI_EVENT_DMAAP_PROPS));
				aaiEventProps = new Properties();
				aaiEventProps.load(reader);
				reader.close();

				String host = aaiEventProps.getProperty("host");
				String topic = aaiEventProps.getProperty("topic");
				String protocol = aaiEventProps.getProperty("Protocol");

				aaiEventUrl = protocol + "://" + host + "/events/" + topic;
				httpClient = Client.create();
			}

		} catch (IOException e) {
			ErrorLogHelper.logError("AAI_4000", "Error updating dmaap config file for aai event.");
		}

	}

	@Override
	public void onMessage(Message message) {

		String jsmMessageTxt = "";
		String aaiEvent = "";
		String eventName = "";

		if (message instanceof TextMessage) {
			try {
				jsmMessageTxt = ((TextMessage) message).getText();
				JSONObject jo = new JSONObject(jsmMessageTxt);

				if (jo.has("aaiEventPayload")) {
					aaiEvent = jo.getJSONObject("aaiEventPayload").toString();
				} else {
					return;
				}
				if (jo.getString("transId") != null) {
					MDC.put("requestId", jo.getString("transId"));
				}
				if (jo.getString("fromAppId") != null) {
					MDC.put("partnerName", jo.getString("fromAppId"));
				}
				if (jo.getString("event-topic") != null) {
					eventName = jo.getString("event-topic");
				}

				LOGGER.info(eventName + "|" + aaiEvent);
				if ("AAI-EVENT".equals(eventName)) {
					this.sentWithHttp(this.httpClient, this.aaiEventUrl, aaiEvent);
				}
			} catch (java.net.SocketException e) {
				if (!e.getMessage().contains("Connection reset")) {
					LOGGER.error("AAI_7304 Error reaching DMaaP to send event. " + aaiEvent, e);
				}
			} catch (IOException e) {
				LOGGER.error("AAI_7304 Error reaching DMaaP to send event. " + aaiEvent, e);
			} catch (JMSException | JSONException e) {
				LOGGER.error("AAI_7350 Error parsing aaievent jsm message for sending to dmaap. " + jsmMessageTxt, e);
			} catch (Exception e) {
				LOGGER.error("AAI_7350 Error sending message to dmaap. " + jsmMessageTxt, e);
			}
		}

	}

	private boolean sentWithHttp(Client client, String url, String aaiEvent) throws IOException {

		WebResource webResource = client.resource(url);

		ClientResponse response = webResource
				.accept(MediaType.APPLICATION_JSON)
				.type(MediaType.APPLICATION_JSON)
				.post(ClientResponse.class, aaiEvent);

		if (response.getStatus() != 200) {
			LOGGER.info("Failed : HTTP error code : " + response.getStatus());
			return false;
		}
		return true;
	}
}