Merge "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.Data;
33 import org.onap.cps.spi.FetchDescendantsOption;
34 import org.onap.cps.spi.model.Anchor;
35 import org.onap.cps.spi.model.DataNode;
36 import org.onap.cps.utils.DataMapUtils;
37 import org.springframework.stereotype.Component;
38
39 @Component
40 public class CpsDataUpdatedEventFactory {
41
42     private static final URI EVENT_SCHEMA;
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_SCHEMA = new URI("urn:cps:org.onap.cps:data-updated-event-schema:v1");
51             EVENT_SOURCE = new URI("urn:cps:org.onap.cps");
52         } catch (final URISyntaxException e) {
53             // As it is fixed string, I don't expect to see this error
54             throw new IllegalArgumentException(e);
55         }
56     }
57
58     private final CpsDataService cpsDataService;
59     private final CpsAdminService cpsAdminService;
60
61     public CpsDataUpdatedEventFactory(final CpsDataService cpsDataService, final CpsAdminService cpsAdminService) {
62         this.cpsDataService = cpsDataService;
63         this.cpsAdminService = cpsAdminService;
64     }
65
66     /**
67      * Generates CPS Data Updated event.
68      *
69      * @param dataspaceName dataspaceName
70      * @param anchorName    anchorName
71      * @return CpsDataUpdatedEvent
72      */
73     public CpsDataUpdatedEvent createCpsDataUpdatedEvent(final String dataspaceName, final String anchorName) {
74         final var dataNode = cpsDataService
75             .getDataNode(dataspaceName, anchorName, "/", FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS);
76         final var anchor = cpsAdminService.getAnchor(dataspaceName, anchorName);
77         return toCpsDataUpdatedEvent(anchor, dataNode);
78     }
79
80     private CpsDataUpdatedEvent toCpsDataUpdatedEvent(final Anchor anchor, final DataNode dataNode) {
81         final var cpsDataUpdatedEvent = new CpsDataUpdatedEvent();
82         cpsDataUpdatedEvent.withContent(createContent(anchor, dataNode));
83         cpsDataUpdatedEvent.withId(UUID.randomUUID().toString());
84         cpsDataUpdatedEvent.withSchema(EVENT_SCHEMA);
85         cpsDataUpdatedEvent.withSource(EVENT_SOURCE);
86         cpsDataUpdatedEvent.withType(EVENT_TYPE);
87         return cpsDataUpdatedEvent;
88     }
89
90     private Data createData(final DataNode dataNode) {
91         final var data = new Data();
92         DataMapUtils.toDataMap(dataNode).forEach(data::setAdditionalProperty);
93         return data;
94     }
95
96     private Content createContent(final Anchor anchor, final DataNode dataNode) {
97         final var content = new Content();
98         content.withAnchorName(anchor.getName());
99         content.withDataspaceName(anchor.getDataspaceName());
100         content.withSchemaSetName(anchor.getSchemaSetName());
101         content.withData(createData(dataNode));
102         content.withObservedTimestamp(dateTimeFormatter.format(OffsetDateTime.now()));
103         return content;
104     }
105 }