Change HTTP Requests into HTTPS Ones
[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 org.onap.holmes.common.dmaap.entity.PolicyMsg;\r
19 import org.onap.holmes.common.exception.CorrelationException;\r
20 import com.alibaba.fastjson.JSON;\r
21 import java.util.HashMap;\r
22 import javax.ws.rs.core.MediaType;\r
23 import lombok.Getter;\r
24 import lombok.Setter;\r
25 import org.apache.http.HttpResponse;\r
26 import org.apache.http.HttpStatus;\r
27 import org.apache.http.entity.StringEntity;\r
28 import org.jvnet.hk2.annotations.Service;\r
29 import org.onap.holmes.common.utils.HttpsUtils;\r
30 \r
31 @Getter\r
32 @Setter\r
33 @Service\r
34 public class Publisher {\r
35 \r
36     private String topic;\r
37     private String url;\r
38     private String authInfo;\r
39     private String authExpDate;\r
40 \r
41     public boolean publish(PolicyMsg msg) throws CorrelationException {\r
42         String content;\r
43         try {\r
44             content = JSON.toJSONString(msg);\r
45         } catch (Exception e) {\r
46             throw new CorrelationException("Failed to convert the message object to a json string.",\r
47                     e);\r
48         }\r
49         HttpResponse httpResponse;\r
50         HashMap<String, String> headers = new HashMap<>();\r
51         headers.put("Accept", MediaType.APPLICATION_JSON);\r
52         headers.put("Content-Type", MediaType.APPLICATION_JSON);\r
53         try {\r
54             httpResponse = HttpsUtils.post(url, headers, new HashMap<>(), new StringEntity(content, "utf-8"));\r
55         } catch (Exception e) {\r
56             throw new CorrelationException("Failed to connect to DCAE.", e);\r
57         }\r
58         return checkStatus(httpResponse);\r
59     }\r
60 \r
61     private boolean checkStatus(HttpResponse httpResponse) {\r
62         return (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) ? true : false;\r
63     }\r
64 }\r