Process multi-OXM files
[aai/gizmo.git] / src / main / java / org / onap / crud / util / CrudServiceUtil.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.crud.util;
22
23 import org.onap.aai.db.props.AAIProperties;
24 import org.onap.crud.exception.CrudException;
25 import org.onap.schema.OxmModelLoader;
26 import org.onap.schema.RelationshipSchemaLoader;
27
28 import com.google.gson.Gson;
29 import com.google.gson.JsonElement;
30 import com.google.gson.JsonPrimitive;
31
32 import java.util.AbstractMap;
33 import java.util.HashSet;
34 import java.util.Map;
35 import java.util.Set;
36 import java.util.Map.Entry;
37
38 import javax.ws.rs.core.HttpHeaders;
39 import javax.ws.rs.core.Response.Status;
40
41 public class CrudServiceUtil {
42
43   private static Gson gson = new Gson();
44   
45   @SuppressWarnings({"unchecked", "rawtypes"})
46   public static Object validateFieldType(String value, Class clazz) throws CrudException {
47     try {
48       if (clazz.isAssignableFrom(Integer.class)) {
49         return Integer.parseInt(value);
50       } else if (clazz.isAssignableFrom(Long.class)) {
51         return Long.parseLong(value);
52       } else if (clazz.isAssignableFrom(Float.class)) {
53         return Float.parseFloat(value);
54       } else if (clazz.isAssignableFrom(Double.class)) {
55         return Double.parseDouble(value);
56       } else if (clazz.isAssignableFrom(Boolean.class)) {
57                   
58                 // If the value is an IN/OUT direction, this gets seen as a boolean, so
59         // check for that first.
60         if (value.equals("OUT") || value.equals("IN")) {
61           return value;
62         }
63                 
64         if (!value.equals("true") && !value.equals("false")) {
65           throw new CrudException("Invalid propertry value: " + value, Status.BAD_REQUEST);
66         }
67         return Boolean.parseBoolean(value);
68       } else {
69         return value;
70       }
71     } catch (Exception e) {
72       throw new CrudException("Invalid property value: " + value, Status.BAD_REQUEST);
73     }
74   }
75
76   public static void loadModels() throws CrudException {
77     // load the schemas
78     try {
79       OxmModelLoader.loadModels();
80     } catch (Exception e) {
81       throw new CrudException(e);
82     }
83     RelationshipSchemaLoader.loadModels();
84   }
85   
86   /**
87    * This method will merge header property from app id in request payload if not already populated
88    * @param propertiesFromRequest
89    * @param headers
90    * @param isAdd
91    * @return
92    */
93     @SuppressWarnings("unchecked")
94     public static JsonElement mergeHeaderInFoToPayload(JsonElement propertiesFromRequest, HttpHeaders headers,
95             boolean isAdd) {
96     String sourceOfTruth = headers.getRequestHeaders().getFirst("X-FromAppId");  
97     Set<Map.Entry<String, JsonElement>> properties = new HashSet<Map.Entry<String, JsonElement>>();
98     properties.addAll(propertiesFromRequest.getAsJsonObject().entrySet());
99     
100     Set<String> propertyKeys = new HashSet<String>();
101     for(Map.Entry<String, JsonElement> property : properties) {
102       propertyKeys.add(property.getKey());
103     }
104     
105     if(!propertyKeys.contains(AAIProperties.LAST_MOD_SOURCE_OF_TRUTH)) {
106         properties.add(new AbstractMap.SimpleEntry<String, JsonElement>(AAIProperties.LAST_MOD_SOURCE_OF_TRUTH,
107             (JsonElement)(new JsonPrimitive(sourceOfTruth))));
108     }
109    
110     if(isAdd && !propertyKeys.contains(AAIProperties.SOURCE_OF_TRUTH)) {
111         properties.add(new AbstractMap.SimpleEntry<String, JsonElement>(AAIProperties.SOURCE_OF_TRUTH,
112             (JsonElement)(new JsonPrimitive(sourceOfTruth))));
113     }
114
115     Object[] propArray = properties.toArray();
116     StringBuilder sb = new StringBuilder();
117     sb.append("{");
118     boolean first=true;
119     for(int i=0; i<propArray.length; i++) {
120       
121       Map.Entry<String, JsonElement> entry = (Entry<String, JsonElement>) propArray[i];
122       if(!first) {
123         sb.append(",");
124       }
125       sb.append("\"").append(entry.getKey()).append("\"").append(":").append(entry.getValue());
126       first=false;
127     }
128     sb.append("}");
129     
130     return gson.fromJson(sb.toString(), JsonElement.class);
131   }
132 }