7e28744ab35e4122ddc1f253746786ec725d741d
[oam/tr069-adapter.git] / mapper / src / main / java / org / commscope / tr069adapter / mapper / ves / VESNotificationSender.java
1 /*\r
2  * ============LICENSE_START========================================================================\r
3  * ONAP : tr-069-adapter\r
4  * =================================================================================================\r
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
6  * =================================================================================================\r
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
9  * may obtain a copy of the License at\r
10  *\r
11  * http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
14  * either express or implied. See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  * ===============LICENSE_END=======================================================================\r
17  */\r
18 \r
19 package org.commscope.tr069adapter.mapper.ves;\r
20 \r
21 import org.commscope.tr069adapter.acs.common.DeviceInform;\r
22 import org.commscope.tr069adapter.acs.common.DeviceRPCRequest;\r
23 import org.commscope.tr069adapter.acs.common.DeviceRPCResponse;\r
24 import org.commscope.tr069adapter.mapper.MapperConfigProperties;\r
25 import org.commscope.tr069adapter.mapper.acs.impl.PnPPreProvisioningHandler;\r
26 import org.commscope.tr069adapter.mapper.model.NetConfServerDetails;\r
27 import org.commscope.tr069adapter.mapper.model.VESNotification;\r
28 import org.commscope.tr069adapter.mapper.model.VESNotificationResponse;\r
29 import org.slf4j.Logger;\r
30 import org.slf4j.LoggerFactory;\r
31 import org.springframework.beans.factory.annotation.Autowired;\r
32 import org.springframework.stereotype.Component;\r
33 import org.springframework.web.client.RestTemplate;\r
34 \r
35 @Component\r
36 public class VESNotificationSender {\r
37 \r
38   private static final Logger LOG = LoggerFactory.getLogger(VESNotificationSender.class);\r
39 \r
40   @Autowired\r
41   MapperConfigProperties config;\r
42 \r
43   @Autowired\r
44   PnPPreProvisioningHandler pnpPreProvisioningHandler;\r
45 \r
46   @Autowired\r
47   VESNotificationSender vesnotiSender;\r
48 \r
49   @Autowired\r
50   RestTemplate restTemplate;\r
51 \r
52   public VESNotificationResponse sendNotification(DeviceInform deviceInform,\r
53       NetConfServerDetails serverInfo) {\r
54     final String uri = getUri();\r
55     LOG.debug("Posting ves event to ves notifier {}", uri);\r
56 \r
57     VESNotification vesNotifi = new VESNotification();\r
58     if (deviceInform != null) {\r
59       vesNotifi.seteNodeBName(\r
60           pnpPreProvisioningHandler.getEnodeBName(deviceInform.getDeviceDetails().getDeviceId(),\r
61               deviceInform.getDeviceDetails().getSoftwareVersion(),\r
62               deviceInform.getDeviceDetails().getHardwareVersion()));\r
63     } else {\r
64       vesNotifi.seteNodeBName(serverInfo.getEnodeBName());\r
65     }\r
66     vesNotifi.setNetconfDetails(serverInfo);\r
67     vesNotifi.setDevnotification(deviceInform);\r
68 \r
69     return restTemplate.postForObject(uri, vesNotifi, VESNotificationResponse.class);\r
70   }\r
71 \r
72   public DeviceRPCResponse sendEditConfigNotification(DeviceRPCRequest deviceRPCRequest) {\r
73     final String uri = config.getVerConfigUri() + "/editConfig";\r
74     LOG.debug("Posting edit config request to ves agent {}", uri);\r
75     return restTemplate.postForObject(uri, deviceRPCRequest, DeviceRPCResponse.class);\r
76   }\r
77 \r
78   public DeviceRPCResponse sendGetConfigNotification(DeviceRPCRequest deviceRPCRequest) {\r
79     final String uri = config.getVerConfigUri() + "/getConfig";\r
80     LOG.debug("Posting get config request to ves agent {}", uri);\r
81     return restTemplate.postForObject(uri, deviceRPCRequest, DeviceRPCResponse.class);\r
82   }\r
83 \r
84 \r
85   private String getUri() {\r
86     return config.getVesUri();\r
87   }\r
88 \r
89 }\r