Merge "Condense Liquibase steps"
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / init / CmDataSubscriptionModelLoader.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2024 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.init;
22
23 import static org.onap.cps.ncmp.api.impl.ncmppersistence.NcmpPersistence.NCMP_DATASPACE_NAME;
24 import static org.onap.cps.utils.ContentType.JSON;
25
26 import java.time.OffsetDateTime;
27 import lombok.extern.slf4j.Slf4j;
28 import org.onap.cps.api.CpsAnchorService;
29 import org.onap.cps.api.CpsDataService;
30 import org.onap.cps.api.CpsDataspaceService;
31 import org.onap.cps.api.CpsModuleService;
32 import org.onap.cps.ncmp.api.impl.exception.NcmpStartUpException;
33 import org.onap.cps.ncmp.api.impl.operations.DatastoreType;
34 import org.onap.cps.spi.exceptions.AlreadyDefinedException;
35 import org.springframework.stereotype.Service;
36
37 @Slf4j
38 @Service
39 public class CmDataSubscriptionModelLoader extends AbstractModelLoader {
40
41     private static final String MODEL_FILENAME = "cm-data-subscriptions@2024-02-12.yang";
42     private static final String SCHEMASET_NAME = "cm-data-subscriptions";
43     private static final String ANCHOR_NAME = "cm-data-subscriptions";
44     private static final String REGISTRY_DATANODE_NAME = "datastores";
45
46     public CmDataSubscriptionModelLoader(final CpsDataspaceService cpsDataspaceService,
47             final CpsModuleService cpsModuleService, final CpsAnchorService cpsAnchorService,
48             final CpsDataService cpsDataService) {
49         super(cpsDataspaceService, cpsModuleService, cpsAnchorService, cpsDataService);
50     }
51
52     @Override
53     public void onboardOrUpgradeModel() {
54         onboardSubscriptionModels();
55         log.info("Subscription Models onboarded successfully");
56     }
57
58     private void onboardSubscriptionModels() {
59         createDataspace(NCMP_DATASPACE_NAME);
60         createSchemaSet(NCMP_DATASPACE_NAME, SCHEMASET_NAME, MODEL_FILENAME);
61         createAnchor(NCMP_DATASPACE_NAME, SCHEMASET_NAME, ANCHOR_NAME);
62         createTopLevelDataNode(NCMP_DATASPACE_NAME, ANCHOR_NAME, REGISTRY_DATANODE_NAME);
63         createDatastore(DatastoreType.PASSTHROUGH_OPERATIONAL.getDatastoreName(),
64                 DatastoreType.PASSTHROUGH_RUNNING.getDatastoreName());
65     }
66
67     private void createDatastore(final String... datastoreNames) {
68         for (final String datastoreName : datastoreNames) {
69             final String nodeData = "{\"datastore\":[{\"name\":\"" + datastoreName + "\",\"cm-handles\":{}}]}";
70             try {
71                 cpsDataService.saveData(NCMP_DATASPACE_NAME, ANCHOR_NAME, "/" + REGISTRY_DATANODE_NAME, nodeData,
72                         OffsetDateTime.now(), JSON);
73             } catch (final AlreadyDefinedException exception) {
74                 log.info("Creating new child data node '{}' for data node '{}' failed as data node already exists",
75                         datastoreName, REGISTRY_DATANODE_NAME);
76             } catch (final Exception exception) {
77                 log.error("Creating data node failed: {}", exception.getMessage());
78                 throw new NcmpStartUpException("Creating data node failed", exception.getMessage());
79             }
80         }
81     }
82
83 }