ca3420a2c128602e83538c2696c370213c356703
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-dmaap-adapter-bundle / src / main / java / org / onap / appc / adapter / messaging / dmaap / http / HttpDmaapProducerImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.adapter.messaging.dmaap.http;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28 import java.net.URI;
29 import java.util.ArrayList;
30 import java.util.Collection;
31 import java.util.HashSet;
32 import java.util.List;
33 import java.util.Set;
34 import org.apache.http.client.methods.CloseableHttpResponse;
35 import org.apache.http.client.methods.HttpPost;
36 import org.apache.http.entity.StringEntity;
37 import org.onap.appc.adapter.message.Producer;
38
39 public class HttpDmaapProducerImpl extends CommonHttpClient implements Producer {
40
41     private static final EELFLogger LOG = EELFManager.getInstance().getLogger(HttpDmaapProducerImpl.class);
42
43     private static final String CONTENT_TYPE = "application/cambria";
44     private static final String URL_TEMPLATE = "%s/events/%s";
45
46     private List<String> hosts;
47     private Set<String> topics;
48
49     public HttpDmaapProducerImpl() {
50         //for test purposes
51     }
52
53     public HttpDmaapProducerImpl(Collection<String> urls, String topicName) {
54         topics = new HashSet<>();
55         topics.add(topicName);
56
57         hosts = new ArrayList<>();
58         for (String host : urls) {
59             hosts.add(formatHostString(host));
60         }
61     }
62
63     @Override
64     public void updateCredentials(String user, String pass) {
65         LOG.debug(String.format("Setting auth to %s for %s", user, this.toString()));
66         this.setBasicAuth(user, pass);
67     }
68
69     @Override
70     public boolean post(String partition, String data) {
71         long sent = 0;
72         try {
73             HttpPost request = postReq(null);
74             request.setHeader("Content-Type", CONTENT_TYPE);
75             request.setEntity(new StringEntity(bodyLine(partition, data)));
76
77             sent = topics.stream()
78                 .filter(topic -> sendRequest(request, topic))
79                 .count();
80
81         } catch (Exception buildEx) {
82             LOG.error(
83                 String.format("Failed to build request with string [%s]. Message not sent to any topic. Reason: %s",
84                     data, buildEx.getMessage()),
85                 buildEx);
86         }
87         return sent == topics.size();
88     }
89
90     private boolean sendRequest(HttpPost request, String topic) {
91         boolean successful = false;
92         String uriStr = String.format(URL_TEMPLATE, hosts.get(0), topic);
93         try {
94             request.setURI(new URI(uriStr));
95             CloseableHttpResponse response = getClient().execute(request);
96             if (response.getStatusLine().getStatusCode() == 200) {
97                 successful = true;
98             }
99             response.close();
100         } catch (Exception sendEx) {
101             LOG.error(String.format("Failed to send message to %s. Reason: %s", uriStr, sendEx.getMessage()),
102                 sendEx);
103             if (hosts.size() > 1) {
104                 String failedUrl = hosts.remove(0);
105                 hosts.add(failedUrl);
106                 LOG.debug(String.format("Moving host %s to the end of the pool. New primary host is %s",
107                     failedUrl, hosts.get(0)));
108             }
109         }
110         return successful;
111     }
112
113     /**
114      * Format the body for the application/cambria content type with no partitioning. See
115      *
116      * @param message
117      *            The message body to format
118      * @return A string in the application/cambria content type
119      */
120     private String bodyLine(String partition, String message) {
121         String prt = (partition == null) ? "" : partition;
122         String msg = (message == null) ? "" : message;
123         return String.format("%d.%d.%s%s", prt.length(), msg.length(), prt, msg);
124     }
125
126 }