9e90eabbc49a4bc6054437b676de575d36cc1ed9
[cps.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (c) 2023-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.impl.cmnotificationsubscription.cmavc;
22
23 import io.cloudevents.CloudEvent;
24 import lombok.RequiredArgsConstructor;
25 import lombok.extern.slf4j.Slf4j;
26 import org.apache.kafka.clients.consumer.ConsumerRecord;
27 import org.onap.cps.events.EventsPublisher;
28 import org.springframework.beans.factory.annotation.Value;
29 import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
30 import org.springframework.kafka.annotation.KafkaListener;
31 import org.springframework.stereotype.Component;
32
33 /**
34  * Listener for AVC events based on Cm Subscriptions.
35  */
36 @Component
37 @Slf4j
38 @RequiredArgsConstructor
39 @ConditionalOnProperty(name = "notification.enabled", havingValue = "true", matchIfMissing = true)
40 public class CmAvcEventConsumer {
41
42
43     @Value("${app.ncmp.avc.cm-events-topic}")
44     private String cmEventsTopicName;
45
46     private final EventsPublisher<CloudEvent> eventsPublisher;
47
48     /**
49      * Incoming AvcEvent in the form of Consumer Record.
50      *
51      * @param cmAvcEventAsConsumerRecord Incoming raw consumer record
52      */
53     @KafkaListener(topics = "${app.dmi.cm-events.topic}",
54             containerFactory = "cloudEventConcurrentKafkaListenerContainerFactory")
55     public void consumeAndForward(
56             final ConsumerRecord<String, CloudEvent> cmAvcEventAsConsumerRecord) {
57         final CloudEvent outgoingAvcEvent = cmAvcEventAsConsumerRecord.value();
58         log.debug("Consuming AVC event {} ...", outgoingAvcEvent);
59         eventsPublisher.publishCloudEvent(cmEventsTopicName, outgoingAvcEvent.getId(), outgoingAvcEvent);
60     }
61 }