Process data-updated event asynchronously
[cps.git] / cps-service / src / main / java / org / onap / cps / notification / CpsDataUpdatedEventFactory.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (c) 2021 Bell Canada.
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.notification;
22
23 import java.net.URI;
24 import java.net.URISyntaxException;
25 import java.time.OffsetDateTime;
26 import java.time.format.DateTimeFormatter;
27 import java.util.UUID;
28 import org.onap.cps.api.CpsAdminService;
29 import org.onap.cps.api.CpsDataService;
30 import org.onap.cps.event.model.Content;
31 import org.onap.cps.event.model.CpsDataUpdatedEvent;
32 import org.onap.cps.event.model.CpsDataUpdatedEvent.Schema;
33 import org.onap.cps.event.model.Data;
34 import org.onap.cps.spi.FetchDescendantsOption;
35 import org.onap.cps.spi.model.Anchor;
36 import org.onap.cps.spi.model.DataNode;
37 import org.onap.cps.utils.DataMapUtils;
38 import org.springframework.stereotype.Component;
39
40 @Component
41 public class CpsDataUpdatedEventFactory {
42
43     private static final URI EVENT_SOURCE;
44     private static final String EVENT_TYPE = "org.onap.cps.data-updated-event";
45     private static final DateTimeFormatter dateTimeFormatter =
46         DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSSZ");
47
48     static {
49         try {
50             EVENT_SOURCE = new URI("urn:cps:org.onap.cps");
51         } catch (final URISyntaxException e) {
52             // As it is fixed string, I don't expect to see this error
53             throw new IllegalArgumentException(e);
54         }
55     }
56
57     private CpsDataService cpsDataService;
58     private CpsAdminService cpsAdminService;
59
60     public CpsDataUpdatedEventFactory(final CpsDataService cpsDataService, final CpsAdminService cpsAdminService) {
61         this.cpsDataService = cpsDataService;
62         this.cpsAdminService = cpsAdminService;
63     }
64
65     /**
66      * Generates CPS Data Updated event.
67      *
68      * @param dataspaceName dataspaceName
69      * @param anchorName    anchorName
70      * @return CpsDataUpdatedEvent
71      */
72     public CpsDataUpdatedEvent createCpsDataUpdatedEvent(final String dataspaceName, final String anchorName) {
73         final var dataNode = cpsDataService
74             .getDataNode(dataspaceName, anchorName, "/", FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS);
75         final var anchor = cpsAdminService.getAnchor(dataspaceName, anchorName);
76         return toCpsDataUpdatedEvent(anchor, dataNode);
77     }
78
79     private CpsDataUpdatedEvent toCpsDataUpdatedEvent(final Anchor anchor, final DataNode dataNode) {
80         final var cpsDataUpdatedEvent = new CpsDataUpdatedEvent();
81         cpsDataUpdatedEvent.withContent(createContent(anchor, dataNode));
82         cpsDataUpdatedEvent.withId(UUID.randomUUID().toString());
83         cpsDataUpdatedEvent.withSchema(Schema.URN_CPS_ORG_ONAP_CPS_DATA_UPDATED_EVENT_SCHEMA_1_1_0_SNAPSHOT);
84         cpsDataUpdatedEvent.withSource(EVENT_SOURCE);
85         cpsDataUpdatedEvent.withType(EVENT_TYPE);
86         return cpsDataUpdatedEvent;
87     }
88
89     private Data createData(final DataNode dataNode) {
90         final var data = new Data();
91         DataMapUtils.toDataMap(dataNode).forEach(data::setAdditionalProperty);
92         return data;
93     }
94
95     private Content createContent(final Anchor anchor, final DataNode dataNode) {
96         final var content = new Content();
97         content.withAnchorName(anchor.getName());
98         content.withDataspaceName(anchor.getDataspaceName());
99         content.withSchemaSetName(anchor.getSchemaSetName());
100         content.withData(createData(dataNode));
101         content.withObservedTimestamp(dateTimeFormatter.format(OffsetDateTime.now()));
102         return content;
103     }
104 }