fix https bug
[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.impl.client.CloseableHttpClient;\r
21 import org.onap.holmes.common.dmaap.entity.PolicyMsg;\r
22 import org.onap.holmes.common.exception.CorrelationException;\r
23 import com.alibaba.fastjson.JSON;\r
24 import java.util.HashMap;\r
25 import javax.ws.rs.core.MediaType;\r
26 import lombok.Getter;\r
27 import lombok.Setter;\r
28 import org.apache.http.HttpResponse;\r
29 import org.apache.http.HttpStatus;\r
30 import org.apache.http.entity.StringEntity;\r
31 import org.jvnet.hk2.annotations.Service;\r
32 import org.onap.holmes.common.utils.HttpsUtils;\r
33 \r
34 @Getter\r
35 @Setter\r
36 @Service\r
37 @Slf4j\r
38 public class Publisher {\r
39 \r
40     private String topic;\r
41     private String url;\r
42     private String authInfo;\r
43     private String authExpDate;\r
44 \r
45     public boolean publish(PolicyMsg msg) throws CorrelationException {\r
46         String content;\r
47         try {\r
48             content = JSON.toJSONString(msg);\r
49         } catch (Exception e) {\r
50             throw new CorrelationException("Failed to convert the message object to a json string.",\r
51                     e);\r
52         }\r
53         HttpResponse httpResponse;\r
54         HashMap<String, String> headers = new HashMap<>();\r
55         headers.put("Accept", MediaType.APPLICATION_JSON);\r
56         headers.put("Content-Type", MediaType.APPLICATION_JSON);\r
57         CloseableHttpClient httpClient = null;\r
58         try {\r
59             httpClient = HttpsUtils.getHttpClient(HttpsUtils.DEFUALT_TIMEOUT);\r
60             httpResponse = HttpsUtils.post(url, headers, new HashMap<>(), new StringEntity(content, "utf-8"), httpClient);\r
61         } catch (Exception e) {\r
62             throw new CorrelationException("Failed to connect to DCAE.", e);\r
63         } finally {\r
64             if (httpClient != null) {\r
65                 try {\r
66                     httpClient.close();\r
67                 } catch (IOException e) {\r
68                     log.warn("Failed to close http client!");\r
69                 }\r
70             }\r
71         }\r
72         return checkStatus(httpResponse);\r
73     }\r
74 \r
75     private boolean checkStatus(HttpResponse httpResponse) {\r
76         return (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) ? true : false;\r
77     }\r
78 }\r