ea72fd217b3b0ef3e87063257f3ffc0204c5bc09
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / impl / events / cmsubscription / CmNotificationSubscriptionDmiOutEventConsumer.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2024 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.ncmp.api.impl.events.cmsubscription;
22
23 import static org.onap.cps.ncmp.api.impl.events.mapper.CloudEventMapper.toTargetEvent;
24
25 import io.cloudevents.CloudEvent;
26 import lombok.extern.slf4j.Slf4j;
27 import org.apache.kafka.clients.consumer.ConsumerRecord;
28 import org.onap.cps.ncmp.events.cmnotificationsubscription_merge1_0_0.dmi_to_ncmp.CmNotificationSubscriptionDmiOutEvent;
29 import org.springframework.kafka.annotation.KafkaListener;
30 import org.springframework.stereotype.Component;
31
32 @Component
33 @Slf4j
34 public class CmNotificationSubscriptionDmiOutEventConsumer {
35
36     /**
37      * Consume the Cm Notification Subscription event from the dmi-plugin.
38      *
39      * @param cmNotificationSubscriptionDmiOutEventConsumerRecord the event to be consumed
40      */
41     @KafkaListener(topics = "${app.ncmp.avc.subscription-response-topic}",
42             containerFactory = "cloudEventConcurrentKafkaListenerContainerFactory")
43     public void consumeCmNotificationSubscriptionDmiOutEvent(
44             final ConsumerRecord<String, CloudEvent> cmNotificationSubscriptionDmiOutEventConsumerRecord) {
45         final CloudEvent cloudEvent = cmNotificationSubscriptionDmiOutEventConsumerRecord.value();
46         final CmNotificationSubscriptionDmiOutEvent cmNotificationSubscriptionDmiOutEvent =
47                 toTargetEvent(cloudEvent, CmNotificationSubscriptionDmiOutEvent.class);
48         final String correlationId = String.valueOf(cloudEvent.getExtension("correlationid"));
49         if ("subscriptionCreateResponse".equals(cloudEvent.getType()) && cmNotificationSubscriptionDmiOutEvent != null
50                     && correlationId != null) {
51             handleCmSubscriptionCreate(correlationId, cmNotificationSubscriptionDmiOutEvent);
52         }
53     }
54
55     private void handleCmSubscriptionCreate(final String correlationId,
56             final CmNotificationSubscriptionDmiOutEvent cmNotificationSubscriptionDmiOutEvent) {
57         final String subscriptionId = correlationId.split("#")[0];
58         final String dmiPluginName = correlationId.split("#")[1];
59         log.info("Cm Subscription with id : {} handled by the dmi-plugin : {} has the status : {}", subscriptionId,
60                 dmiPluginName, cmNotificationSubscriptionDmiOutEvent.getData().getStatusMessage());
61     }
62 }