org.elasticsearch.index.query.TemplateQueryParser Maven / Gradle / Ivy
/*
* Licensed to Elasticsearch under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch licenses this file to you 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.
*/
package org.elasticsearch.index.query;
import org.apache.lucene.search.Query;
import org.elasticsearch.ElasticsearchException;
import org.elasticsearch.common.Nullable;
import org.elasticsearch.common.bytes.BytesReference;
import org.elasticsearch.common.inject.Inject;
import org.elasticsearch.common.logging.ESLogger;
import org.elasticsearch.common.logging.Loggers;
import org.elasticsearch.common.xcontent.XContentBuilder;
import org.elasticsearch.common.xcontent.XContentFactory;
import org.elasticsearch.common.xcontent.XContentParser;
import org.elasticsearch.script.ExecutableScript;
import org.elasticsearch.script.ScriptService;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
/**
* In the simplest case, parse template string and variables from the request, compile the template and
* execute the template against the given variables.
* */
public class TemplateQueryParser implements QueryParser {
/** Name to reference this type of query. */
public static final String NAME = "template";
/** Name of query parameter containing the template string. */
public static final String QUERY = "query";
/** Name of query parameter containing the template parameters. */
public static final String PARAMS = "params";
private final ScriptService scriptService;
private final static Map parametersToTypes = new HashMap<>();
static {
parametersToTypes.put("query",ScriptService.ScriptType.INLINE);
parametersToTypes.put("file",ScriptService.ScriptType.FILE);
parametersToTypes.put("id",ScriptService.ScriptType.INDEXED);
}
@Inject
public TemplateQueryParser(ScriptService scriptService) {
this.scriptService = scriptService;
}
@Override
public String[] names() {
return new String[] {NAME};
}
/**
* Parses the template query replacing template parameters with provided values.
* Handles both submitting the template as part of the request as well as
* referencing only the template name.
* @param parseContext parse context containing the templated query.
*/
@Override
@Nullable
public Query parse(QueryParseContext parseContext) throws IOException {
XContentParser parser = parseContext.parser();
TemplateContext templateContext = parse(parser, PARAMS, parametersToTypes);
ExecutableScript executable = this.scriptService.executable("mustache", templateContext.template(), templateContext.scriptType(), templateContext.params());
BytesReference querySource = (BytesReference) executable.run();
try (XContentParser qSourceParser = XContentFactory.xContent(querySource).createParser(querySource)) {
final QueryParseContext context = new QueryParseContext(parseContext.index(), parseContext.indexQueryParser);
context.reset(qSourceParser);
Query result = context.parseInnerQuery();
return result;
}
}
public static TemplateContext parse(XContentParser parser, String paramsFieldname, String ... parameters) throws IOException {
Map parameterMap = new HashMap<>(parametersToTypes);
for (String parameter : parameters) {
parameterMap.put(parameter, ScriptService.ScriptType.INLINE);
}
return parse(parser,paramsFieldname,parameterMap);
}
public static TemplateContext parse(XContentParser parser, String paramsFieldname) throws IOException {
return parse(parser,paramsFieldname,parametersToTypes);
}
public static TemplateContext parse(XContentParser parser, String paramsFieldname, Map parameterMap) throws IOException {
Map params = null;
String templateNameOrTemplateContent = null;
String currentFieldName = null;
XContentParser.Token token;
ScriptService.ScriptType type = null;
while ((token = parser.nextToken()) != XContentParser.Token.END_OBJECT) {
if (token == XContentParser.Token.FIELD_NAME) {
currentFieldName = parser.currentName();
} else if (parameterMap.containsKey(currentFieldName)) {
type = parameterMap.get(currentFieldName);
if (token == XContentParser.Token.START_OBJECT) {
XContentBuilder builder = XContentBuilder.builder(parser.contentType().xContent());
builder.copyCurrentStructure(parser);
templateNameOrTemplateContent = builder.string();
} else {
templateNameOrTemplateContent = parser.text();
}
} else if (paramsFieldname.equals(currentFieldName)) {
params = parser.map();
}
}
return new TemplateContext(type, templateNameOrTemplateContent, params);
}
public static class TemplateContext {
private Map params;
private String template;
private ScriptService.ScriptType type;
public TemplateContext(ScriptService.ScriptType type, String template, Map params) {
this.params = params;
this.template = template;
this.type = type;
}
public Map params() {
return params;
}
public String template() {
return template;
}
public ScriptService.ScriptType scriptType(){
return type;
}
@Override
public String toString(){
return type + " " + template;
}
}
}