aboutsummaryrefslogtreecommitdiffstats
path: root/aai-traversal/src/main/java/org/onap/aai/rest/DslConsumer.java
blob: fefd2dc27d3cc927520d894b71892e2d3c8e33c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.onap.aai.rest;

import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import io.micrometer.core.annotation.Timed;
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource;
import org.janusgraph.core.SchemaViolationException;
import org.onap.aai.concurrent.AaiCallable;
import org.onap.aai.exceptions.AAIException;
import org.onap.aai.introspection.ModelType;
import org.onap.aai.rest.db.HttpEntry;
import org.onap.aai.rest.dsl.DslQueryProcessor;
import org.onap.aai.rest.enums.QueryVersion;
import org.onap.aai.rest.search.GenericQueryProcessor;
import org.onap.aai.rest.search.GremlinServerSingleton;
import org.onap.aai.rest.search.QueryProcessorType;
import org.onap.aai.restcore.HttpMethod;
import org.onap.aai.serialization.db.DBSerializer;
import org.onap.aai.serialization.engines.TransactionalGraphEngine;
import org.onap.aai.serialization.queryformats.Format;
import org.onap.aai.serialization.queryformats.FormatFactory;
import org.onap.aai.serialization.queryformats.Formatter;
import org.onap.aai.serialization.queryformats.SubGraphStyle;
import org.onap.aai.setup.SchemaVersion;
import org.onap.aai.setup.SchemaVersions;
import org.onap.aai.transforms.XmlFormatTransformer;
import org.onap.aai.util.AAIConfig;
import org.onap.aai.util.TraversalConstants;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;

import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.*;
import javax.ws.rs.core.*;
import javax.ws.rs.core.Response.Status;
import java.util.*;
import java.util.stream.Collectors;

@Path("{version: v[1-9][0-9]*|latest}/dsl")
@Timed
public class DslConsumer extends TraversalConsumer {

	private HttpEntry traversalUriHttpEntry;

	private QueryProcessorType processorType = QueryProcessorType.LOCAL_GROOVY;

	private static final Logger LOGGER = LoggerFactory.getLogger(DslConsumer.class);

	private DslQueryProcessor dslQueryProcessor;

	private SchemaVersions schemaVersions;

	private String basePath;

	private GremlinServerSingleton gremlinServerSingleton;
	private final QueryVersion DEFAULT_VERSION = QueryVersion.V1;
	private QueryVersion dslApiVersion = DEFAULT_VERSION;

	private XmlFormatTransformer xmlFormatTransformer;

	@Autowired
	public DslConsumer(HttpEntry traversalUriHttpEntry, DslQueryProcessor dslQueryProcessor,
					   SchemaVersions schemaVersions, GremlinServerSingleton gremlinServerSingleton,
					   XmlFormatTransformer xmlFormatTransformer,
					   @Value("${schema.uri.base.path}") String basePath) {
		this.traversalUriHttpEntry = traversalUriHttpEntry;
		this.dslQueryProcessor = dslQueryProcessor;
		this.schemaVersions = schemaVersions;
		this.gremlinServerSingleton = gremlinServerSingleton;
		this.xmlFormatTransformer = xmlFormatTransformer;
		this.basePath = basePath;
	}

	@PUT
	@Consumes({ MediaType.APPLICATION_JSON })
	@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
	public Response executeQuery(String content,
								 @PathParam("version") String versionParam,
								 @DefaultValue("graphson") @QueryParam("format") String queryFormat,
								 @DefaultValue("no_op") @QueryParam("subgraph") String subgraph,
								 @DefaultValue("all") @QueryParam("validate") String validate,
								 @Context HttpHeaders headers,
								 @Context HttpServletRequest req,
								 @Context UriInfo info,
								 @DefaultValue("-1") @QueryParam("resultIndex") String resultIndex,
								 @DefaultValue("-1") @QueryParam("resultSize") String resultSize) {
		Set<String> roles = this.getRoles(req.getUserPrincipal());

		return runner(TraversalConstants.AAI_TRAVERSAL_DSL_TIMEOUT_ENABLED,
				TraversalConstants.AAI_TRAVERSAL_DSL_TIMEOUT_APP,
				TraversalConstants.AAI_TRAVERSAL_DSL_TIMEOUT_LIMIT,
				headers,
				info,
				HttpMethod.PUT,
				new AaiCallable() {
					@Override
					public Response process() throws Exception {
						return (processExecuteQuery(content, req, versionParam, queryFormat, subgraph, validate, headers, info,
								resultIndex, resultSize, roles));
					}
				}
		);
	}

