b0227da6f1cd6bdf63b02618a3683108f4831f2d
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt
4  * =================================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18
19 package org.onap.ccsdk.features.sdnr.wt.mountpointregistrar.impl;
20
21 import com.fasterxml.jackson.databind.JsonNode;
22 import com.fasterxml.jackson.databind.ObjectMapper;
23 import java.io.IOException;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.SeverityType;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27
28 public class DMaaPFaultVESMsgConsumer extends DMaaPVESMsgConsumerImpl {
29
30     private static final Logger LOG = LoggerFactory.getLogger(DMaaPFaultVESMsgConsumer.class);
31
32     //private static int faultCounter = 0;
33     private static final String DEFAULT_SDNRUSER = "admin";
34     private static final String DEFAULT_SDNRPASSWD = "admin";
35
36     private final GeneralConfig generalConfig;
37
38     public DMaaPFaultVESMsgConsumer(GeneralConfig generalConfig) {
39         this.generalConfig = generalConfig;
40     }
41
42     @Override
43     public void processMsg(String msg) throws Exception {
44         String faultNodeId;
45         String faultOccurrenceTime;
46         String faultObjectId;
47         String faultReason;
48         String faultSeverity;
49         int faultSequence;
50         ObjectMapper oMapper = new ObjectMapper();
51         JsonNode dmaapMessageRootNode;
52
53         LOG.info("Fault VES Message is - {}", msg);
54         try {
55             dmaapMessageRootNode = oMapper.readTree(msg);
56             faultNodeId = dmaapMessageRootNode.at("/event/commonEventHeader/sourceName").textValue();
57             faultOccurrenceTime =
58                     dmaapMessageRootNode.at("/event/faultFields/alarmAdditionalInformation/eventTime").textValue();
59             faultObjectId = dmaapMessageRootNode.at("/event/faultFields/alarmInterfaceA").textValue();
60             faultReason = dmaapMessageRootNode.at("/event/faultFields/specificProblem").textValue();
61             faultSeverity = dmaapMessageRootNode.at("/event/faultFields/eventSeverity").textValue();
62             faultSequence = dmaapMessageRootNode.at("/event/commonEventHeader/sequence").intValue();
63             //faultCounter++;
64
65             if (faultSeverity.equalsIgnoreCase("critical")) {
66                 faultSeverity = SeverityType.Critical.toString();
67             } else if (faultSeverity.equalsIgnoreCase("major")) {
68                 faultSeverity = SeverityType.Major.toString();
69             } else if (faultSeverity.equalsIgnoreCase("minor")) {
70                 faultSeverity = SeverityType.Minor.toString();
71             } else if (faultSeverity.equalsIgnoreCase("warning")) {
72                 faultSeverity = SeverityType.Warning.toString();
73             } else if (faultSeverity.equalsIgnoreCase("nonalarmed")) {
74                 faultSeverity = SeverityType.NonAlarmed.toString();
75             } else {
76                 faultSeverity = SeverityType.NonAlarmed.toString();
77             }
78
79             String baseUrl = getBaseUrl();
80             String sdnrUser = getSDNRUser();
81             String sdnrPasswd = getSDNRPasswd();
82
83             FaultNotificationClient faultClient = getFaultNotificationClient(baseUrl);
84             faultClient.setAuthorization(sdnrUser, sdnrPasswd);
85             faultClient.sendFaultNotification(faultNodeId, Integer.toString(faultSequence), faultOccurrenceTime,
86                     faultObjectId, faultReason, faultSeverity);
87
88         } catch (IOException e) {
89             LOG.info("Cannot parse json object ");
90             throw new Exception("Cannot parse json object", e);
91         }
92     }
93
94     public String getBaseUrl() {
95         return generalConfig.getBaseUrl();
96     }
97
98     public String getSDNRUser() {
99         return generalConfig.getSDNRUser() != null ? generalConfig.getSDNRUser() : DEFAULT_SDNRUSER;
100     }
101
102     public String getSDNRPasswd() {
103         return generalConfig.getSDNRPasswd() != null ? generalConfig.getSDNRPasswd() : DEFAULT_SDNRPASSWD;
104     }
105
106     public FaultNotificationClient getFaultNotificationClient(String baseUrl) {
107         return new FaultNotificationClient(baseUrl);
108     }
109 }