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
 
  10  * http://www.apache.org/licenses/LICENSE-2.0
 
  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
 
  16  * ============LICENSE_END==========================================================================
 
  19 package org.onap.ccsdk.features.sdnr.wt.mountpointregistrar.impl;
 
  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;
 
  28 public class DMaaPFaultVESMsgConsumer extends DMaaPVESMsgConsumerImpl {
 
  30     private static final Logger LOG = LoggerFactory.getLogger(DMaaPFaultVESMsgConsumer.class);
 
  32     //private static int faultCounter = 0;
 
  33     private static final String DEFAULT_SDNRUSER = "admin";
 
  34     private static final String DEFAULT_SDNRPASSWD = "admin";
 
  36     private final GeneralConfig generalConfig;
 
  38     public DMaaPFaultVESMsgConsumer(GeneralConfig generalConfig) {
 
  39         this.generalConfig = generalConfig;
 
  43     public void processMsg(String msg) throws Exception {
 
  45         String faultOccurrenceTime;
 
  50         ObjectMapper oMapper = new ObjectMapper();
 
  51         JsonNode dmaapMessageRootNode;
 
  53         LOG.info("Fault VES Message is - {}", msg);
 
  55             dmaapMessageRootNode = oMapper.readTree(msg);
 
  56             faultNodeId = dmaapMessageRootNode.at("/event/commonEventHeader/sourceName").textValue();
 
  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();
 
  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();
 
  76                 faultSeverity = SeverityType.NonAlarmed.toString();
 
  79             String baseUrl = getBaseUrl();
 
  80             String sdnrUser = getSDNRUser();
 
  81             String sdnrPasswd = getSDNRPasswd();
 
  83             FaultNotificationClient faultClient = getFaultNotificationClient(baseUrl);
 
  84             faultClient.setAuthorization(sdnrUser, sdnrPasswd);
 
  85             faultClient.sendFaultNotification(faultNodeId, Integer.toString(faultSequence), faultOccurrenceTime,
 
  86                     faultObjectId, faultReason, faultSeverity);
 
  88         } catch (IOException e) {
 
  89             LOG.info("Cannot parse json object ");
 
  90             throw new Exception("Cannot parse json object", e);
 
  94     public String getBaseUrl() {
 
  95         return generalConfig.getBaseUrl();
 
  98     public String getSDNRUser() {
 
  99         return generalConfig.getSDNRUser() != null ? generalConfig.getSDNRUser() : DEFAULT_SDNRUSER;
 
 102     public String getSDNRPasswd() {
 
 103         return generalConfig.getSDNRPasswd() != null ? generalConfig.getSDNRPasswd() : DEFAULT_SDNRPASSWD;
 
 106     public FaultNotificationClient getFaultNotificationClient(String baseUrl) {
 
 107         return new FaultNotificationClient(baseUrl);