7f40c149ae2eea41c83995359c5cde903dc1bfb2
[ccsdk/sli/adaptors.git] / aai-service / provider / src / main / java / org / onap / ccsdk / sli / adaptors / aai / AAIDeclarations.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *             reserved.
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
22 package org.onap.ccsdk.sli.adaptors.aai;
23
24 import java.io.IOException;
25 import java.io.UnsupportedEncodingException;
26 import java.lang.annotation.Annotation;
27 import java.lang.reflect.Field;
28 import java.lang.reflect.InvocationTargetException;
29 import java.lang.reflect.Method;
30 import java.net.MalformedURLException;
31 import java.net.URISyntaxException;
32 import java.net.URL;
33 import java.net.URLDecoder;
34 import java.net.URLEncoder;
35 import java.util.ArrayList;
36 import java.util.Arrays;
37 import java.util.HashMap;
38 import java.util.LinkedList;
39 import java.util.List;
40 import java.util.Map;
41 import java.util.Set;
42 import java.util.SortedSet;
43 import java.util.TreeSet;
44 import java.util.regex.Matcher;
45 import java.util.regex.Pattern;
46
47 import javax.xml.bind.annotation.XmlType;
48
49 import org.apache.commons.lang.StringUtils;
50 import org.onap.ccsdk.sli.adaptors.aai.data.AAIDatum;
51 import org.onap.ccsdk.sli.adaptors.aai.query.FormattedQueryResultList;
52 import org.onap.ccsdk.sli.adaptors.aai.query.InstanceFilter;
53 import org.onap.ccsdk.sli.adaptors.aai.query.InstanceFilters;
54 import org.onap.ccsdk.sli.adaptors.aai.query.NamedQuery;
55 import org.onap.ccsdk.sli.adaptors.aai.query.NamedQueryData;
56 import org.onap.ccsdk.sli.adaptors.aai.query.QueryParameters;
57 import org.onap.ccsdk.sli.adaptors.aai.query.Result;
58 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
59 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
60 import org.openecomp.aai.inventory.v11.GenericVnf;
61 import org.openecomp.aai.inventory.v11.Image;
62 import org.openecomp.aai.inventory.v11.InventoryResponseItem;
63 import org.openecomp.aai.inventory.v11.InventoryResponseItems;
64 import org.openecomp.aai.inventory.v11.L3Network;
65 import org.openecomp.aai.inventory.v11.LogicalLink;
66 import org.openecomp.aai.inventory.v11.Metadata;
67 import org.openecomp.aai.inventory.v11.Metadatum;
68 import org.openecomp.aai.inventory.v11.Pnf;
69 import org.openecomp.aai.inventory.v11.RelatedToProperty;
70 import org.openecomp.aai.inventory.v11.Relationship;
71 import org.openecomp.aai.inventory.v11.RelationshipData;
72 import org.openecomp.aai.inventory.v11.RelationshipList;
73 import org.openecomp.aai.inventory.v11.ResultData;
74 import org.openecomp.aai.inventory.v11.SearchResults;
75 import org.openecomp.aai.inventory.v11.ServiceInstance;
76 import org.openecomp.aai.inventory.v11.Vlan;
77 import org.openecomp.aai.inventory.v11.Vlans;
78 import org.openecomp.aai.inventory.v11.Vserver;
79 import org.slf4j.Logger;
80 import org.slf4j.LoggerFactory;
81
82 import com.fasterxml.jackson.core.JsonParseException;
83 import com.fasterxml.jackson.databind.JsonMappingException;
84 import com.fasterxml.jackson.databind.ObjectMapper;
85
86
87 public abstract class AAIDeclarations implements AAIClient {
88
89     public static final String TRUSTSTORE_PATH    = "org.onap.ccsdk.sli.adaptors.aai.ssl.trust";
90     public static final String TRUSTSTORE_PSSWD   = "org.onap.ccsdk.sli.adaptors.aai.ssl.trust.psswd";
91     public static final String KEYSTORE_PATH      = "org.onap.ccsdk.sli.adaptors.aai.ssl.key";
92     public static final String KEYSTORE_PSSWD     = "org.onap.ccsdk.sli.adaptors.aai.ssl.key.psswd";
93
94     public static final String APPLICATION_ID     = "org.onap.ccsdk.sli.adaptors.aai.application";
95
96     public static final String CLIENT_NAME          = "org.onap.ccsdk.sli.adaptors.aai.client.name";
97     public static final String CLIENT_PWWD          = "org.onap.ccsdk.sli.adaptors.aai.client.psswd";
98
99
100     public static final String CONNECTION_TIMEOUT = "connection.timeout";
101     public static final String READ_TIMEOUT       = "read.timeout";
102
103     public static final String TARGET_URI         = "org.onap.ccsdk.sli.adaptors.aai.uri";
104
105     // Availability zones query
106     public static final String QUERY_PATH         = "org.onap.ccsdk.sli.adaptors.aai.path.query";
107
108     // Update
109     public static final String UPDATE_PATH          = "org.onap.ccsdk.sli.adaptors.aai.update";
110
111     // Service instance
112     public static final String SVC_INSTANCE_PATH  = "org.onap.ccsdk.sli.adaptors.aai.path.svcinst";
113     public static final String SVC_INST_QRY_PATH  = "org.onap.ccsdk.sli.adaptors.aai.path.svcinst.query";
114
115     // VServer
116     public static final String NETWORK_VSERVER_PATH  = "org.onap.ccsdk.sli.adaptors.aai.path.vserver";
117
118     public static final String VNF_IMAGE_QUERY_PATH      = "org.onap.ccsdk.sli.adaptors.aai.path.vnf.image.query";
119
120     public static final String PARAM_SERVICE_TYPE     = "org.onap.ccsdk.sli.adaptors.aai.param.service.type";
121     public static final String CERTIFICATE_HOST_ERROR = "org.onap.ccsdk.sli.adaptors.aai.host.certificate.ignore";
122
123     // UBB Notify
124     public static final String UBB_NOTIFY_PATH        = "org.onap.ccsdk.sli.adaptors.aai.path.notify";
125     public static final String SELFLINK_AVPN          = "org.onap.ccsdk.sli.adaptors.aai.notify.selflink.avpn";
126     public static final String SELFLINK_FQDN          = "org.onap.ccsdk.sli.adaptors.aai.notify.selflink.fqdn";
127
128     //Service
129     public static final String SERVICE_PATH              = "org.onap.ccsdk.sli.adaptors.aai.path.service";
130
131     // P-Interfaces
132     public static final String P_INTERFACE_PATH       = "org.onap.ccsdk.sli.adaptors.aai.path.pserver.pinterface";
133
134     // site-pair-sets
135     public static final String SITE_PAIR_SET_PATH     = "org.onap.ccsdk.sli.adaptors.aai.path.site.pair.set";
136
137     // node query (1602)
138     public static final String QUERY_NODES_PATH          = "org.onap.ccsdk.sli.adaptors.aai.query.nodes";
139
140
141     protected abstract Logger getLogger();
142     public abstract AAIExecutorInterface getExecutor();
143
144
145     @Override
146     public QueryStatus query(String resource, boolean localOnly, String select, String key, String prefix, String orderBy, SvcLogicContext ctx)
147         throws SvcLogicException {
148
149         getLogger().debug("AAIService.query \tresource = "+resource);
150
151         String vnfId;
152         String vnfName = null;
153         HashMap<String, String> nameValues = AAIServiceUtils.keyToHashMap(key, ctx);
154         getLogger().debug("key = "+ nameValues.toString());
155
156         if(!AAIServiceUtils.isValidFormat(resource, nameValues)) {
157             ctx.setAttribute(String.format("%s.error.message", prefix), String.format("Resource %s is not supported. Key string contains invaid identifiers", resource));
158             return QueryStatus.FAILURE;
159         }
160
161         if(resource == null || resource.isEmpty() || AAIRequest.createRequest(resource, nameValues) == null) {
162             ctx.setAttribute(String.format("%s.error.message", prefix), String.format("Resource %s is not supported", resource));
163             return QueryStatus.FAILURE;
164         }
165
166         // process data using new model
167         boolean useNewModelProcessing = true;
168         // process server query by name the old way
169         if("vserver".equals(resource) || "vserver2".equals(resource)){
170             if(nameValues.containsKey("vserver_name") || nameValues.containsKey("vserver-name") || nameValues.containsKey("vserver.vserver_name") || nameValues.containsKey("vserver.vserver-name"))
171                 useNewModelProcessing = false;
172         }
173         if("generic-vnf".equals(resource)){
174             if(nameValues.containsKey("vnf_name") || nameValues.containsKey("vnf-name") || nameValues.containsKey("generic_vnf.vnf_name") || nameValues.containsKey("generic-vnf.vnf-name"))
175                 useNewModelProcessing = false;
176         }
177
178         // process data using new model
179         if(useNewModelProcessing && AAIRequest.createRequest(resource, nameValues) != null) {
180
181             try {
182                 return newModelQuery(resource, localOnly, select, key, prefix, orderBy, ctx);
183             } catch (Exception exc) {
184                 getLogger().warn("Failed query - returning FAILURE", exc);
185                 return QueryStatus.FAILURE;
186             }
187         }
188
189         ObjectMapper mapper = AAIService.getObjectMapper();
190         Map<String,Object> attributes = new HashMap<>();
191
192         String modifier = null;
193
194         if(resource.contains(":")) {
195             String[] tokens = resource.split(":");
196             resource = tokens[0];
197             if(tokens.length > 1) {
198                 modifier = tokens[1];
199             }
200         }
201
202         resource = resource.toLowerCase().replace("-", "_");
203
204         try {
205
206             switch(resource) {
207                 case "generic_vnf":
208                     vnfId = nameValues.get("vnf_id");
209                     if(nameValues.containsKey("vnf_id"))
210                         vnfId = nameValues.get("vnf_id");
211                     else if(nameValues.containsKey("generic_vnf.vnf_name"))
212                         vnfId = nameValues.get("generic_vnf.vserver_name");
213
214                     if(nameValues.containsKey("vnf_name"))
215                         vnfName = nameValues.get("vnf_name");
216                     else if(nameValues.containsKey("generic_vnf.vnf_name"))
217                         vnfName = nameValues.get("generic_vnf.vnf_name");
218
219                     if(vnfId != null && !vnfId.isEmpty()) {
220                         // at this point of the project this part should not be executed
221                         vnfId = vnfId.trim().replace("'", "").replace("$", "").replace("'", "");
222                         GenericVnf vnf = this.requestGenericVnfData(vnfId);
223                         if(vnf == null) {
224                             return QueryStatus.NOT_FOUND;
225                         }
226
227                         attributes = mapper.convertValue(vnf, attributes.getClass());
228                     } else if(vnfName != null && !vnfName.isEmpty()) {
229                         try {
230                             vnfName = vnfName.trim().replace("'", "").replace("$", "").replace("'", "");
231                             GenericVnf vnf = this.requestGenericVnfeNodeQuery(vnfName);
232                             if(vnf == null) {
233                                 return QueryStatus.NOT_FOUND;
234                             }
235                             vnfId=vnf.getVnfId();
236                             nameValues.put("vnf_id", vnfId);
237                             attributes = mapper.convertValue(vnf, attributes.getClass());
238                         } catch (AAIServiceException exc) {
239                             int errorCode = exc.getReturnCode();
240                             switch(errorCode) {
241                             case 400:
242                             case 404:
243                             case 412:
244                                 break;
245                             default:
246                                 getLogger().warn("Caught exception trying to refresh generic VNF", exc);
247                             }
248                             ctx.setAttribute(prefix + ".error.message", exc.getMessage());
249                             if(errorCode >= 300) {
250                                 ctx.setAttribute(prefix + ".error.http.response-code",
251                                                  Integer.toString(exc.getReturnCode()));
252                             }
253                             return QueryStatus.FAILURE;
254                         }
255                     } else {
256                         getLogger().warn("No arguments are available to process generic VNF");
257                         return QueryStatus.FAILURE;
258                     }
259                     break;
260                 case "vserver":
261                 case "vserver2":
262                     String vserverName = null;
263                     if(nameValues.containsKey("vserver_name"))
264                         vserverName = nameValues.get("vserver_name");
265                     else if(nameValues.containsKey("vserver.vserver_name"))
266                         vserverName = nameValues.get("vserver.vserver_name");
267
268                     String vserverId = null;
269                     if(nameValues.containsKey("vserver_id"))
270                         vserverId = nameValues.get("vserver_id");
271                     if(nameValues.containsKey("vserver.vserver_id"))
272                         vserverId = nameValues.get("vserver.vserver_id");
273                     String tenantId = nameValues.get("teannt_id");
274
275                     if(vserverName != null) vserverName = vserverName.trim().replace("'", "").replace("$", "").replace("'", "");
276                     if(vserverId != null) vserverId = vserverId.trim().replace("'", "").replace("$", "").replace("'", "");
277                     if(tenantId != null) tenantId = tenantId.trim().replace("'", "").replace("$", "").replace("'", "");
278
279                 if (vserverName != null) {
280                     URL vserverUrl = null;
281                     try {
282                         vserverUrl = this.requestVserverURLNodeQuery(vserverName);
283                     } catch (AAIServiceException aaiexc) {
284                         ctx.setAttribute(prefix + ".error.message", aaiexc.getMessage());
285                         if (aaiexc.getReturnCode() >= 300) {
286                             ctx.setAttribute(prefix + ".error.http" + "" + ".response-code", Integer.toString(aaiexc.getReturnCode()));
287                         }
288
289                         if (aaiexc.getReturnCode() == 404)
290                             return QueryStatus.NOT_FOUND;
291                         else
292                             return QueryStatus.FAILURE;
293                     }
294                     if (vserverUrl == null) {
295                         return QueryStatus.NOT_FOUND;
296                     }
297
298                     tenantId = getTenantIdFromVserverUrl(vserverUrl);
299                             String cloudOwner = getCloudOwnerFromVserverUrl(vserverUrl);
300                             String cloudRegionId = getCloudRegionFromVserverUrl(vserverUrl);
301
302                     Vserver vserver = null;
303                     try {
304                         vserver = this.requestVServerDataByURL(vserverUrl);
305                     } catch (AAIServiceException aaiexc) {
306                         ctx.setAttribute(prefix + ".error.message", aaiexc.getMessage());
307                         if (aaiexc.getReturnCode() >= 300) {
308                             ctx.setAttribute(prefix + ".error.http" + ".response-code", Integer.toString(aaiexc.getReturnCode()));
309                         }
310
311                         if (aaiexc.getReturnCode() == 404)
312                             return QueryStatus.NOT_FOUND;
313                         else
314                             return QueryStatus.FAILURE;
315                     }
316                     if (vserver == null) {
317                         return QueryStatus.NOT_FOUND;
318                     }
319                     attributes = mapper.convertValue(vserver, attributes.getClass());
320                     if (!attributes.containsKey("tenant-id") && tenantId != null) {
321                         attributes.put("tenant-id", tenantId);
322                     }
323                     if (!attributes.containsKey("cloud-owner") && cloudOwner != null) {
324                         attributes.put("cloud-owner", cloudOwner);
325                     }
326                     if (!attributes.containsKey("cloud-region-id") && cloudRegionId != null) {
327                         attributes.put("cloud-region-id", cloudRegionId);
328                     }
329                 } else if (vserverId != null && tenantId != null) {
330                         Vserver vserver = this.requestVServerData(tenantId, vserverId, "att-aic", "AAIAIC25");
331                         if(vserver == null) {
332                             return QueryStatus.NOT_FOUND;
333                         }
334                         attributes = mapper.convertValue(vserver, attributes.getClass());
335                         if(!attributes.containsKey("tenant-id") && tenantId != null){
336                             attributes.put("tenant-id", tenantId);
337                         }
338                     } else {
339                         return QueryStatus.FAILURE;
340                     }
341                     break;
342
343                 default:
344                     return QueryStatus.FAILURE;
345             }
346
347             QueryStatus retval = QueryStatus.SUCCESS;
348
349             if (attributes == null || attributes.isEmpty()) {
350                 retval = QueryStatus.NOT_FOUND;
351                 getLogger().debug("No data found");
352             } else {
353                 if (ctx != null) {
354                     if (prefix != null) {
355                         ArrayList<String> keys = new ArrayList<>(attributes.keySet());
356
357                         int numCols = keys.size();
358
359                         for (int i = 0; i < numCols; i++) {
360                             String colValue;
361                             String colName = keys.get(i);
362                             Object object = attributes.get(colName);
363
364                             if(object != null && object instanceof String) {
365                                 colValue = (String)object;
366
367                                 if (prefix != null) {
368                                     getLogger().debug("Setting "+prefix    + "." + colName.replaceAll("_", "-")+" = "+ colValue);
369                                     ctx.setAttribute(prefix    + "." + colName.replaceAll("_", "-"), colValue);
370                                 } else {
371                                     getLogger().debug("Setting " + colValue.replaceAll("_", "-")+" = "+colValue);
372                                     ctx.setAttribute(colValue.replaceAll("_", "-"), colValue);
373                                 }
374                             } else if(object != null && object instanceof Map) {
375                                 if(colName.equals(modifier) || "relationship-list".equals(colName)){
376                                     String localNodifier = modifier;
377                                     if(localNodifier == null)
378                                         localNodifier = "relationship-list";
379                                     Map<String, Object> properties = (Map<String, Object>)object;
380                                     writeMap(properties, prefix+"."+localNodifier,  ctx);
381                                 }
382                             }
383                         }
384                     }
385                 }
386             }
387             getLogger().debug("Query - returning " + retval);
388             return retval;
389
390         } catch (Exception exc) {
391             getLogger().warn("Failed query - returning FAILURE", exc);
392             return QueryStatus.FAILURE;
393         }
394     }
395
396
397     public void writeMap(Map<String, Object> properties, String prefix, SvcLogicContext ctx) {
398         Set<String> mapKeys = properties.keySet();
399
400         for(String mapKey : mapKeys) {
401             Object entity = properties.get(mapKey);
402             if(entity instanceof ArrayList) {
403                 writeList((ArrayList<?>)entity, prefix + "." + mapKey, ctx);
404             } else
405             if(entity instanceof String ||  entity instanceof Long || entity instanceof Integer || entity instanceof Boolean) {
406                 ctx.setAttribute(prefix + "." + mapKey, entity.toString());
407                 getLogger().debug(prefix + "." + mapKey + " : " + entity.toString());
408             } else if(entity instanceof Map) {
409                 String localPrefix = prefix;
410                 if(mapKey != null) {
411                     localPrefix = String.format("%s.%s", prefix, mapKey);
412                 }
413                 writeMap( (Map<String, Object>)entity,  localPrefix,  ctx);
414             }
415         }
416     }
417
418     private void writeList(ArrayList<?> list, String prefix, SvcLogicContext ctx) {
419         for(int i = 0; i < list.size(); i++ ) {
420             Object entity = list.get(i);
421             if(entity instanceof Map) {
422                 writeMap( (Map<String, Object>)entity,  prefix + "[" + i + "]",  ctx);
423             } else
424                 if(entity instanceof String ||  entity instanceof Long || entity instanceof Integer || entity instanceof Boolean) {
425                 ctx.setAttribute(prefix, entity.toString());
426                 getLogger().debug(prefix  + " : " + entity.toString());
427             }
428         }
429
430         if(!list.isEmpty()) {
431             ctx.setAttribute(prefix + "_length", Integer.toString(list.size()));
432             getLogger().debug(prefix + "_length"  + " : " + Integer.toString(list.size()));
433         }
434     }
435
436     @Override
437     public QueryStatus save(String resource, boolean force, boolean localOnly, String key, Map<String, String> params, String prefix, SvcLogicContext ctx)
438             throws SvcLogicException {
439
440         getLogger().debug("AAIService.save\tresource="+resource);
441         HashMap<String, String> nameValues = AAIServiceUtils.keyToHashMap(key, ctx);
442
443         if(!AAIServiceUtils.isValidFormat(resource, nameValues)) {
444             ctx.setAttribute(String.format("%s.error.message", prefix), String.format("Resource %s is not supported. Key string contains invaid identifiers", resource));
445             return QueryStatus.FAILURE;
446         }
447
448         if(resource == null || resource.isEmpty() || AAIRequest.createRequest(resource, nameValues) == null) {
449             getLogger().warn("AAIService.save has unspecified resource");
450             ctx.setAttribute(String.format("%s.error.message", prefix), String.format("Resource %s is not supported", resource));
451             return QueryStatus.FAILURE;
452         }
453         // keys passed
454         getLogger().debug("key = "+ Arrays.toString(nameValues.entrySet().toArray()));
455
456         // process params
457         if(params.containsKey("prefix")) {
458             Map<String, String> tmpParams = ctxGetBeginsWith(ctx, params.get("prefix"));
459             if(!tmpParams.isEmpty()) {
460                 params.putAll(tmpParams);
461 //                params.remove("prefix");
462             }
463         }
464         // params passed
465         getLogger().debug("parms = "+ Arrays.toString(params.entrySet().toArray()));
466
467         boolean useNewModelProcessing = true;
468         // process server query by name the old way
469         if("vserver".equals(resource) || "vserver2".equals(resource)){
470             if(nameValues.containsKey("vserver-name")) {
471                 useNewModelProcessing = false;
472             }
473
474             if(!params.containsKey("vserver-selflink")) {
475
476                 AAIRequest request = AAIRequest.createRequest(resource, nameValues);
477                 URL path = null;
478                 try {
479                     request.processRequestPathValues(nameValues);
480                     path = request.getRequestUrl("GET", null);
481                     params.put("vserver-selflink", path.toString());
482                 } catch (UnsupportedEncodingException | MalformedURLException | URISyntaxException e) {
483                     params.put("vserver-selflink", "/vserver");
484                 }
485             }
486         }
487
488         // process data using new model
489         if(useNewModelProcessing && AAIRequest.createRequest(resource, nameValues) != null) {
490
491             try {
492                 if(!resource.contains(":")){
493                     return newModelSave(resource, force, key, params, prefix, ctx);
494                 } else {
495                     String[] tokens = resource.split(":");
496                     String localResource = tokens[0];
497                     String dependency = tokens[1];
498
499                     AAIDatum instance = newModelObjectRequest( localResource, nameValues, prefix, ctx);
500                     if(instance == null) {
501                         return QueryStatus.NOT_FOUND;
502                     }
503
504                     switch(dependency){
505                         case "relationship-list":
506                             newModelProcessRelationshipList(instance, params, prefix, ctx);
507                             break;
508                         case "metadata":
509                             newModelProcessMetadata(instance, params, prefix, ctx);
510                             break;
511                     }
512                     // create a method to update relationship-list
513                     AAIRequest request = AAIRequest.createRequest(localResource, nameValues);
514                     request.setRequestObject(instance);
515                     request.processRequestPathValues(nameValues);
516
517                     getExecutor().post(request);
518                     getLogger().debug("Save relationship list - returning SUCCESS");
519                     return QueryStatus.SUCCESS;
520                 }
521             } catch (Exception exc) {
522                 ctx.setAttribute(prefix + ".error.message", exc.getMessage());
523                 if(exc instanceof AAIServiceException) {
524                     AAIServiceException aaiexc = (AAIServiceException)exc;
525                     if(aaiexc.getReturnCode() >= 300) {
526                         ctx.setAttribute(prefix + ".error.http" + ".response-code", Integer.toString(aaiexc.getReturnCode()));
527                     }
528
529                     if(aaiexc.getReturnCode() == 404) {
530                         return QueryStatus.NOT_FOUND;
531                     }
532                 }
533                 getLogger().warn("Failed save() - returning FAILURE", exc);
534                 return QueryStatus.FAILURE;
535             }
536         } else {
537             getLogger().debug("Save() request for {} is not supported- returning FAILURE", resource);
538             return QueryStatus.FAILURE;
539         }
540     }
541
542     @Override
543     public QueryStatus update(String resource, String key, Map<String, String> params, String prefix, SvcLogicContext ctx) throws SvcLogicException {
544
545         resource = resource.toLowerCase();
546         HashMap<String, String> nameValues = AAIServiceUtils.keyToHashMap(key, ctx);
547         getLogger().debug("key = "+ Arrays.toString(nameValues.entrySet().toArray()));
548         if(!AAIServiceUtils.isValidFormat(resource, nameValues)) {
549             ctx.setAttribute(String.format("%s.error.message", prefix), String.format("Resource %s is not supported. Key string contains invaid identifiers", resource));
550             return QueryStatus.FAILURE;
551         }
552
553         if(resource == null || resource.isEmpty() || AAIRequest.createRequest(resource, nameValues) == null) {
554             ctx.setAttribute(String.format("%s.error.message", prefix), String.format("Resource %s is not supported", resource));
555             return QueryStatus.FAILURE;
556         }
557
558         // check if request is for groups
559         if(!AAIServiceUtils.containsResource(resource, nameValues)) {
560             ctx.setAttribute(String.format("%s.error.message", prefix), String.format("Resource %s is not permitted in 'update' operation", resource));
561             return QueryStatus.FAILURE;
562         }
563
564         getLogger().debug("parms = "+ Arrays.toString(params.entrySet().toArray()));
565
566         AAIRequest request = AAIRequest.createRequest(resource, nameValues);
567         request = new UpdateRequest(request, params);
568
569         String[] arguments = request.getArgsList();
570         for(String name : arguments) {
571             String modifiedKey = name.replaceAll("-", "_");
572             if(nameValues.containsKey(modifiedKey)) {
573                 String argValue = nameValues.get(modifiedKey);
574                 if(argValue != null) argValue = argValue.trim().replace("'", "").replace("$", "").replace("'", "");
575                 request.addRequestProperty(name, argValue);
576             }
577         }
578
579         try {
580             QueryStatus retval = QueryStatus.SUCCESS;
581
582             retval = newModelQuery(resource, false, null, key, "tmpDelete", null,  ctx);
583
584             if(retval == null || retval != QueryStatus.SUCCESS) {
585                 return retval;
586             }
587
588             String resourceVersion = ctx.getAttribute("tmpDelete.resource-version");
589             if(resourceVersion == null) {
590                 return QueryStatus.NOT_FOUND;
591             }
592             params.put("resource-version", resourceVersion);
593
594             request.processRequestPathValues(nameValues);
595             getExecutor().patch(request, resourceVersion);
596         } catch(AAIServiceException aaiexc) {
597             if(aaiexc.getReturnCode() == 404)
598                 return QueryStatus.NOT_FOUND;
599             else
600                 return QueryStatus.FAILURE;
601         } catch (Exception exc) {
602             getLogger().warn("Failed update - returning FAILURE", exc);
603             return QueryStatus.FAILURE;
604         }
605
606         getLogger().debug("Update - returning SUCCESS");
607         return QueryStatus.SUCCESS;
608     }
609
610     @Override
611     public QueryStatus delete(String resource, String key, SvcLogicContext ctx) throws SvcLogicException {
612         getLogger().debug("AAIService.delete\tresource="+resource);
613         HashMap<String, String> nameValues = AAIServiceUtils.keyToHashMap(key, ctx);
614         getLogger().debug("key = "+ Arrays.toString(nameValues.entrySet().toArray()));
615
616         if(!AAIServiceUtils.isValidFormat(resource, nameValues)) {
617             ctx.setAttribute(String.format("%s.error.message", "aaiData"), String.format("Resource %s is not supported. Key string contains invaid identifiers", resource));
618             return QueryStatus.FAILURE;
619         }
620
621         if(resource == null || resource.isEmpty() || AAIRequest.createRequest(resource, nameValues) == null) {
622             ctx.setAttribute(String.format("%s.error.message", "tmpDelete"), String.format("Resource %s is not supported", resource));
623             return QueryStatus.FAILURE;
624         }
625
626         // check if request is for groups
627         if(!AAIServiceUtils.containsResource(resource, nameValues)) {
628             ctx.setAttribute(String.format("%s.error.message", "tmpDelete"), String.format("Resource %s is not permitted in 'delete' operation", resource));
629             return QueryStatus.FAILURE;
630         }
631
632         if(AAIRequest.createRequest(resource, nameValues) != null) {
633             if(resource.contains(":")) {
634                 switch (resource.split(":")[1]){
635                     case "relationship-list":
636                         return processDeleteRelationshipList(resource, key, ctx, nameValues);
637                     case "metadata":
638                         return processDeleteMetadata(resource, key, ctx, nameValues);
639                 }
640             }
641
642
643             try {
644                 QueryStatus retval = QueryStatus.SUCCESS;
645
646                 retval = newModelQuery(resource, false, null, key, "tmpDelete", null,  ctx);
647
648                 if(retval == null || retval != QueryStatus.SUCCESS) {
649                     return retval;
650                 }
651
652                 String resourceVersion = ctx.getAttribute("tmpDelete.resource-version");
653                 if(resourceVersion == null) {
654                     return QueryStatus.NOT_FOUND;
655                 }
656
657                 try {
658                     AAIRequest request = AAIRequest.createRequest(resource, nameValues);
659                     if(request == null) {
660                         return QueryStatus.FAILURE;
661                     }
662
663                     request.processRequestPathValues(nameValues);
664
665                     if(getExecutor().delete(request, resourceVersion)) {
666                         return QueryStatus.SUCCESS;
667                     }
668                 } catch(AAIServiceException aaiexc) {
669                     if(aaiexc.getReturnCode() == 404)
670                         return QueryStatus.NOT_FOUND;
671                     else
672                         return QueryStatus.FAILURE;
673
674                 } catch (Exception exc) {
675                     getLogger().warn("requestGenericVnfData", exc);
676                     return QueryStatus.FAILURE;
677                 }
678
679             } catch (Exception exc) {
680                 getLogger().warn("Failed delete - returning FAILURE", exc);
681                 return QueryStatus.FAILURE;
682             }
683         } else {
684             String resourceName = resource;
685             String identifier = null;
686
687             if(resourceName.contains(":")) {
688                 String[] tokens = resourceName.split(":");
689                 if(tokens != null && tokens.length > 0) {
690                     resourceName = tokens[0];
691                     identifier = tokens[1];
692                 }
693             }
694             if("relationship-list".equals(identifier) || "relationshipList".equals(identifier)) {
695 //                RelationshipRequest relationshipRequest = new RelationshipRequest();
696                 if("generic-vnf".equals(resourceName)){
697                     String vnfId = nameValues.get("vnf_id");
698                     String relatedTo  = nameValues.get("related_to");
699                     vnfId = vnfId.trim().replace("'", "").replace("$", "").replace("'", "");
700                     relatedTo = relatedTo.trim().replace("'", "").replace("$", "").replace("'", "");
701
702                     GenericVnf vnf;
703                     try {
704                         vnf = this.requestGenericVnfData(vnfId);
705                         if(vnf == null)
706                             return QueryStatus.NOT_FOUND;
707                     } catch (AAIServiceException exc) {
708                         getLogger().warn("Failed delete - returning NOT_FOUND", exc);
709                         return QueryStatus.NOT_FOUND;
710                     }
711                     boolean itemRemoved = false;
712                     RelationshipList relationshipList = vnf.getRelationshipList();
713                     List<Relationship> relationships = relationshipList.getRelationship();
714                     List<Relationship> iterableList = new LinkedList<>(relationships);
715                     for(Relationship relationship : iterableList) {
716                         if(relationship.getRelatedTo().equals(relatedTo)) {
717                             relationships.remove(relationship);
718                             itemRemoved = true;
719                         }
720                     }
721
722                     if(!itemRemoved)
723                         return QueryStatus.NOT_FOUND;
724                     try {
725                         this.postGenericVnfData(vnf.getVnfId(), vnf);
726                     } catch (AAIServiceException exc) {
727                         if(exc.getReturnCode() == 404){
728                             return QueryStatus.NOT_FOUND;
729                         } else {
730                             getLogger().warn("Failed delete - returning FAILURE", exc);
731                             return QueryStatus.FAILURE;
732                         }
733                     }
734                     return QueryStatus.SUCCESS;
735                 }
736             }
737         }
738         return QueryStatus.FAILURE;
739     }
740
741     @Override
742     public QueryStatus exists(String resource, String key, String prefix, SvcLogicContext ctx) throws SvcLogicException {
743         return query(resource, false, null, key, prefix, null, ctx);
744     }
745
746     @Override
747     public QueryStatus isAvailable(String arg0, String arg1, String arg2, SvcLogicContext arg3)
748             throws SvcLogicException {
749         throw new SvcLogicException("Method AAIService.isAvailable() has not been implemented yet");
750     }
751
752     @Override
753     public QueryStatus notify(String resource, String action, String key, SvcLogicContext ctx) throws SvcLogicException {
754         throw new SvcLogicException("Method AAIService.notify() has not been implemented yet");
755     }
756
757 //    @Override
758     public QueryStatus newModelQuery(String resource, boolean localOnly, String select, String key, String prefix, String orderBy, SvcLogicContext ctx) {
759
760         QueryStatus retval = QueryStatus.SUCCESS;
761         String modifier = null;
762
763         HashMap<String, String> nameValues = AAIServiceUtils.keyToHashMap(key, ctx);
764         if(resource.contains(":")) {
765             modifier = resource.split(":")[1];
766         }
767
768         try {
769             AAIRequest request = AAIRequest.createRequest(resource, nameValues);
770             if(request == null) {
771                 return QueryStatus.FAILURE;
772             }
773
774             Map<String, String> params = new HashMap<>();
775
776             request.processRequestPathValues(nameValues);
777             if(nameValues.containsKey("prefix")){
778                 Map<String, String> tmpParams = ctxGetBeginsWith(ctx, nameValues.get("prefix"));
779                 if(!tmpParams.isEmpty()) {
780                     params.putAll(tmpParams);
781                 }
782                 if("named-query".equals(resource))
783                     request.setRequestObject(extractNamedQueryDataFromQueryPrefix(nameValues, params));
784             }
785             String rv = getExecutor().get(request);
786
787             retval = processResponseData(rv, resource, request, prefix,  ctx, nameValues, modifier);
788
789         } catch(AAIServiceException aaiexc) {
790             int errorCode = aaiexc.getReturnCode();
791             ctx.setAttribute(prefix + ".error.message", aaiexc.getMessage());
792             if(errorCode >= 300) {
793                 ctx.setAttribute(prefix + ".error.http.response-code",
794                         Integer.toString(aaiexc.getReturnCode()));
795             }
796
797             if(aaiexc.getReturnCode() == 404)
798                 return QueryStatus.NOT_FOUND;
799
800             return QueryStatus.FAILURE;
801         } catch (Exception exc) {
802             getLogger().warn("requestGenericVnfData", exc);
803             ctx.setAttribute(prefix + ".error.message", exc.getMessage());
804             return QueryStatus.FAILURE;
805         }
806
807         return retval;
808     }
809
810     public QueryStatus processResponseData(String rv, String resource, AAIRequest request, String prefix,  SvcLogicContext ctx, Map<String, String> nameValues, String modifier) throws JsonParseException, JsonMappingException, IOException, AAIServiceException
811     {
812         Object response;
813
814             if(rv == null) {
815                 return QueryStatus.NOT_FOUND;
816             }
817
818             response = request.jsonStringToObject(rv);
819             if(response == null) {
820                 return QueryStatus.NOT_FOUND;
821             }
822
823             if("generic-query".equals(resource)) {
824                 SearchResults rd = SearchResults.class.cast(response);
825                 List<ResultData> rdList = rd.getResultData();
826                 if(rdList == null || rdList.isEmpty()) {
827                     return QueryStatus.NOT_FOUND;
828                 }
829                 ResultData rDatum = rdList.get(0);
830                 nameValues.put("selflink", rDatum.getResourceLink());
831                 AAIRequest req2 = AAIRequest.createRequest(rDatum.getResourceType(), nameValues);
832                 req2.processRequestPathValues(nameValues);
833                 rv = getExecutor().get(req2);
834                 if(rv == null) {
835                     return QueryStatus.NOT_FOUND;
836                 }
837
838                 response = req2.jsonStringToObject(rv);
839                 if(response == null) {
840                     return QueryStatus.NOT_FOUND;
841                 }
842             }
843
844             if("named-query".equals(resource)) {
845                 InventoryResponseItems rd = InventoryResponseItems.class.cast(response);
846                 List<InventoryResponseItem> iRIlist = rd.getInventoryResponseItem();
847                 if(iRIlist == null || iRIlist.isEmpty()) {
848                     return QueryStatus.NOT_FOUND;
849                 }
850             }
851
852             if("nodes-query".equals(resource)) {
853                 SearchResults rd = SearchResults.class.cast(response);
854                 List<ResultData> rdList = rd.getResultData();
855                 if(rdList == null || rdList.isEmpty()) {
856                     return QueryStatus.NOT_FOUND;
857                 }
858                 ResultData rDatum = rdList.get(0);
859                 response = rDatum;
860             }
861
862         if("formatted-query".equals(resource) || "custom-query".equals(resource)) {
863             FormattedQueryResultList rd = FormattedQueryResultList.class.cast(response);
864             List<Result> iRIlist = rd.getResults();
865             if(iRIlist == null || iRIlist.isEmpty()) {
866                 return QueryStatus.NOT_FOUND;
867             }
868         }
869
870         // process relationship list
871         // this is a temporary soluton to address the realationship handling changes added in Release 17.07
872         try {
873             Class<?> clazz = response.getClass();
874             Method getter = clazz.getMethod("getRelationshipList");
875             Object obj = getter.invoke(response);
876             if(obj != null && obj instanceof RelationshipList) {
877                 RelationshipList list = RelationshipList.class.cast(obj);
878                 AAIServiceUtils.populateRelationshipDataFromPath(list);
879             }
880         } catch(Exception exc) {
881             getLogger().debug("Retrofiting relationship data: " + exc.getMessage());
882         }
883
884             String preFix;
885             if(prefix == null || prefix.isEmpty()) {
886                 preFix = "";
887             } else {
888                 preFix = prefix + ".";
889             }
890
891             Map<String,Object> props = objectToProperties(response);
892             Set<String> keys = props.keySet();
893             for(String theKey: keys) {
894                 if(getLogger().isTraceEnabled())
895                     getLogger().trace(theKey);
896
897                 Object value = props.get(theKey);
898                 if(value == null)
899                     continue;
900                 Object type = value.getClass();
901                 if(value instanceof String) {
902                     ctx.setAttribute(preFix + theKey, value.toString());
903                     continue;
904                 }
905                 if(value instanceof Boolean) {
906                     ctx.setAttribute(preFix + theKey, value.toString());
907                     continue;
908                 }
909                 if(value instanceof Integer) {
910                     ctx.setAttribute(preFix + theKey, value.toString());
911                     continue;
912                 }
913                 if(value instanceof Long) {
914                     ctx.setAttribute(preFix + theKey, value.toString());
915                     continue;
916                 }
917
918                 if(value instanceof ArrayList) {
919                     ArrayList<?> array = ArrayList.class.cast(value);
920                     for(int i = 0; i < array.size(); i++) {
921                         writeList(array, String.format("%s.%s", prefix, theKey), ctx);
922                     }
923                     continue;
924                 }
925
926                 if("relationship-list".equals(theKey)){
927                     Map<String, Object> relationshipList = (Map<String, Object>)value;
928                     // we are interested in seeing just the selected relationship
929                     if(theKey.equals(modifier)) {
930                         List<?> relationships = (List<?>)relationshipList.get("relationship");
931                         if(relationships != null && !relationships.isEmpty()) {
932
933                             List newRelationships = new LinkedList();
934                             newRelationships.addAll(relationships);
935
936                             for(Object obj : newRelationships){
937                                 if(obj instanceof Map<?, ?>) {
938                                     Map<?, ?> relProperties = (Map<?, ?>)obj;
939                                     if(relProperties.containsKey("related-to")) {
940                                         Object relPropsRelatedTo = relProperties.get("related-to");
941
942                                         String relatedTo = nameValues.get("related_to");
943                                         if(relatedTo != null) {
944                                             relatedTo = relatedTo.trim().replace("'", "").replace("$", "").replace("'", "");
945                                             if(!relatedTo.equals(relPropsRelatedTo)) {
946                                                 relationships.remove(relProperties);
947                                             }
948                                             continue;
949                                         } else {
950                                             continue;
951                                         }
952                                     }
953                                 }
954                             }
955                         }
956                     }
957                     writeMap(relationshipList, String.format("%s.%s", prefix, theKey), ctx);
958                     continue;
959                 }
960
961                 if(value instanceof Map) {
962                     Map<String, Object> subnetsList = (Map<String, Object>)value;
963                     writeMap(subnetsList, String.format("%s.%s", prefix, theKey), ctx);
964                     continue;
965                 }
966
967             }
968         return QueryStatus.SUCCESS;
969     }
970
971
972     public QueryStatus newModelBackupRequest(String resource,  Map<String, String> params,  String prefix,  SvcLogicContext ctx) {
973
974         QueryStatus retval = QueryStatus.SUCCESS;
975         HashMap<String, String> nameValues = new HashMap<>();
976
977         try {
978             AAIRequest request = AAIRequest.createRequest(resource, nameValues);
979             if(request == null) {
980                 return QueryStatus.FAILURE;
981             }
982
983             boolean argsFound = false;
984             String[] arguments = request.getArgsList();
985             for(String name : arguments) {
986                 String tmpName = name.replaceAll("-", "_");
987                 String value = params.get(tmpName);
988                 if(value != null && !value.isEmpty()) {
989                     value = value.trim().replace("'", "").replace("$", "").replace("'", "");
990                     request.addRequestProperty(name, value);
991                     argsFound = true;
992                 }
993             }
994             if(!argsFound) {
995                 getLogger().warn("No arguments were found. Terminating backup request.");
996                 return QueryStatus.FAILURE;
997             }
998
999             String rv = getExecutor().get(request);
1000             ctx.setAttribute(prefix, rv);
1001         } catch(AAIServiceException aaiexc) {
1002             if(aaiexc.getReturnCode() == 404)
1003                 return QueryStatus.NOT_FOUND;
1004
1005             return QueryStatus.FAILURE;
1006         } catch (Exception exc) {
1007             getLogger().warn("newModelBackupRequest", exc);
1008             return QueryStatus.FAILURE;
1009         }
1010
1011         return retval;
1012     }
1013
1014     public AAIDatum newModelObjectRequest(String resource,  Map<String, String> params,  String prefix,  SvcLogicContext ctx)
1015             throws AAIServiceException {
1016
1017         AAIDatum response = null;
1018
1019         try {
1020             AAIRequest request = AAIRequest.createRequest(resource, params);
1021             if(request == null) {
1022                 return null;
1023             }
1024
1025             request.processRequestPathValues(params);
1026             String rv = getExecutor().get(request);
1027             response = request.jsonStringToObject(rv);
1028         } catch(AAIServiceException aaiexc) {
1029             throw aaiexc;
1030         } catch (Exception exc) {
1031             getLogger().warn("newModelBackupRequest", exc);
1032             throw new AAIServiceException(exc);
1033         }
1034
1035         return response;
1036     }
1037
1038
1039     @Override
1040     public QueryStatus release(String arg0, String arg1, SvcLogicContext arg2) throws SvcLogicException {
1041         throw new SvcLogicException("Method AAIService.release() has not been implemented yet");
1042     }
1043
1044     @Override
1045     public QueryStatus reserve(String arg0, String arg1, String arg2, String arg3, SvcLogicContext arg4)
1046             throws SvcLogicException {
1047         throw new SvcLogicException("Method AAIService.reserve() has not been implemented yet");
1048     }
1049
1050     private QueryStatus newModelSave(String resource, boolean force, String key, Map<String, String> params, String prefix, SvcLogicContext ctx) {
1051         getLogger().debug("Executing newModelSave for resource : " + resource);
1052         HashMap<String, String> nameValues = AAIServiceUtils.keyToHashMap(key, ctx);
1053
1054         try {
1055             ArrayList<String> subResources = new ArrayList<>();
1056             Set<String> set = params.keySet();
1057             Map<String, Method> setters = new HashMap<>();
1058             Map<String, Method> getters = new HashMap<>();
1059
1060             // 1. find class
1061             AAIRequest request = AAIRequest.createRequest(resource, nameValues);
1062             Class<? extends AAIDatum> resourceClass = request.getModelClass();
1063             getLogger().debug(resourceClass.getName());
1064             AAIDatum instance = resourceClass.newInstance();
1065
1066             {
1067                 Annotation[] annotations = resourceClass.getAnnotations();
1068                 for(Annotation annotation : annotations) {
1069                     Class<? extends Annotation> anotationType = annotation.annotationType();
1070                     String annotationName = anotationType.getName();
1071
1072                     // 2. find string property setters and getters for the lists
1073                     if("javax.xml.bind.annotation.XmlType".equals(annotationName)){
1074                         XmlType order = (XmlType)annotation;
1075                         String[]  values = order.propOrder();
1076                         for(String value : values) {
1077                             String id = AAIServiceUtils.camelCaseToDashedString(value);
1078                             Field field = resourceClass.getDeclaredField(value);
1079                             Class<?> type = field.getType();
1080                             Method setter = null;
1081                             try {
1082                                 setter = resourceClass.getMethod("set"+StringUtils.capitalize(value), type);
1083                                 if(type.getName().startsWith("java.lang") || "boolean".equals(type.getName()) || "long".equals(type.getName()) || "int".equals(type.getName())) {
1084                                     try {
1085                                         setter.setAccessible(true);
1086                                         Object arglist[] = new Object[1];
1087                                         arglist[0] = params.get(id);
1088
1089                                         if(arglist[0] != null) {
1090                                             if(!type.getName().equals("java.lang.String")) {
1091 //                                            getLogger().debug(String.format("Processing %s with parameter %s", types[0].getName(), value));
1092                                                 if("boolean".equals(type.getName())) {
1093                                                     arglist[0] = valueOf(Boolean.class, params.get(id));
1094                                                 } else if("int".equals(type.getName())) {
1095                                                     arglist[0] = valueOf(Integer.class, params.get(id));
1096                                                 } else if("long".equals(type.getName())) {
1097                                                         arglist[0] = valueOf(Long.class, params.get(id));
1098                                                 } else {
1099                                                     arglist[0] = valueOf(type, params.get(id));
1100                                                 }
1101                                             }
1102                                             Object obj = setter.invoke(instance, arglist);
1103                                         }
1104                                         set.remove(id);
1105
1106                                     } catch (Exception x) {
1107                                         Throwable cause = x.getCause();
1108                                         getLogger().warn("Failed process for " + resourceClass.getName(), x);
1109                                     }
1110                                 } else if("java.util.List".equals(type.getName())) {
1111                                     List<String> newValues = new ArrayList<>();
1112                                     String length = id+"_length";
1113                                     if(!params.isEmpty() && params.containsKey(length)) {
1114                                         String tmp = params.get(length);
1115                                         int count = Integer.parseInt(tmp);
1116                                         for(int i=0; i<count; i++) {
1117                                             String tmpValue = params.get(String.format("%s[%d]", id, i));
1118                                             newValues.add(tmpValue);
1119                                         }
1120                                         if(!newValues.isEmpty()) {
1121                                             Object o = setter.invoke(instance, newValues);
1122                                         }
1123                                     }
1124                                     set.remove(id);
1125                                 } else {
1126                                     setters.put(id, setter);
1127                                 }
1128                             } catch(Exception exc) {
1129
1130                             }
1131
1132                             Method getter;
1133                             try {
1134                                 getter = resourceClass.getMethod("get"+StringUtils.capitalize(value));
1135                                 if(!type.getName().equals("java.lang.String")) {
1136                                     getters.put(id, getter);
1137                                 }
1138                             } catch(Exception exc) {
1139
1140                             }
1141
1142                         }
1143                         subResources.addAll(Arrays.asList(values));
1144                     }
1145                 }
1146             }
1147
1148             // remove getters that have matching setter
1149             for(String setKey : setters.keySet()) {
1150                 if(getters.containsKey(setKey)) {
1151                     getters.remove(setKey);
1152                 }
1153             }
1154
1155             Set<String> relationshipKeys = new TreeSet<>();
1156             Set<String> vlansKeys = new TreeSet<>();
1157             Set<String> metadataKeys = new TreeSet<>();
1158
1159             for(String attribute : set) {
1160                 String value = params.get(attribute);
1161                 if(attribute.startsWith("relationship-list")) {
1162                     relationshipKeys.add(attribute);
1163                 } else if(attribute.startsWith("vlans")) {
1164                     vlansKeys.add(attribute);
1165                 } else if(attribute.startsWith("metadata")) {
1166                     metadataKeys.add(attribute);
1167                 }
1168             }
1169             // 3. find list property getters
1170             for(String attribute : set) {
1171                 String value = params.get(attribute);
1172                 Method method = getters.get(attribute);
1173                 if(method != null) {
1174                     try {
1175                         method.setAccessible(true);
1176                         Object arglist[] = new Object[0];
1177 //                        arglist[0] = value;
1178                         Class<?>[] types = method.getParameterTypes();
1179                         if(types.length == 0){
1180                             Object o = method.invoke(instance, arglist);
1181                             if(o instanceof ArrayList) {
1182                                 ArrayList<String> values = (ArrayList<String>)o;
1183 //                                getLogger().debug(String.format("Processing %s with parameter %s", types[0].getName(), value));
1184                                 value = value.replace("[", "").replace("]", "");
1185                                 List<String> items = Arrays.asList(value.split("\\s*,\\s*"));
1186                                 for(String s : items) {
1187                                     values.add(s.trim());
1188                                 }
1189                             }
1190                         }
1191                     } catch (Exception x) {
1192                         Throwable cause = x.getCause();
1193                         getLogger().warn("Failed process for " + resourceClass.getName(), x);
1194                     }
1195                 }
1196             }
1197             // 4. Process Relationships
1198             // add relationship list
1199             if( (subResources.contains("relationship-list") || subResources.contains("relationshipList")) &&  !relationshipKeys.isEmpty()) {
1200                 RelationshipList relationshipList = null;
1201                 Object obj = null;
1202                 Method getRelationshipListMethod = null;
1203                 try {
1204                      getRelationshipListMethod = resourceClass.getMethod("getRelationshipList");
1205                 } catch(Exception exc) {
1206                     getLogger().debug("Retrofiting relationship data: " + exc.getMessage());
1207                 }
1208
1209                 if(getRelationshipListMethod != null){
1210                     try {
1211                         getRelationshipListMethod.setAccessible(true);
1212                         obj = getRelationshipListMethod.invoke(instance);
1213                     } catch (InvocationTargetException x) {
1214                         Throwable cause = x.getCause();
1215                     }
1216                 }
1217                 if(obj != null && obj instanceof RelationshipList){
1218                     relationshipList = (RelationshipList)obj;
1219                 } else {
1220                     relationshipList = new RelationshipList();
1221                     Method setRelationshipListMethod = resourceClass.getMethod("setRelationshipList", RelationshipList.class);
1222                     if(setRelationshipListMethod != null){
1223                         try {
1224                             setRelationshipListMethod.setAccessible(true);
1225                             Object arglist[] = new Object[1];
1226                             arglist[0] = relationshipList;
1227
1228                             obj = setRelationshipListMethod.invoke(instance, arglist);
1229                         } catch (InvocationTargetException x) {
1230                             Throwable cause = x.getCause();
1231                         }
1232                     }
1233                 }
1234
1235                 List<Relationship> relationships = relationshipList.getRelationship();
1236
1237                 int i = 0;
1238                 while(true){
1239                     String searchKey = "relationship-list.relationship[" + i + "].related-to";
1240                     if(!params.containsKey(searchKey))
1241                         break;
1242                     int j = 0;
1243                     String relatedTo = params.get(searchKey);
1244                     String relatedLinkKey = "relationship-list.relationship[" + i + "].related-link";
1245                     String relatedLink = null;
1246                     if(params.containsKey(relatedLinkKey)) {
1247                         relatedLink = params.get(relatedLinkKey);
1248                     }
1249                     Relationship relationship = new Relationship();
1250                     relationships.add(relationship);
1251                     relationship.setRelatedTo(relatedTo);
1252                     getLogger().debug("About to process related link of {}", relatedLink);
1253                     if(relatedLink != null) {
1254                         if(relatedLink.contains("v$"))
1255                             relatedLink = relatedLink.replace("v$", "v13");
1256                         relationship.setRelatedLink(relatedLink);
1257                     } else {
1258                         Map<String, String> relParams = new HashMap<>();
1259
1260                         while(true) {
1261                             String searchRelationshipKey = "relationship-list.relationship[" + i + "].relationship-data[" + j + "].relationship-key";
1262                             String searchRelationshipValue = "relationship-list.relationship[" + i + "].relationship-data[" + j + "].relationship-value";
1263                                 if(!params.containsKey(searchRelationshipKey))
1264                                 break;
1265
1266                                 relParams.put(params.get(searchRelationshipKey), params.get(searchRelationshipValue));
1267                             j++;
1268                         }
1269                         AAIRequest rlRequest = AAIRequest.createRequest(relatedTo, relParams);
1270                         for(Map.Entry<String,String> entry : relParams.entrySet()) {
1271                             rlRequest.addRequestProperty(entry.getKey(), entry.getValue());
1272                         }
1273                         String path = rlRequest.updatePathDataValues(null);
1274                         relationship.setRelatedLink(path);
1275                     }
1276                     {
1277                         int k = 0;
1278                         // process related to properties
1279                         Map<String, String> relParams = new HashMap<String, String>();
1280
1281                         while(true) {
1282                             String searchRelatedToKey = "relationship-list.relationship[" + i + "].related-to-property[" + k + "].property-key";
1283                             String searchRelatedToValue = "relationship-list.relationship[" + i + "].related-to-property[" + k + "].property-value";
1284                             if(!params.containsKey(searchRelatedToKey))
1285                                 break;
1286
1287                             RelatedToProperty relDatum = new RelatedToProperty();
1288                             relDatum.setPropertyKey(params.get(searchRelatedToKey));
1289                             relDatum.setPropertyValue(params.get(searchRelatedToValue));
1290                             relationship.getRelatedToProperty().add(relDatum);
1291
1292                             relParams.put(params.get(searchRelatedToKey), params.get(searchRelatedToValue));
1293                             k++;
1294                         }
1295                     }
1296                     i++;
1297                 }
1298             }
1299
1300             // 4. vlans
1301             if(subResources.contains("vlans") &&  !vlansKeys.isEmpty()) {
1302                 Object obj = null;
1303                 Vlans vlanList = null;
1304                 Method getVLansMethod = resourceClass.getMethod("getVlans");
1305                 if(getVLansMethod != null){
1306                     try {
1307                         getVLansMethod.setAccessible(true);
1308                         obj = getVLansMethod.invoke(instance);
1309                     } catch (InvocationTargetException x) {
1310                         Throwable cause = x.getCause();
1311                     }
1312                 }
1313                 if(obj != null && obj instanceof Vlans){
1314                     vlanList = (Vlans)obj;
1315                 } else {
1316                     vlanList = new Vlans();
1317                     Method setVlansMethod = resourceClass.getMethod("setVlans", Vlans.class);
1318                     if(setVlansMethod != null){
1319                         try {
1320                             setVlansMethod.setAccessible(true);
1321                             Object arglist[] = new Object[1];
1322                             arglist[0] = vlanList;
1323
1324                             obj = setVlansMethod.invoke(instance, arglist);
1325                         } catch (InvocationTargetException x) {
1326                             Throwable cause = x.getCause();
1327                         }
1328                     }
1329                 }
1330
1331                 int i = 0;
1332                 while(true){
1333                     String searchKey = "vlans.vlan[" + i + "].vlan-interface";
1334                     if(!params.containsKey(searchKey))
1335                         break;
1336
1337                     String vlanInterface = params.get("vlans.vlan[" + i + "].vlan-interface");
1338                     String vlanIdInner    = params.get("vlans.vlan[" + i + "].vlan-id-inner");
1339                     String vlanIdOute     = params.get("vlans.vlan[" + i + "].vlan-id-outer");
1340                     String speedValue     = params.get("vlans.vlan[" + i + "].speed-value");
1341                     String speedUnits     = params.get("vlans.vlan[" + i + "].speed-units");
1342
1343                     Vlan vlan = new Vlan();
1344                     vlan.setVlanInterface(vlanInterface);
1345
1346                     if(vlanIdInner != null) {
1347                     Long iVlanIdInner = Long.parseLong(vlanIdInner);
1348                     vlan.setVlanIdInner(iVlanIdInner);
1349                     }
1350
1351                     if(vlanIdOute != null) {
1352                         Long iVlanIdOuter = Long.parseLong(vlanIdOute);
1353                     vlan.setVlanIdOuter(iVlanIdOuter);
1354                     }
1355
1356                     if(speedValue != null) {
1357                     vlan.setSpeedValue(speedValue);
1358                     vlan.setSpeedUnits(speedUnits);
1359                     }
1360
1361                     vlanList.getVlan().add(vlan);
1362                     i++;
1363                 }
1364             }
1365
1366             // 5. metadata
1367             if(subResources.contains("metadata") &&  !metadataKeys.isEmpty()) {
1368                 Object obj = null;
1369                 Metadata metadataList = null;
1370                 Method getMetadataMethod = resourceClass.getMethod("getMetadata");
1371                 if(getMetadataMethod != null){
1372                     try {
1373                         getMetadataMethod.setAccessible(true);
1374                         obj = getMetadataMethod.invoke(instance);
1375                     } catch (InvocationTargetException x) {
1376                         Throwable cause = x.getCause();
1377                     }
1378                 }
1379                 if(obj != null && obj instanceof Metadata){
1380                     metadataList = (Metadata)obj;
1381                 } else {
1382                     metadataList = new Metadata();
1383                     Method setMetadataMethod = resourceClass.getMethod("setMetadata", Metadata.class);
1384                     if(setMetadataMethod != null){
1385                         try {
1386                             setMetadataMethod.setAccessible(true);
1387                             Object arglist[] = new Object[1];
1388                             arglist[0] = metadataList;
1389
1390                             obj = setMetadataMethod.invoke(instance, arglist);
1391                         } catch (InvocationTargetException x) {
1392                             Throwable cause = x.getCause();
1393                         }
1394                     }
1395                 }
1396
1397                 // process data
1398                 int i = 0;
1399                 while(true){
1400                     String metaKey = "metadata.metadatum[" + i + "].meta-key";
1401                     if(!params.containsKey(metaKey))
1402                         break;
1403
1404                     String metaValue = params.get("metadata.metadatum[" + i + "].meta-value");
1405
1406                     Metadatum vlan = new Metadatum();
1407                     vlan.setMetaname(metaKey);
1408                     vlan.setMetaval(metaValue);
1409
1410                     metadataList.getMetadatum().add(vlan);
1411                     i++;
1412                 }
1413
1414             }
1415
1416
1417             // 6. Prepare AAI request
1418             String[] args = request.getArgsList();
1419             for(String arg : args) {
1420                 String modifiedKey = arg.replaceAll("-", "_");
1421                 if(nameValues.containsKey(modifiedKey)) {
1422                     String argValue = nameValues.get(modifiedKey);
1423                     if(argValue != null) argValue = argValue.trim().replace("'", "").replace("$", "").replace("'", "");
1424                     request.addRequestProperty(arg, argValue);
1425                 }
1426             }
1427
1428             request.processRequestPathValues(nameValues);
1429             request.setRequestObject(instance);
1430                 Object response = getExecutor().post(request);
1431                 if(request.expectsDataFromPUTRequest()){
1432                     if(response != null && response instanceof String) {
1433                         String rv = response.toString();
1434                         QueryStatus retval = processResponseData(rv, resource, request, prefix,  ctx, nameValues, null);
1435                         getLogger().debug("newModelSave - returning " + retval.toString());
1436                         return retval;
1437                     }
1438                 }
1439
1440         } catch(AAIServiceException exc){
1441             ctx.setAttribute(prefix + ".error.message", exc.getMessage());
1442             int returnCode = exc.getReturnCode();
1443             if(returnCode >= 300) {
1444                 ctx.setAttribute(prefix + ".error.http.response-code",
1445                         Integer.toString(exc.getReturnCode()));
1446             }
1447
1448             if(returnCode == 400 || returnCode == 412)
1449                 return QueryStatus.FAILURE;
1450             else if(returnCode == 404)
1451                 return QueryStatus.NOT_FOUND;
1452             else {
1453                 getLogger().warn("Failed newModelSave - returning FAILURE", exc);
1454                 return QueryStatus.FAILURE;
1455             }
1456         } catch(Exception exc){
1457             getLogger().warn("Failed newModelSave - returning FAILURE", exc);
1458             ctx.setAttribute(prefix + ".error.message", exc.getMessage());
1459             return QueryStatus.FAILURE;
1460         }
1461
1462         getLogger().debug("newModelSave - returning SUCCESS");
1463         return QueryStatus.SUCCESS;
1464     }
1465
1466     private QueryStatus newModelProcessRelationshipList(Object instance, Map<String, String> params, String prefix, SvcLogicContext ctx) throws Exception {
1467
1468         Class resourceClass = instance.getClass();
1469
1470         Set<String> relationshipKeys = new TreeSet<>();
1471
1472         Set<String> set = params.keySet();
1473
1474         for(String attribute : set) {
1475             String value = params.get(attribute);
1476
1477             if(attribute.startsWith("relationship-list")) {
1478                 relationshipKeys.add(attribute);
1479             }
1480         }
1481
1482         // 3. Process Relationships
1483         // add relationship list
1484         if(!relationshipKeys.isEmpty()) {
1485             RelationshipList relationshipList;
1486             Object obj = null;
1487             Method getRelationshipListMethod = null;
1488             try {
1489                  getRelationshipListMethod = resourceClass.getMethod("getRelationshipList");
1490             } catch(Exception exc) {
1491                 getLogger().debug("Retrofiting relationship data: " + exc.getMessage());
1492             }
1493             if(getRelationshipListMethod != null){
1494                 try {
1495                     getRelationshipListMethod.setAccessible(true);
1496                     obj = getRelationshipListMethod.invoke(instance);
1497                 } catch (InvocationTargetException x) {
1498                     Throwable cause = x.getCause();
1499                 }
1500             }
1501             if(obj != null && obj instanceof RelationshipList){
1502                 relationshipList = (RelationshipList)obj;
1503             } else {
1504                 relationshipList = new RelationshipList();
1505                 Method setRelationshipListMethod = resourceClass.getMethod("setRelationshipList", RelationshipList.class);
1506                 if(setRelationshipListMethod != null){
1507                     try {
1508                         setRelationshipListMethod.setAccessible(true);
1509                         Object arglist[] = new Object[1];
1510                         arglist[0] = relationshipList;
1511
1512                         obj = setRelationshipListMethod.invoke(instance, arglist);
1513                     } catch (InvocationTargetException x) {
1514                         Throwable cause = x.getCause();
1515                     }
1516                 }
1517             }
1518
1519             boolean createdNewRelationships = false;
1520             List<Relationship> relationships = relationshipList.getRelationship();
1521             if(relationships == null) {
1522                 relationships = new ArrayList<>();
1523                 createdNewRelationships = true;
1524             }
1525
1526             int i = 0;
1527             while(true){
1528                 String searchKey = "relationship-list.relationship[" + i + "].related-to";
1529                 if(!params.containsKey(searchKey))
1530                     break;
1531
1532                 String relatedTo = params.get(searchKey);
1533                 String relatedLinkKey = "relationship-list.relationship[" + i + "].related-link";
1534                 String relatedLink = null;
1535                 if(params.containsKey(relatedLinkKey)) {
1536                     relatedLink = params.get(relatedLinkKey);
1537                 }
1538
1539                 Relationship relationship = new Relationship();
1540                 relationships.add(relationship);
1541                 relationship.setRelatedTo(relatedTo);
1542                 if (relatedLink != null) {
1543                     if(relatedLink.contains("v$"))
1544                         relatedLink = relatedLink.replace("v$", "v13");
1545                     relationship.setRelatedLink(relatedLink);
1546                 } else {
1547                     Map<String, String> relParams = new HashMap<>();
1548                     int j = 0;
1549
1550                     while (true) {
1551                         String searchRelationshipKey = "relationship-list.relationship[" + i + "].relationship-data["
1552                                 + j + "].relationship-key";
1553                         String searchRelationshipValue = "relationship-list.relationship[" + i + "].relationship-data["
1554                                 + j + "].relationship-value";
1555                         if (!params.containsKey(searchRelationshipKey))
1556                             break;
1557
1558                         RelationshipData relDatum = new RelationshipData();
1559                         relDatum.setRelationshipKey(params.get(searchRelationshipKey));
1560                         relDatum.setRelationshipValue(params.get(searchRelationshipValue));
1561                         relationship.getRelationshipData().add(relDatum);
1562
1563                         relParams.put(params.get(searchRelationshipKey), params.get(searchRelationshipValue));
1564                         j++;
1565                     }
1566                     AAIRequest rlRequest = AAIRequest.createRequest(relatedTo, relParams);
1567                     for (Map.Entry<String, String> entry : relParams.entrySet()) {
1568                         rlRequest.addRequestProperty(entry.getKey(), entry.getValue());
1569                     }
1570                     String path = rlRequest.updatePathDataValues(null);
1571                     relationship.setRelatedLink(path);
1572                 }
1573                 {
1574                     int k = 0;
1575                     // process related to properties
1576                     Map<String, String> relParams = new HashMap<String, String>();
1577
1578                     while(true) {
1579                         String searchRelatedToKey = "relationship-list.relationship[" + i + "].related-to-property[" + k + "].property-key";
1580                         String searchRelatedToValue = "relationship-list.relationship[" + i + "].related-to-property[" + k + "].property-value";
1581                         if(!params.containsKey(searchRelatedToKey))
1582                             break;
1583
1584                         RelatedToProperty relDatum = new RelatedToProperty();
1585                         relDatum.setPropertyKey(params.get(searchRelatedToKey));
1586                         relDatum.setPropertyValue(params.get(searchRelatedToValue));
1587                         relationship.getRelatedToProperty().add(relDatum);
1588
1589                         relParams.put(params.get(searchRelatedToKey), params.get(searchRelatedToValue));
1590                         k++;
1591                     }
1592                 }
1593
1594                 i++;
1595             }
1596         }
1597
1598         return QueryStatus.SUCCESS;
1599     }
1600
1601     private QueryStatus newModelProcessMetadata(Object instance, Map<String, String> params, String prefix, SvcLogicContext ctx) throws Exception {
1602
1603         if (!(instance instanceof ServiceInstance) && !(instance instanceof Image)) {
1604             throw new IllegalArgumentException("request is not applicable for selected request");
1605         }
1606
1607         Class resourceClass = instance.getClass();
1608         Set<String> metadataKeys = new TreeSet<String>();
1609         Set<String> set = params.keySet();
1610         for(String attribute : set) {
1611             if(attribute.startsWith("metadata")) {
1612                 metadataKeys.add(attribute);
1613             }
1614         }
1615
1616         // 3. Process Metadata
1617         // add metadata
1618         if(!metadataKeys.isEmpty()) {
1619             Metadata metadata = null;
1620             Object obj = null;
1621             Method getMetadataMethod = resourceClass.getMethod("getMetadata");
1622             if(getMetadataMethod != null){
1623                 try {
1624                     getMetadataMethod.setAccessible(true);
1625                     obj = getMetadataMethod.invoke(instance);
1626                 } catch (InvocationTargetException x) {
1627                     Throwable cause = x.getCause();
1628                 }
1629             }
1630             if(obj != null && obj instanceof Metadata){
1631                 metadata = (Metadata)obj;
1632             } else {
1633                 metadata = new Metadata();
1634                 Method setMetadataMethod = resourceClass.getMethod("setMetadata", Metadata.class);
1635                 if(setMetadataMethod != null){
1636                     try {
1637                         setMetadataMethod.setAccessible(true);
1638                         setMetadataMethod.invoke(instance, metadata);
1639                     } catch (InvocationTargetException x) {
1640                     }
1641                 }
1642             }
1643
1644             List<Metadatum> metadatumList = metadata.getMetadatum();
1645             int i = 0;
1646             while(true){
1647                 String metaNameKey = "metadata.metadatum[" + i + "].metaname";
1648                 String metaValueKey = "metadata.metadatum[" + i + "].metaval";
1649                 if(!params.containsKey(metaNameKey) || !params.containsKey(metaValueKey))
1650                     break;
1651
1652                 Metadatum metadatum = new Metadatum();
1653                 metadatum.setMetaname(params.get(metaNameKey));
1654                 metadatum.setMetaval(params.get(metaValueKey));
1655                 metadatumList.add(metadatum);
1656
1657                 i++;
1658             }
1659         }
1660
1661         return QueryStatus.SUCCESS;
1662     }
1663
1664     private Relationship findRelationship(List<Relationship> relationships, String relatedTo) {
1665         if(relatedTo == null)
1666             return null;
1667
1668         for(Relationship relationship : relationships) {
1669             if(relationship.getRelatedTo().equals(relatedTo)){
1670                 return relationship;
1671             }
1672         }
1673         return null;
1674     }
1675
1676
1677     public QueryStatus backup(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
1678         String resource = params.get("resource").toLowerCase();
1679         String prefix = params.get("data-key");
1680
1681         HashMap<String, String> nameValues = new HashMap<>();
1682         if(AAIRequest.createRequest(resource, nameValues) != null) {
1683
1684             try {
1685                 return newModelBackupRequest(resource, params, prefix, ctx);
1686             } catch (Exception exc) {
1687                 getLogger().warn("Failed backup - returning FAILURE", exc);
1688                 return QueryStatus.FAILURE;
1689             }
1690         }
1691
1692         return QueryStatus.NOT_FOUND;
1693     }
1694
1695     @Override
1696     public QueryStatus restore(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
1697
1698         QueryStatus retval = QueryStatus.SUCCESS;
1699         String resource = params.get("resource").toLowerCase();
1700         String prefix = params.get("data-key");
1701
1702         HashMap<String, String> nameValues = new HashMap<>();
1703         if(AAIRequest.createRequest(resource, nameValues) != null) {
1704
1705             try {
1706                 retval = newModelBackupRequest(resource, params, "tmpRestore", ctx);
1707                 if(retval == QueryStatus.SUCCESS) {
1708                     ctx.setAttribute("tmpRestore", null);
1709                 }
1710             } catch (Exception exc) {
1711                 getLogger().warn("Failed restore - returning FAILURE", exc);
1712                 return QueryStatus.FAILURE;
1713             }
1714         }
1715
1716         return QueryStatus.NOT_FOUND;
1717     }
1718
1719     protected Map<String, Object> objectToProperties(Object object) {
1720         ObjectMapper mapper = AAIService.getObjectMapper();
1721         return mapper.convertValue(object, Map.class);
1722     }
1723
1724     static <T> T valueOf(Class<T> klazz, String arg) {
1725         Exception cause = null;
1726         T ret = null;
1727         try {
1728             ret = klazz.cast(klazz.getDeclaredMethod("valueOf", String.class).invoke(null, arg));
1729         } catch (NoSuchMethodException exc) {
1730             LoggerFactory.getLogger(AAIService.class).warn("Wrong data type", exc);
1731             ret = klazz.cast(arg);
1732         } catch (IllegalAccessException e) {
1733             cause = e;
1734         } catch (InvocationTargetException e) {
1735             cause = e;
1736         }
1737         if (cause == null) {
1738             return ret;
1739         } else {
1740             throw new IllegalArgumentException(cause);
1741         }
1742     }
1743
1744     private QueryStatus processDeleteRelationshipList(String resource, String key, SvcLogicContext ctx, HashMap<String, String> nameValues) {
1745         try {
1746             AAIRequest request = AAIRequest.createRequest(resource, nameValues);
1747             if(request == null) {
1748                 return QueryStatus.FAILURE;
1749             }
1750
1751             request.processRequestPathValues(nameValues);
1752             URL url = request.getRequestUrl("GET", null);
1753
1754             Class resourceClass = request.getModelClass();
1755             Object instance = getResource(url.toString(), resourceClass);
1756             if(instance == null)
1757                 return QueryStatus.NOT_FOUND;
1758
1759             // get resource version
1760             String resourceVersion = null;
1761             Method getResourceVersionMethod = resourceClass.getMethod("getResourceVersion");
1762             if(getResourceVersionMethod != null){
1763                 try {
1764                     getResourceVersionMethod.setAccessible(true);
1765                     Object object = getResourceVersionMethod.invoke(instance);
1766                     if(object != null)
1767                         resourceVersion = object.toString();
1768                 } catch (InvocationTargetException exc) {
1769                     getLogger().warn("Retrieving resource version", exc);
1770                 }
1771             }
1772
1773             RelationshipList relationshipList = null;
1774             Object obj = null;
1775             Method getRelationshipListMethod = null;
1776             try {
1777                  getRelationshipListMethod = resourceClass.getMethod("getRelationshipList");
1778             } catch(Exception exc) {
1779                 getLogger().debug("Retrofiting relationship data: " + exc.getMessage());
1780             }
1781             if(getRelationshipListMethod != null){
1782                 try {
1783                     getRelationshipListMethod.setAccessible(true);
1784                     obj = getRelationshipListMethod.invoke(instance);
1785                 } catch (InvocationTargetException x) {
1786                     Throwable cause = x.getCause();
1787                 }
1788             }
1789             if(obj != null && obj instanceof RelationshipList){
1790                 relationshipList = (RelationshipList)obj;
1791             } else {
1792                 getLogger().debug("No relationships found to process.");
1793                 return QueryStatus.NOT_FOUND;
1794             }
1795
1796             if(relationshipList.getRelationship() == null || relationshipList.getRelationship().isEmpty()) {
1797                 return QueryStatus.NOT_FOUND;
1798             }
1799             String relatedTo = nameValues.get("related_to");
1800             if(relatedTo == null) {
1801                 return QueryStatus.FAILURE;
1802             }
1803
1804             relatedTo = relatedTo.replaceAll("_", "-");
1805
1806             String relatedLink = nameValues.get("relationship.related_link");
1807             if(relatedLink != null) {
1808                 relatedLink = URLDecoder.decode(relatedLink, "UTF-8");
1809             }
1810
1811             List<Relationship> relationships = relationshipList.getRelationship();
1812             List<Relationship> relationshipsToDelete = new LinkedList<>();
1813
1814             for(Relationship relationship : relationships) {
1815                 if(relatedTo.equals(relationship.getRelatedTo())) {
1816                     if(relatedLink != null) {
1817                         if(relationship.getRelatedLink() != null ) {
1818                             String localRelatedLink = relationship.getRelatedLink();
1819                             localRelatedLink = URLDecoder.decode(localRelatedLink, "UTF-8");
1820                             if(localRelatedLink.endsWith(relatedLink)) {
1821                                 getLogger().debug(String.format("Found relationship of '%s' to keyword '%s'", relationship.getRelatedTo(),  relatedTo));
1822                                 relationshipsToDelete.add(relationship);
1823                         }
1824                     }
1825                     } else {
1826                     getLogger().debug(String.format("Found relationship of '%s' to keyword '%s'", relationship.getRelatedTo(),  relatedTo));
1827                     relationshipsToDelete.add(relationship);
1828                 }
1829             }
1830             }
1831             if(relationshipsToDelete == null || relationshipsToDelete.isEmpty()) {
1832                 getLogger().info(String.format("Relationship has not been found for %s", key));
1833                 return QueryStatus.NOT_FOUND;
1834             }
1835
1836             String path = url.toString();
1837             path = path + "/relationship-list/relationship";
1838             URL deleteUrl = new URL(path);
1839
1840             ObjectMapper mapper = AAIService.getObjectMapper();
1841
1842             boolean cumulativeResponse = true;
1843
1844             for(Relationship targetRelationship : relationshipsToDelete) {
1845                 String json_text = mapper.writeValueAsString(targetRelationship);
1846                 boolean response = deleteList(deleteUrl, json_text);
1847                 if(!response)
1848                     cumulativeResponse = response;
1849
1850             }
1851
1852             if(!cumulativeResponse)
1853                 return QueryStatus.FAILURE;
1854
1855             return QueryStatus.SUCCESS;
1856
1857         } catch(Exception exc) {
1858             getLogger().warn("processDelete", exc);
1859             return QueryStatus.FAILURE;
1860         }
1861     }
1862
1863     private QueryStatus processDeleteMetadata(String resource, String key, SvcLogicContext ctx, HashMap<String, String> nameValues) {
1864         try {
1865             AAIRequest request = AAIRequest.createRequest(resource, nameValues);
1866             if(request == null) {
1867                 return QueryStatus.FAILURE;
1868             }
1869
1870             request.processRequestPathValues(nameValues);
1871             URL url = request.getRequestUrl("GET", null);
1872
1873             Class<?> resourceClass = request.getModelClass();
1874             Object instance = getResource(url.toString(), resourceClass);
1875
1876             // get resource version
1877             String resourceVersion = null;
1878             Method getResourceVersionMethod = resourceClass.getMethod("getResourceVersion");
1879             if(getResourceVersionMethod != null){
1880                 try {
1881                     getResourceVersionMethod.setAccessible(true);
1882                     resourceVersion = (String) getResourceVersionMethod.invoke(instance);
1883                 } catch (InvocationTargetException x) {
1884                 }
1885             }
1886
1887             Metadata metadata = null;
1888             Object obj = null;
1889             Method getMetadataMethod = resourceClass.getMethod("getMetadata");
1890             if(getMetadataMethod != null){
1891                 try {
1892                     getMetadataMethod.setAccessible(true);
1893                     obj = getMetadataMethod.invoke(instance);
1894                 } catch (InvocationTargetException x) {
1895                     Throwable cause = x.getCause();
1896                 }
1897             }
1898             if(obj != null && obj instanceof Metadata){
1899                 metadata = (Metadata)obj;
1900             } else {
1901                 getLogger().debug("No metadata found to process.");
1902                 return QueryStatus.NOT_FOUND;
1903             }
1904
1905             if(metadata.getMetadatum() == null || metadata.getMetadatum().isEmpty()) {
1906                 return QueryStatus.NOT_FOUND;
1907             }
1908
1909             List<Metadatum> metadatumList = metadata.getMetadatum();
1910             Metadatum metadatumToDelete = null;
1911
1912             final String metaname = nameValues.get("metaname");
1913
1914             for(Metadatum metadatum : metadatumList) {
1915                 getLogger().debug(String.format("Comparing existing metadatum of '%s' to keyword '%s'", metadatum.getMetaname(),  metaname));
1916                 if(metaname.equals(metadatum.getMetaname())) {
1917                     metadatumToDelete = metadatum;
1918                     break;
1919                 }
1920             }
1921             if(metadatumToDelete == null) {
1922                 getLogger().info(String.format("Metadatum has not been found for %s", key));
1923                 return QueryStatus.NOT_FOUND;
1924             }
1925
1926             String path = url.toString();
1927             path = path + "/metadata/metadatum/" + encodeQuery( metadatumToDelete.getMetaname() ) +
1928                     "?resource-version=" + metadatumToDelete.getResourceVersion();
1929             URL deleteUrl = new URL(path);
1930             boolean response = deleteList(deleteUrl, null);
1931
1932             if(!response)
1933                 return QueryStatus.FAILURE;
1934
1935             return QueryStatus.SUCCESS;
1936
1937         } catch(Exception exc) {
1938             getLogger().warn("processDelete", exc);
1939             return QueryStatus.FAILURE;
1940         }
1941     }
1942
1943     protected String encodeQuery(String param) throws UnsupportedEncodingException {
1944         return URLEncoder.encode(param, "UTF-8").replace("+", "%20");
1945     }
1946
1947     static final Map<String, String> ctxGetBeginsWith( SvcLogicContext ctx, String prefix ) {
1948         Map<String, String> tmpPrefixMap = new HashMap<>();
1949
1950         if(prefix == null || prefix.isEmpty()){
1951             return tmpPrefixMap;
1952         }
1953
1954         for( String key : ctx.getAttributeKeySet() ) {
1955             if( key.startsWith(prefix) ) {
1956                 String tmpKey = key.substring(prefix.length() + 1);
1957                 tmpPrefixMap.put( tmpKey, ctx.getAttribute(key));
1958             }
1959         }
1960
1961         Map<String, String> prefixMap = new HashMap<>();
1962         Pattern p = Pattern.compile(".*\\[\\d\\]");
1963
1964         SortedSet<String> keys = new TreeSet<String>(tmpPrefixMap.keySet () );
1965         for(String key : keys) {
1966             Matcher m = p.matcher(key);
1967             if(m.matches()) {
1968                 continue;
1969             } else if(key.endsWith("_length")) {
1970                 String listKey = key.substring(0, key.indexOf("_length"));
1971                 int max = Integer.parseInt(tmpPrefixMap.get(key));
1972
1973                 ArrayList<String> data = new ArrayList<>();
1974                 for(int x = 0; x < max; x++){
1975                     String tmpKey = String.format("%s[%d]", listKey, x);
1976                     String tmpValue = tmpPrefixMap.get(tmpKey);
1977                     if(tmpValue != null && !tmpValue.isEmpty()) {
1978                         data.add(tmpValue);
1979                     }
1980                 }
1981                 if(!data.isEmpty()) {
1982                     prefixMap.put(listKey, data.toString());
1983                 } else {
1984                     prefixMap.put(key, tmpPrefixMap.get(key));
1985                 }
1986             } else {
1987                 prefixMap.put(key, tmpPrefixMap.get(key));
1988             }
1989         }
1990
1991         return prefixMap;
1992     }
1993
1994     /**
1995     */
1996     protected NamedQueryData extractNamedQueryDataFromQueryPrefix(HashMap<String, String> nameValues, Map<String, String> parms) {
1997         if(parms.isEmpty()) {
1998             return null;
1999         }
2000
2001         NamedQueryData data = new NamedQueryData();
2002
2003         // query parameters
2004         if(data.getQueryParameters() == null) {
2005             data.setQueryParameters(new QueryParameters());
2006         }
2007         String namedQueryUuid = nameValues.get("named-query-uuid".replaceAll("-", "_"));
2008         if(namedQueryUuid == null) {
2009             namedQueryUuid = parms.get("query-parameters.named-query.named-query-uuid");
2010         }
2011         NamedQuery namedQuery = new NamedQuery();
2012         namedQuery.setNamedQueryUuid(namedQueryUuid);
2013         data.getQueryParameters().setNamedQuery(namedQuery);
2014
2015         // instance filters
2016         if(data.getInstanceFilters() == null) {
2017             data.setInstanceFilters(new InstanceFilters());
2018         }
2019
2020
2021         String quantity = parms.get("instance-filters.instance-filter_length");
2022         if(quantity != null && StringUtils.isNumeric(quantity)) {
2023             int max = Integer.parseInt(quantity);
2024             for(int i = 0; i < max; i++) {
2025                 String keyPattern = String.format("instance-filters.instance-filter[%d].", i);
2026                 Set<String> keys = parms.keySet();
2027                 for(String key: keys) {
2028                     if(key.startsWith(keyPattern)){
2029                         String value = parms.get(key);
2030                         String remainder = key.substring(keyPattern.length());
2031                         String[] split = remainder.split("\\.");
2032                         getLogger().debug(String.format("%s", remainder));
2033                         if("logical-link".equals(split[0])) {
2034                             InstanceFilter insf = null;
2035                             if(data.getInstanceFilters().getInstanceFilter().isEmpty()) {
2036                                 insf = new InstanceFilter();
2037                                 data.getInstanceFilters().getInstanceFilter().add(insf);
2038                             } else {
2039                                 insf = data.getInstanceFilters().getInstanceFilter().get(0);
2040                             }
2041                             LogicalLink logicalLink = insf.getLogicalLink();
2042                             if(logicalLink == null) {
2043                                 logicalLink = new LogicalLink();
2044                                 insf.setLogicalLink(logicalLink);
2045                             }
2046
2047                             switch(split[1]) {
2048                             case "link-name":
2049                                 logicalLink.setLinkName(value);
2050                                 break;
2051                             case "link-type":
2052                                 logicalLink.setLinkType(value);
2053                                 break;
2054                             case "operational-state":
2055                                 logicalLink.setOperationalStatus(value);
2056                                 break;
2057                             }
2058
2059                         } else if("pnf".equals(split[0])) {
2060                             Pnf pnf = new Pnf();
2061                             pnf.setPnfName(value);
2062
2063                             InstanceFilter insf = new InstanceFilter();
2064                             insf.setPnf(pnf);
2065                             data.getInstanceFilters().getInstanceFilter().add(insf);
2066
2067                         } else if("service-instance".equals(split[0])) {
2068                             ServiceInstance serviceInstance = new ServiceInstance();
2069                             serviceInstance.setServiceInstanceId(value);
2070
2071                             InstanceFilter insf = new InstanceFilter();
2072                             insf.setServiceInstance(serviceInstance);
2073                             data.getInstanceFilters().getInstanceFilter().add(insf);
2074
2075                         } else if("l3-network".equals(split[0])) {
2076                             L3Network l3Network = new L3Network();
2077                             if("network-role".equals(split[1])) {
2078                                 l3Network.setNetworkRole(value);
2079                             }
2080
2081                             InstanceFilter insf = new InstanceFilter();
2082                             insf.setL3Network(l3Network);
2083                             data.getInstanceFilters().getInstanceFilter().add(insf);
2084                         } else if("generic-vnf".equals(split[0])) {
2085                             GenericVnf vnf = new GenericVnf();
2086                             if("vnf-id".equals(split[1])) {
2087                                 vnf.setVnfId(value);
2088                             }
2089
2090                             InstanceFilter insf = new InstanceFilter();
2091                             insf.setGenericVnf(vnf);
2092                             data.getInstanceFilters().getInstanceFilter().add(insf);
2093                         }
2094                     }
2095                 }
2096             }
2097         }
2098
2099         return data;
2100     }
2101
2102     public abstract <T> T getResource(String key, Class<T> type) throws AAIServiceException ;
2103     protected abstract boolean deleteList(URL url, String caller) throws AAIServiceException;
2104 }