0f96181c6e3f56a143f799df18888c648682ceaf
[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 com.fasterxml.jackson.core.JsonProcessingException;\r
19 import com.fasterxml.jackson.databind.ObjectMapper;\r
20 import javax.ws.rs.client.Client;\r
21 import javax.ws.rs.client.ClientBuilder;\r
22 import javax.ws.rs.client.Entity;\r
23 import javax.ws.rs.client.WebTarget;\r
24 import javax.ws.rs.core.MediaType;\r
25 import javax.ws.rs.core.Response;\r
26 import lombok.Getter;\r
27 import lombok.Setter;\r
28 import org.apache.http.HttpStatus;\r
29 import org.glassfish.jersey.client.ClientConfig;\r
30 import org.jvnet.hk2.annotations.Service;\r
31 import org.onap.holmes.common.dmaap.entity.PolicyMsg;\r
32 import org.onap.holmes.common.exception.CorrelationException;\r
33 \r
34 @Getter\r
35 @Setter\r
36 @Service\r
37 public class Publisher {\r
38 \r
39     private String topic;\r
40     private String url;\r
41     private String authInfo;\r
42     private String authExpDate;\r
43 \r
44     public boolean publish(PolicyMsg msg) throws CorrelationException {\r
45         Client client = ClientBuilder.newClient(new ClientConfig());\r
46         ObjectMapper mapper = new ObjectMapper();\r
47         String content = null;\r
48         try {\r
49             content = mapper.writeValueAsString(msg);\r
50         } catch (JsonProcessingException e) {\r
51             throw new CorrelationException("Failed to convert the message object to a json string.",\r
52                     e);\r
53         }\r
54         WebTarget webTarget = client.target(url);\r
55         Response response = null;\r
56         try {\r
57             response = webTarget.request(MediaType.APPLICATION_JSON)\r
58                     .post(Entity.entity(content, MediaType.APPLICATION_JSON));\r
59         } catch (Exception e) {\r
60             throw new CorrelationException("Failed to connect dcae.", e);\r
61         }\r
62         return checkStatus(response);\r
63     }\r
64 \r
65     private boolean checkStatus(Response response) {\r
66         return (response.getStatus() == HttpStatus.SC_OK) ? true : false;\r
67     }\r
68 }\r