a94d664de9e48308febe62f676c19a8b23314731
[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.ncmp.cmhandle.event.lcm.LcmEvent;
27 import org.springframework.beans.factory.annotation.Value;
28 import org.springframework.kafka.KafkaException;
29 import org.springframework.stereotype.Service;
30
31 /**
32  * LcmEventsService to call the publisher and publish on the dedicated topic.
33  */
34
35 @Slf4j
36 @Service
37 @RequiredArgsConstructor
38 public class LcmEventsService {
39
40     private final LcmEventsPublisher lcmEventsPublisher;
41
42     @Value("${app.lcm.events.topic:ncmp-events}")
43     private String topicName;
44
45     @Value("${notification.enabled:true}")
46     private boolean notificationsEnabled;
47
48     /**
49      * Publish the LcmEvent to the public topic.
50      *
51      * @param cmHandleId Cm Handle Id
52      * @param lcmEvent  Lcm Event
53      */
54     @Timed(value = "cps.ncmp.lcm.events.publish",
55         description = "Time taken to publish a LCM event")
56     public void publishLcmEvent(final String cmHandleId, final LcmEvent lcmEvent) {
57         if (notificationsEnabled) {
58             try {
59                 lcmEventsPublisher.publishEvent(topicName, cmHandleId, lcmEvent);
60             } catch (final KafkaException e) {
61                 log.error("Unable to publish message to topic : {} and cause : {}", topicName, e.getMessage());
62             }
63         } else {
64             log.debug("Notifications disabled.");
65         }
66     }
67 }