Reformat catalog-model
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / tosca / validators / ListValidator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdc.be.model.tosca.validators;
21
22 import com.google.common.base.Strings;
23 import com.google.gson.JsonArray;
24 import com.google.gson.JsonElement;
25 import com.google.gson.JsonParser;
26 import java.util.Map;
27 import org.openecomp.sdc.be.config.BeEcompErrorManager;
28 import org.openecomp.sdc.be.model.DataTypeDefinition;
29 import org.openecomp.sdc.be.model.tosca.ToscaPropertyType;
30 import org.openecomp.sdc.common.log.wrappers.Logger;
31 import org.openecomp.sdc.common.util.JsonUtils;
32
33 public class ListValidator implements PropertyTypeValidator {
34
35     private static final Logger log = Logger.getLogger(ListValidator.class.getName());
36     private static ListValidator listValidator = new ListValidator();
37     private static JsonParser jsonParser = new JsonParser();
38     private static DataTypeValidatorConverter dataTypeValidatorConverter = DataTypeValidatorConverter.getInstance();
39
40     public static ListValidator getInstance() {
41         return listValidator;
42     }
43
44     @Override
45     public boolean isValid(String value, String innerType, Map<String, DataTypeDefinition> allDataTypes) {
46         log.debug("Going to validate value {} with inner type {}", value, innerType);
47         if (Strings.isNullOrEmpty(value)) {
48             return true;
49         }
50         if (innerType == null) {
51             return false;
52         }
53         PropertyTypeValidator innerValidator;
54         ToscaPropertyType innerToscaType = ToscaPropertyType.isValidType(innerType);
55         if (innerToscaType != null) {
56             switch (innerToscaType) {
57                 case STRING:
58                     innerValidator = ToscaPropertyType.STRING.getValidator();
59                     break;
60                 case INTEGER:
61                     innerValidator = ToscaPropertyType.INTEGER.getValidator();
62                     break;
63                 case FLOAT:
64                     innerValidator = ToscaPropertyType.FLOAT.getValidator();
65                     break;
66                 case BOOLEAN:
67                     innerValidator = ToscaPropertyType.BOOLEAN.getValidator();
68                     break;
69                 case JSON:
70                     innerValidator = ToscaPropertyType.JSON.getValidator();
71                     break;
72                 default:
73                     log.debug("inner Tosca Type is unknown. {}", innerToscaType);
74                     return false;
75             }
76         } else {
77             log.debug("inner Tosca Type is: {}", innerType);
78             boolean isValid = validateComplexInnerType(value, innerType, allDataTypes);
79             log.debug("Finish to validate value {} of list with inner type {}. result is {}", value, innerType, isValid);
80             return isValid;
81         }
82         try {
83             JsonArray jo = (JsonArray) jsonParser.parse(value);
84             if (ToscaPropertyType.JSON == innerToscaType) {
85                 return true;
86             }
87             int size = jo.size();
88             for (int i = 0; i < size; i++) {
89                 JsonElement currentValue = jo.get(i);
90                 String element = JsonUtils.toString(currentValue);
91                 if (!innerValidator.isValid(element, null, allDataTypes)) {
92                     log.debug("validation of element : {} failed", element);
93                     return false;
94                 }
95             }
96             return true;
97         } catch (Exception e) {
98             log.debug("Failed to parse json : {}", value, e);
99             BeEcompErrorManager.getInstance().logBeInvalidJsonInput("List Validator");
100         }
101         return false;
102     }
103
104     @Override
105     public boolean isValid(String value, String innerType) {
106         return isValid(value, innerType, null);
107     }
108
109     private boolean validateComplexInnerType(String value, String innerType, Map<String, DataTypeDefinition> allDataTypes) {
110         DataTypeDefinition innerDataTypeDefinition = allDataTypes.get(innerType);
111         if (innerDataTypeDefinition == null) {
112             log.debug("Data type {} cannot be found in our data types.", innerType);
113             return false;
114         }
115         try {
116             JsonArray jo = (JsonArray) jsonParser.parse(value);
117             int size = jo.size();
118             for (int i = 0; i < size; i++) {
119                 JsonElement currentValue = jo.get(i);
120                 if (currentValue != null) {
121                     String element = JsonUtils.toString(currentValue);
122                     boolean isValid = dataTypeValidatorConverter.isValid(element, innerDataTypeDefinition, allDataTypes);
123                     if (!isValid) {
124                         log.debug("Cannot parse value {} from type {} in list parameter", currentValue, innerType);
125                         return false;
126                     }
127                 }
128             }
129         } catch (Exception e) {
130             log.debug("Error when parsing JSON of object of type ", e);
131             return false;
132         }
133         return true;
134     }
135 }