b3a92145050e7c589814c32abef8ffd80d51c3df
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / dmaap / Publisher.java
1 /*\r
2  * Copyright 2017 ZTE Corporation.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 package org.onap.holmes.common.dmaap;\r
17 \r
18 import java.io.IOException;\r
19 import lombok.extern.slf4j.Slf4j;\r
20 import org.apache.http.client.methods.HttpEntityEnclosingRequestBase;\r
21 import org.apache.http.client.methods.HttpPost;\r
22 import org.apache.http.impl.client.CloseableHttpClient;\r
23 import org.onap.holmes.common.dmaap.entity.PolicyMsg;\r
24 import org.onap.holmes.common.exception.CorrelationException;\r
25 import com.alibaba.fastjson.JSON;\r
26 import java.util.HashMap;\r
27 import javax.ws.rs.core.MediaType;\r
28 import lombok.Getter;\r
29 import lombok.Setter;\r
30 import org.apache.http.HttpResponse;\r
31 import org.apache.http.HttpStatus;\r
32 import org.apache.http.entity.StringEntity;\r
33 import org.jvnet.hk2.annotations.Service;\r
34 import org.onap.holmes.common.utils.HttpsUtils;\r
35 \r
36 @Getter\r
37 @Setter\r
38 @Service\r
39 @Slf4j\r
40 public class Publisher {\r
41 \r
42     private String topic;\r
43     private String url;\r
44     private String authInfo;\r
45     private String authExpDate;\r
46 \r
47     public boolean publish(PolicyMsg msg) throws CorrelationException {\r
48         String content;\r
49         try {\r
50             content = JSON.toJSONString(msg);\r
51         } catch (Exception e) {\r
52             throw new CorrelationException("Failed to convert the message object to a json string.",\r
53                     e);\r
54         }\r
55         HttpResponse httpResponse;\r
56         HashMap<String, String> headers = new HashMap<>();\r
57         headers.put("Accept", MediaType.APPLICATION_JSON);\r
58         headers.put("Content-Type", MediaType.APPLICATION_JSON);\r
59         CloseableHttpClient httpClient = null;\r
60         HttpPost httpPost = new HttpPost(url);\r
61         try {\r
62             httpClient = HttpsUtils.getHttpClient(HttpsUtils.DEFUALT_TIMEOUT);\r
63             httpResponse = HttpsUtils.post(httpPost, headers, new HashMap<>(), new StringEntity(content, "utf-8"), httpClient);\r
64         } catch (Exception e) {\r
65             throw new CorrelationException("Failed to connect to DCAE.", e);\r
66         } finally {\r
67             httpPost.releaseConnection();\r
68             if (httpClient != null) {\r
69                 try {\r
70                     httpClient.close();\r
71                 } catch (IOException e) {\r
72                     log.warn("Failed to close http client!");\r
73                 }\r
74             }\r
75         }\r
76         return checkStatus(httpResponse);\r
77     }\r
78 \r
79     private boolean checkStatus(HttpResponse httpResponse) {\r
80         return (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) ? true : false;\r
81     }\r
82 }\r