Support additional operands for node filters
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / dto / FilterConstraintDto.java
1 /*
2  * -
3  *  ============LICENSE_START=======================================================
4  *  Copyright (C) 2022 Nordix Foundation.
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *       http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.sdc.be.model.dto;
23
24 import com.fasterxml.jackson.databind.ObjectMapper;
25 import java.util.ArrayList;
26 import java.util.List;
27 import java.util.Optional;
28 import lombok.Data;
29 import org.openecomp.sdc.be.datatypes.elements.ToscaGetFunctionDataDefinition;
30 import org.openecomp.sdc.be.datatypes.enums.ConstraintType;
31 import org.openecomp.sdc.be.datatypes.enums.FilterValueType;
32 import org.openecomp.sdc.be.datatypes.enums.PropertyFilterTargetType;
33
34 @Data
35 public class FilterConstraintDto {
36
37     private String propertyName;
38     private String capabilityName;
39     private PropertyFilterTargetType targetType;
40     private ConstraintType operator;
41     private FilterValueType valueType;
42     private Object value;
43     private String originalType;
44
45     public boolean isCapabilityPropertyFilter() {
46         return capabilityName != null;
47     }
48
49     public Optional<ToscaGetFunctionDataDefinition> getAsToscaGetFunction() {
50         if (value instanceof ToscaGetFunctionDataDefinition) {
51             return Optional.of((ToscaGetFunctionDataDefinition) value);
52         }
53         try {
54             return Optional.of(new ObjectMapper().convertValue(value, ToscaGetFunctionDataDefinition.class));
55         } catch (final Exception ignored) {
56             return Optional.empty();
57         }
58     }
59     public Optional<List<ToscaGetFunctionDataDefinition>> getAsListToscaGetFunction() {
60         List<ToscaGetFunctionDataDefinition> toscaGetFunctionDataDefinitionList = new ArrayList<>();
61         if (value instanceof List) {
62             try {
63                 ((List<?>) value).forEach(toscaValue -> toscaGetFunctionDataDefinitionList.add(new ObjectMapper().convertValue(toscaValue, ToscaGetFunctionDataDefinition.class)));
64                 return Optional.of(toscaGetFunctionDataDefinitionList);
65             } catch (final Exception ignored) {
66                 return Optional.empty();
67             }
68         }
69         return Optional.empty();
70     }
71
72 }
73