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