164d9172578d0e9062633851c365ffd59b9c2dd2
[cps.git] /
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2022-2024 Nordix Foundation
4  *  Modifications Copyright (C) 2022 Bell Canada
5  *  Modifications Copyright (C) 2024 TechMahindra Ltd.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *
11  *        http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  *
19  *  SPDX-License-Identifier: Apache-2.0
20  *  ============LICENSE_END=========================================================
21  */
22
23 package org.onap.cps.ncmp.impl.inventory;
24
25 import static org.onap.cps.ncmp.api.NcmpResponseStatus.ALTERNATE_ID_ALREADY_ASSOCIATED;
26 import static org.onap.cps.ncmp.api.NcmpResponseStatus.CM_HANDLES_NOT_FOUND;
27 import static org.onap.cps.ncmp.api.NcmpResponseStatus.CM_HANDLE_INVALID_ID;
28 import static org.onap.cps.ncmp.impl.inventory.CmHandleRegistrationServicePropertyHandler.PropertyType.DMI_PROPERTY;
29 import static org.onap.cps.ncmp.impl.inventory.CmHandleRegistrationServicePropertyHandler.PropertyType.PUBLIC_PROPERTY;
30 import static org.onap.cps.ncmp.impl.inventory.NcmpPersistence.NCMP_DATASPACE_NAME;
31 import static org.onap.cps.ncmp.impl.inventory.NcmpPersistence.NCMP_DMI_REGISTRY_ANCHOR;
32 import static org.onap.cps.ncmp.impl.inventory.NcmpPersistence.NCMP_DMI_REGISTRY_PARENT;
33
34 import com.google.common.collect.ImmutableMap;
35 import java.time.OffsetDateTime;
36 import java.util.ArrayList;
37 import java.util.Collection;
38 import java.util.HashMap;
39 import java.util.HashSet;
40 import java.util.LinkedHashMap;
41 import java.util.List;
42 import java.util.Map;
43 import java.util.regex.Matcher;
44 import java.util.regex.Pattern;
45 import lombok.RequiredArgsConstructor;
46 import lombok.extern.slf4j.Slf4j;
47 import org.onap.cps.api.CpsDataService;
48 import org.onap.cps.ncmp.api.impl.utils.AlternateIdChecker;
49 import org.onap.cps.ncmp.api.inventory.models.CmHandleRegistrationResponse;
50 import org.onap.cps.ncmp.api.inventory.models.NcmpServiceCmHandle;
51 import org.onap.cps.ncmp.impl.inventory.models.YangModelCmHandle;
52 import org.onap.cps.ncmp.impl.utils.YangDataConverter;
53 import org.onap.cps.spi.exceptions.DataNodeNotFoundException;
54 import org.onap.cps.spi.exceptions.DataValidationException;
55 import org.onap.cps.spi.model.DataNode;
56 import org.onap.cps.spi.model.DataNodeBuilder;
57 import org.onap.cps.utils.ContentType;
58 import org.onap.cps.utils.JsonObjectMapper;
59 import org.springframework.stereotype.Service;
60 import org.springframework.util.StringUtils;
61
62 @Slf4j
63 @Service
64 @RequiredArgsConstructor
65 //Accepting the security hotspot as the string checked is generated from inside code and not user input.
66 @SuppressWarnings("squid:S5852")
67 public class CmHandleRegistrationServicePropertyHandler {
68
69     private final InventoryPersistence inventoryPersistence;
70     private final CpsDataService cpsDataService;
71     private final JsonObjectMapper jsonObjectMapper;
72     private final AlternateIdChecker alternateIdChecker;
73
74     /**
75      * Iterates over incoming updatedNcmpServiceCmHandles and update the dataNodes based on the updated attributes.
76      * The attributes which are not passed will remain as is.
77      *
78      * @param updatedNcmpServiceCmHandles collection of CmHandles
79      */
80     public List<CmHandleRegistrationResponse> updateCmHandleProperties(
81             final Collection<NcmpServiceCmHandle> updatedNcmpServiceCmHandles) {
82         final Collection<String> rejectedCmHandleIds = alternateIdChecker
83             .getIdsOfCmHandlesWithRejectedAlternateId(updatedNcmpServiceCmHandles, AlternateIdChecker.Operation.UPDATE);
84         final List<CmHandleRegistrationResponse> failureResponses =
85             CmHandleRegistrationResponse.createFailureResponses(rejectedCmHandleIds, ALTERNATE_ID_ALREADY_ASSOCIATED);
86         final List<CmHandleRegistrationResponse> cmHandleRegistrationResponses = new ArrayList<>(failureResponses);
87         for (final NcmpServiceCmHandle updatedNcmpServiceCmHandle : updatedNcmpServiceCmHandles) {
88             final String cmHandleId = updatedNcmpServiceCmHandle.getCmHandleId();
89             if (!rejectedCmHandleIds.contains(cmHandleId)) {
90                 try {
91                     final DataNode existingCmHandleDataNode = inventoryPersistence
92                             .getCmHandleDataNodeByCmHandleId(cmHandleId).iterator().next();
93                     processUpdates(existingCmHandleDataNode, updatedNcmpServiceCmHandle);
94                     cmHandleRegistrationResponses.add(CmHandleRegistrationResponse.createSuccessResponse(cmHandleId));
95                 } catch (final DataNodeNotFoundException e) {
96                     log.error("Unable to find dataNode for cmHandleId : {} , caused by : {}", cmHandleId,
97                             e.getMessage());
98                     cmHandleRegistrationResponses.add(
99                             CmHandleRegistrationResponse.createFailureResponse(cmHandleId, CM_HANDLES_NOT_FOUND));
100                 } catch (final DataValidationException e) {
101                     log.error("Unable to update cm handle : {}, caused by : {}", cmHandleId, e.getMessage());
102                     cmHandleRegistrationResponses.add(
103                             CmHandleRegistrationResponse.createFailureResponse(cmHandleId, CM_HANDLE_INVALID_ID));
104                 } catch (final Exception exception) {
105                     log.error("Unable to update cmHandle : {} , caused by : {}", cmHandleId, exception.getMessage());
106                     cmHandleRegistrationResponses.add(
107                             CmHandleRegistrationResponse.createFailureResponse(cmHandleId, exception));
108                 }
109             }
110         }
111         return cmHandleRegistrationResponses;
112     }
113
114     private void processUpdates(final DataNode existingCmHandleDataNode,
115                                 final NcmpServiceCmHandle updatedNcmpServiceCmHandle) {
116         setAndUpdateCmHandleField(
117             updatedNcmpServiceCmHandle.getCmHandleId(), "alternate-id", updatedNcmpServiceCmHandle.getAlternateId());
118         updateDataProducerIdentifier(existingCmHandleDataNode, updatedNcmpServiceCmHandle);
119         if (!updatedNcmpServiceCmHandle.getPublicProperties().isEmpty()) {
120             updateProperties(existingCmHandleDataNode, PUBLIC_PROPERTY,
121                 updatedNcmpServiceCmHandle.getPublicProperties());
122         }
123         if (!updatedNcmpServiceCmHandle.getDmiProperties().isEmpty()) {
124             updateProperties(existingCmHandleDataNode, DMI_PROPERTY, updatedNcmpServiceCmHandle.getDmiProperties());
125         }
126     }
127
128     private void updateDataProducerIdentifier(final DataNode cmHandleDataNode,
129                                               final NcmpServiceCmHandle ncmpServiceCmHandle) {
130         final String newDataProducerIdentifier = ncmpServiceCmHandle.getDataProducerIdentifier();
131         if (StringUtils.hasText(newDataProducerIdentifier)) {
132             final YangModelCmHandle yangModelCmHandle =
133                 YangDataConverter.convertCmHandleToYangModel(cmHandleDataNode);
134             final String existingDataProducerIdentifier = yangModelCmHandle.getDataProducerIdentifier();
135             if (StringUtils.hasText(existingDataProducerIdentifier)) {
136                 if (!existingDataProducerIdentifier.equals(newDataProducerIdentifier)) {
137                     log.warn("Unable to update dataProducerIdentifier for cmHandle {}. "
138                             + "Value for dataProducerIdentifier has been set previously.",
139                         ncmpServiceCmHandle.getCmHandleId());
140                 } else {
141                     log.debug("dataProducerIdentifier for cmHandle {} is already set to {}.",
142                         ncmpServiceCmHandle.getCmHandleId(), newDataProducerIdentifier);
143                 }
144             } else {
145                 setAndUpdateCmHandleField(
146                     yangModelCmHandle.getId(), "data-producer-identifier", newDataProducerIdentifier);
147             }
148         }
149     }
150
151     private void updateProperties(final DataNode existingCmHandleDataNode, final PropertyType propertyType,
152                                   final Map<String, String> updatedProperties) {
153         final Collection<DataNode> replacementPropertyDataNodes =
154                 getReplacementDataNodes(existingCmHandleDataNode, propertyType, updatedProperties);
155         replacementPropertyDataNodes.addAll(
156                 getUnchangedPropertyDataNodes(existingCmHandleDataNode, propertyType, updatedProperties));
157         if (replacementPropertyDataNodes.isEmpty()) {
158             removeAllProperties(existingCmHandleDataNode, propertyType);
159         } else {
160             inventoryPersistence.replaceListContent(existingCmHandleDataNode.getXpath(), replacementPropertyDataNodes);
161         }
162     }
163
164     private void removeAllProperties(final DataNode existingCmHandleDataNode, final PropertyType propertyType) {
165         existingCmHandleDataNode.getChildDataNodes().forEach(dataNode -> {
166             final Matcher matcher = propertyType.propertyXpathPattern.matcher(dataNode.getXpath());
167             if (matcher.find()) {
168                 log.info("Deleting dataNode with xpath : [{}]", dataNode.getXpath());
169                 inventoryPersistence.deleteDataNode(dataNode.getXpath());
170             }
171         });
172     }
173
174     private Collection<DataNode> getUnchangedPropertyDataNodes(final DataNode existingCmHandleDataNode,
175                                                                final PropertyType propertyType,
176                                                                final Map<String, String> updatedProperties) {
177         final Collection<DataNode> unchangedPropertyDataNodes = new HashSet<>();
178         for (final DataNode existingPropertyDataNode : existingCmHandleDataNode.getChildDataNodes()) {
179             final Matcher matcher = propertyType.propertyXpathPattern.matcher(existingPropertyDataNode.getXpath());
180             if (matcher.find()) {
181                 final String keyName = matcher.group(2);
182                 if (!updatedProperties.containsKey(keyName)) {
183                     unchangedPropertyDataNodes.add(existingPropertyDataNode);
184                 }
185             }
186         }
187         return unchangedPropertyDataNodes;
188     }
189
190     private Collection<DataNode> getReplacementDataNodes(final DataNode existingCmHandleDataNode,
191                                                          final PropertyType propertyType,
192                                                          final Map<String, String> updatedProperties) {
193         final Collection<DataNode> replacementPropertyDataNodes = new HashSet<>();
194         updatedProperties.forEach((updatedAttributeKey, updatedAttributeValue) -> {
195             final String propertyXpath = getAttributeXpath(existingCmHandleDataNode, propertyType, updatedAttributeKey);
196             if (updatedAttributeValue != null) {
197                 log.info("Creating a new DataNode with xpath {} , key : {} and value : {}", propertyXpath,
198                         updatedAttributeKey, updatedAttributeValue);
199                 replacementPropertyDataNodes.add(
200                         buildDataNode(propertyXpath, updatedAttributeKey, updatedAttributeValue));
201             }
202         });
203         return replacementPropertyDataNodes;
204     }
205
206     private String getAttributeXpath(final DataNode cmHandle, final PropertyType propertyType,
207                                      final String attributeKey) {
208         return cmHandle.getXpath() + "/" + propertyType.xpathPrefix + String.format("[@name='%s']", attributeKey);
209     }
210
211     private DataNode buildDataNode(final String xpath, final String attributeKey, final String attributeValue) {
212         final Map<String, String> updatedLeaves = new LinkedHashMap<>(1);
213         updatedLeaves.put("name", attributeKey);
214         updatedLeaves.put("value", attributeValue);
215         log.debug("Building a new node with xpath {} with leaves (name : {} , value : {})", xpath, attributeKey,
216                 attributeValue);
217         return new DataNodeBuilder().withXpath(xpath).withLeaves(ImmutableMap.copyOf(updatedLeaves)).build();
218     }
219
220     private void setAndUpdateCmHandleField(final String cmHandleIdToUpdate, final String fieldName,
221                                            final String newFieldValue) {
222         final Map<String, Map<String, String>> dmiRegistryData = new HashMap<>(1);
223         final Map<String, String> cmHandleData = new HashMap<>(2);
224         cmHandleData.put("id", cmHandleIdToUpdate);
225         cmHandleData.put(fieldName, newFieldValue);
226         dmiRegistryData.put("cm-handles", cmHandleData);
227         cpsDataService.updateNodeLeaves(NCMP_DATASPACE_NAME, NCMP_DMI_REGISTRY_ANCHOR, NCMP_DMI_REGISTRY_PARENT,
228                 jsonObjectMapper.asJsonString(dmiRegistryData), OffsetDateTime.now(), ContentType.JSON);
229         log.debug("Updating {} for cmHandle {} with value : {})", fieldName, cmHandleIdToUpdate, newFieldValue);
230     }
231
232     enum PropertyType {
233         DMI_PROPERTY("additional-properties"), PUBLIC_PROPERTY("public-properties");
234
235         private static final String LIST_INDEX_PATTERN = "\\[@(\\w+)[^\\/]'([^']+)']";
236
237         final String xpathPrefix;
238         final Pattern propertyXpathPattern;
239
240         PropertyType(final String xpathPrefix) {
241             this.xpathPrefix = xpathPrefix;
242             this.propertyXpathPattern = Pattern.compile(xpathPrefix + LIST_INDEX_PATTERN);
243         }
244     }
245 }