2eba83053babc453686b341f09589c8eb91d3fda
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / impl / event / lcm / LcmEventsService.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2022-2023 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.event.lcm;
22
23 import io.micrometer.core.annotation.Timed;
24 import lombok.RequiredArgsConstructor;
25 import lombok.extern.slf4j.Slf4j;
26 import org.onap.cps.ncmp.api.impl.event.EventsPublisher;
27 import org.onap.ncmp.cmhandle.event.lcm.LcmEvent;
28 import org.springframework.beans.factory.annotation.Value;
29 import org.springframework.kafka.KafkaException;
30 import org.springframework.stereotype.Service;
31
32 /**
33  * LcmEventsService to call the publisher and publish on the dedicated topic.
34  */
35
36 @Slf4j
37 @Service
38 @RequiredArgsConstructor
39 public class LcmEventsService {
40
41     private final EventsPublisher<LcmEvent> eventsPublisher;
42
43     @Value("${app.lcm.events.topic:ncmp-events}")
44     private String topicName;
45
46     @Value("${notification.enabled:true}")
47     private boolean notificationsEnabled;
48
49     /**
50      * Publish the LcmEvent to the public topic.
51      *
52      * @param cmHandleId Cm Handle Id
53      * @param lcmEvent  Lcm Event
54      */
55     @Timed(value = "cps.ncmp.lcm.events.publish",
56         description = "Time taken to publish a LCM event")
57     public void publishLcmEvent(final String cmHandleId, final LcmEvent lcmEvent) {
58         if (notificationsEnabled) {
59             try {
60                 eventsPublisher.publishEvent(topicName, cmHandleId, lcmEvent);
61             } catch (final KafkaException e) {
62                 log.error("Unable to publish message to topic : {} and cause : {}", topicName, e.getMessage());
63             }
64         } else {
65             log.debug("Notifications disabled.");
66         }
67     }
68 }