Containerization feature of SO
[so.git] / common / src / main / java / org / onap / so / client / aai / AAIQueryClient.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.client.aai;
22
23 import java.util.Optional;
24
25 import org.onap.so.client.RestClient;
26 import org.onap.so.client.aai.entities.CustomQuery;
27 import org.onap.so.client.aai.entities.uri.AAIUriFactory;
28 import org.onap.so.client.graphinventory.Format;
29 import org.onap.so.client.graphinventory.entities.uri.GraphInventoryUri;
30
31 public class AAIQueryClient extends AAIClient {
32
33         private Optional<String> depth = Optional.empty();
34         private boolean nodesOnly = false;
35         private Optional<AAISubgraphType> subgraph = Optional.empty();
36         
37         public AAIQueryClient() {
38                 super();
39         }
40         
41         public AAIQueryClient(AAIVersion version) {
42                 super();
43                 this.version = version;
44         }
45         
46         public String query(Format format, CustomQuery query) {
47                 return this.createClient(AAIUriFactory.createResourceUri(AAIObjectType.CUSTOM_QUERY).queryParam("format", format.toString()))
48                 .put(query, String.class);
49         }
50         
51         public AAIQueryClient depth (String depth) {
52                 this.depth = Optional.of(depth);
53                 return this;
54         }
55         public AAIQueryClient nodesOnly() {
56                 this.nodesOnly = true;
57                 return this;
58         }
59         public AAIQueryClient subgraph(AAISubgraphType type){
60                 
61                 subgraph =  Optional.of(type);
62
63                 return this;
64         }
65         
66         protected GraphInventoryUri setupQueryParams(GraphInventoryUri uri) {
67                 GraphInventoryUri clone = uri.clone();
68                 if (this.depth.isPresent()) {
69                         clone.queryParam("depth", depth.get());
70                 }
71                 if (this.nodesOnly) {
72                         clone.queryParam("nodesOnly", "");
73                 }
74                 if (this.subgraph.isPresent()) {
75                         clone.queryParam("subgraph", this.subgraph.get().toString());
76                 }
77                 return clone;
78         }
79         @Override
80         protected RestClient createClient(GraphInventoryUri uri) {
81                 return super.createClient(setupQueryParams(uri));
82         }
83 }