	public Response processExecuteQuery(String content, HttpServletRequest req, String versionParam, String queryFormat, String subgraph,
										String validate, HttpHeaders headers, UriInfo info, String resultIndex,
										String resultSize, Set<String> roles) {

		String sourceOfTruth = headers.getRequestHeaders().getFirst("X-FromAppId");
		String dslOverride = headers.getRequestHeaders().getFirst("X-DslOverride");

		Optional<String> dslApiVersionHeader = Optional.ofNullable(headers.getRequestHeaders().getFirst("X-DslApiVersion"));
		if (dslApiVersionHeader.isPresent()) {
			try {
				dslApiVersion = QueryVersion.valueOf(dslApiVersionHeader.get());
			} catch (IllegalArgumentException e) {
				LOGGER.debug("Defaulting DSL Api Version to  "+DEFAULT_VERSION);
			}
		}

		Response response;
		SchemaVersion version = new SchemaVersion(versionParam);

		TransactionalGraphEngine dbEngine = null;
		try {
			String serverBase = req.getRequestURL().toString().replaceAll("/(v[0-9]+|latest)/.*", "/");
			traversalUriHttpEntry.setHttpEntryProperties(version, serverBase);
			traversalUriHttpEntry.setPaginationParameters(resultIndex, resultSize);
			dbEngine = traversalUriHttpEntry.getDbEngine();
			JsonObject input = new JsonParser().parse(content).getAsJsonObject();
			JsonElement dslElement = input.get("dsl");
			String dsl = "";
			if (dslElement != null) {
				dsl = dslElement.getAsString();
			}


			boolean isDslOverride = dslOverride != null && !AAIConfig.get(TraversalConstants.DSL_OVERRIDE).equals("false")
					&& dslOverride.equals(AAIConfig.get(TraversalConstants.DSL_OVERRIDE));
			
			if(isDslOverride) {
				dslQueryProcessor.setStartNodeValidationFlag(false);
			}

			dslQueryProcessor.setValidationRules(validate);

			Format format = Format.getFormat(queryFormat);

			if(isAggregate(format)){
				dslQueryProcessor.setAggregate(true);
			}

			if(isHistory(format)){
				validateHistoryParams(format, info.getQueryParameters());
			}

			GraphTraversalSource traversalSource = getTraversalSource(dbEngine, format, info, roles);

			GenericQueryProcessor processor = new GenericQueryProcessor.Builder(dbEngine, gremlinServerSingleton)
					.queryFrom(dsl, "dsl").queryProcessor(dslQueryProcessor).version(dslApiVersion).processWith(processorType)
					.format(format).uriParams(info.getQueryParameters()).traversalSource(isHistory(format), traversalSource).create();

			SubGraphStyle subGraphStyle = SubGraphStyle.valueOf(subgraph);
			List<Object> vertTemp = processor.execute(subGraphStyle);


			// Dedup if duplicate objects are returned in each array in the aggregate format scenario.
			List<Object> vertTempDedupedObjectList = dedupObjectInAggregateFormatResult(vertTemp);

			List <Object> vertices;
			if (isAggregate(format)){
				vertices = traversalUriHttpEntry.getPaginatedVertexListForAggregateFormat(vertTempDedupedObjectList);
			} else {
				vertices = traversalUriHttpEntry.getPaginatedVertexList(vertTemp);
			}

			DBSerializer serializer = new DBSerializer(version, dbEngine, ModelType.MOXY, sourceOfTruth);
			FormatFactory ff = new FormatFactory(traversalUriHttpEntry.getLoader(), serializer, schemaVersions,
					this.basePath, serverBase);

			MultivaluedMap<String, String> mvm = new MultivaluedHashMap<>();
			mvm.putAll(info.getQueryParameters());
			if (isHistory(format)) {
				mvm.putSingle("startTs", Long.toString(getStartTime(format, mvm)));
				mvm.putSingle("endTs", Long.toString(getEndTime(mvm)));
			}
			Formatter formatter = ff.get(format, mvm);

			final Map<String, List<String>> propertiesMap = processor.getPropertiesMap();
			String result = "";
			if (propertiesMap != null && !propertiesMap.isEmpty()){
				result = formatter.output(vertices, propertiesMap).toString();
			}
			else {
				result = formatter.output(vertices).toString();
			}

			String acceptType = headers.getHeaderString("Accept");

			if(acceptType == null){
				acceptType = MediaType.APPLICATION_JSON;
			}

			if(MediaType.APPLICATION_XML_TYPE.isCompatible(MediaType.valueOf(acceptType))){
				result = xmlFormatTransformer.transform(result);
			}

			if(traversalUriHttpEntry.isPaginated()){
				response = Response.status(Status.OK)
						.type(acceptType)
						.header("total-results", traversalUriHttpEntry.getTotalVertices())
						.header("total-pages", traversalUriHttpEntry.getTotalPaginationBuckets())
						.entity(result)
						.build();
			}else {
				response = Response.status(Status.OK)
						.type(acceptType)
						.entity(result).build();
			}
			
		} catch (AAIException e) {
			response = consumerExceptionResponseGenerator(headers, info, HttpMethod.PUT, e);
		} catch (SchemaViolationException sve) {
			AAIException ex = new AAIException("AAI_4020", sve);
			response = consumerExceptionResponseGenerator(headers, info, HttpMethod.PUT, ex);
		} catch (Exception e) {
			AAIException ex = new AAIException("AAI_4000", e);
			response = consumerExceptionResponseGenerator(headers, info, HttpMethod.PUT, ex);
		} finally {
			if (dbEngine != null) {
				dbEngine.rollback();
			}

		}

		return response;
	}

	private List<Object> dedupObjectInAggregateFormatResult(List<Object> vertTemp) {
		List<Object> vertTempDedupedObjectList = new ArrayList<Object>();
		Iterator<Object> itr = vertTemp.listIterator();
		while (itr.hasNext()){
			Object o = itr.next();
			if (o instanceof ArrayList) {
				vertTempDedupedObjectList.add(((ArrayList) o).stream().distinct().collect(Collectors.toList()));
			}
		}
		return vertTempDedupedObjectList;
	}
}