326ebf3709f40182f0c1644c33ba8e718d8d43d8
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / utils / SubstitutionFilterConverter.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 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  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.openecomp.sdc.be.tosca.utils;
21
22 import java.util.List;
23 import java.util.Map;
24 import java.util.stream.Collectors;
25 import org.openecomp.sdc.be.datamodel.utils.ConstraintConvertor;
26 import org.openecomp.sdc.be.datatypes.elements.SubstitutionFilterDataDefinition;
27 import org.openecomp.sdc.be.ui.model.UIConstraint;
28 import org.openecomp.sdc.be.ui.model.UINodeFilter;
29
30 public class SubstitutionFilterConverter {
31
32     public Map<String, UINodeFilter> convertDataMapToUI(Map<String, SubstitutionFilterDataDefinition> inMap) {
33         return inMap.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, o -> convertToUi(o.getValue())));
34     }
35
36     public UINodeFilter convertToUi(final SubstitutionFilterDataDefinition inSubstitutionFilter) {
37         final UINodeFilter uiNodeFilter = new UINodeFilter();
38         final ConstraintConvertor constraintConvertor = new ConstraintConvertor();
39         if (inSubstitutionFilter.getProperties() == null || inSubstitutionFilter.getProperties().isEmpty()) {
40             return uiNodeFilter;
41         }
42         final List<UIConstraint> constraints = inSubstitutionFilter.getProperties().getListToscaDataDefinition()
43             .stream()
44             .map(property -> property.getConstraints().iterator().next())
45             .map(constraintConvertor::convert)
46             .collect(Collectors.toList());
47         uiNodeFilter.setProperties(constraints);
48         return uiNodeFilter;
49     }
50 }