summaryrefslogtreecommitdiff
path: root/modules/lang-mustache/src/main
diff options
context:
space:
mode:
authorMartijn van Groningen <martijn.v.groningen@gmail.com>2017-05-10 12:18:19 +0200
committerMartijn van Groningen <martijn.v.groningen@gmail.com>2017-05-11 14:56:45 +0200
commit840da4aebf3eba2df856aea75ae2a93ff371796c (patch)
tree054ac51a07153ed76b4879cc4a8a4de256f29638 /modules/lang-mustache/src/main
parente49ebd04fd2522b4695a023fe2adc8de8b05c10a (diff)
Removed deprecated template query.
Relates to #19390
Diffstat (limited to 'modules/lang-mustache/src/main')
-rw-r--r--modules/lang-mustache/src/main/java/org/elasticsearch/script/mustache/MustachePlugin.java7
-rw-r--r--modules/lang-mustache/src/main/java/org/elasticsearch/script/mustache/TemplateQueryBuilder.java151
2 files changed, 0 insertions, 158 deletions
diff --git a/modules/lang-mustache/src/main/java/org/elasticsearch/script/mustache/MustachePlugin.java b/modules/lang-mustache/src/main/java/org/elasticsearch/script/mustache/MustachePlugin.java
index 7b5c97aa9a..105fa3f6f8 100644
--- a/modules/lang-mustache/src/main/java/org/elasticsearch/script/mustache/MustachePlugin.java
+++ b/modules/lang-mustache/src/main/java/org/elasticsearch/script/mustache/MustachePlugin.java
@@ -39,8 +39,6 @@ import java.util.Arrays;
import java.util.List;
import java.util.function.Supplier;
-import static java.util.Collections.singletonList;
-
public class MustachePlugin extends Plugin implements ScriptPlugin, ActionPlugin, SearchPlugin {
@Override
@@ -55,11 +53,6 @@ public class MustachePlugin extends Plugin implements ScriptPlugin, ActionPlugin
}
@Override
- public List<QuerySpec<?>> getQueries() {
- return singletonList(new QuerySpec<>(TemplateQueryBuilder.NAME, TemplateQueryBuilder::new, TemplateQueryBuilder::fromXContent));
- }
-
- @Override
public List<RestHandler> getRestHandlers(Settings settings, RestController restController, ClusterSettings clusterSettings,
IndexScopedSettings indexScopedSettings, SettingsFilter settingsFilter, IndexNameExpressionResolver indexNameExpressionResolver,
Supplier<DiscoveryNodes> nodesInCluster) {
diff --git a/modules/lang-mustache/src/main/java/org/elasticsearch/script/mustache/TemplateQueryBuilder.java b/modules/lang-mustache/src/main/java/org/elasticsearch/script/mustache/TemplateQueryBuilder.java
deleted file mode 100644
index 66a5c09977..0000000000
--- a/modules/lang-mustache/src/main/java/org/elasticsearch/script/mustache/TemplateQueryBuilder.java
+++ /dev/null
@@ -1,151 +0,0 @@
-/*
- * 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.script.mustache;
-
-import org.apache.lucene.search.Query;
-import org.elasticsearch.common.bytes.BytesReference;
-import org.elasticsearch.common.io.stream.StreamInput;
-import org.elasticsearch.common.io.stream.StreamOutput;
-import org.elasticsearch.common.logging.DeprecationLogger;
-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.common.xcontent.XContentType;
-import org.elasticsearch.index.query.AbstractQueryBuilder;
-import org.elasticsearch.index.query.BoolQueryBuilder;
-import org.elasticsearch.index.query.QueryBuilder;
-import org.elasticsearch.index.query.QueryParseContext;
-import org.elasticsearch.index.query.QueryRewriteContext;
-import org.elasticsearch.index.query.QueryShardContext;
-import org.elasticsearch.script.Script;
-import org.elasticsearch.script.ScriptType;
-
-import java.io.IOException;
-import java.util.Collections;
-import java.util.Map;
-import java.util.Objects;
-
-/**
- * Facilitates creating template query requests.
- * */
-@Deprecated
-// TODO remove this class in 6.0
-public class TemplateQueryBuilder extends AbstractQueryBuilder<TemplateQueryBuilder> {
-
- public static final String NAME = "template";
- private static final DeprecationLogger DEPRECATION_LOGGER = new DeprecationLogger(Loggers.getLogger(TemplateQueryBuilder.class));
-
- /** Template to fill. */
- private final Script template;
-
- public TemplateQueryBuilder(String template, ScriptType scriptType, Map<String, Object> params) {
- this(new Script(scriptType, "mustache", template, params));
- }
-
- public TemplateQueryBuilder(String template, ScriptType scriptType, Map<String, Object> params, XContentType ct) {
- this(new Script(scriptType, "mustache", template, scriptType == ScriptType.INLINE ?
- (ct == null ? Collections.emptyMap() : Collections.singletonMap(Script.CONTENT_TYPE_OPTION, ct.mediaType()))
- : null, params));
- }
-
- TemplateQueryBuilder(Script template) {
- DEPRECATION_LOGGER.deprecated("[{}] query is deprecated, use search template api instead", NAME);
- if (template == null) {
- throw new IllegalArgumentException("query template cannot be null");
- }
- this.template = template;
- }
-
- public Script template() {
- return template;
- }
-
- /**
- * Read from a stream.
- */
- public TemplateQueryBuilder(StreamInput in) throws IOException {
- super(in);
- template = new Script(in);
- }
-
- @Override
- protected void doWriteTo(StreamOutput out) throws IOException {
- template.writeTo(out);
- }
-
- @Override
- protected void doXContent(XContentBuilder builder, Params builderParams) throws IOException {
- builder.field(TemplateQueryBuilder.NAME);
- template.toXContent(builder, builderParams);
- }
-
- @Override
- public String getWriteableName() {
- return NAME;
- }
-
- @Override
- protected Query doToQuery(QueryShardContext context) throws IOException {
- throw new UnsupportedOperationException("this query must be rewritten first");
- }
-
- @Override
- protected int doHashCode() {
- return Objects.hash(template);
- }
-
- @Override
- protected boolean doEquals(TemplateQueryBuilder other) {
- return Objects.equals(template, other.template);
- }
-
- @Override
- protected QueryBuilder doRewrite(QueryRewriteContext queryRewriteContext) throws IOException {
- BytesReference querySource = queryRewriteContext.getTemplateBytes(template);
- try (XContentParser qSourceParser = XContentFactory.xContent(querySource).createParser(queryRewriteContext.getXContentRegistry(),
- querySource)) {
- final QueryParseContext queryParseContext = queryRewriteContext.newParseContext(qSourceParser);
- final QueryBuilder queryBuilder = queryParseContext.parseInnerQueryBuilder();
- if (boost() != DEFAULT_BOOST || queryName() != null) {
- final BoolQueryBuilder boolQueryBuilder = new BoolQueryBuilder();
- boolQueryBuilder.must(queryBuilder);
- return boolQueryBuilder;
- }
- return queryBuilder;
- }
- }
-
- /**
- * In the simplest case, parse template string and variables from the request,
- * compile the template and execute the template against the given variables.
- */
- public static TemplateQueryBuilder fromXContent(QueryParseContext parseContext) throws IOException {
- XContentParser parser = parseContext.parser();
- Script template = Script.parse(parser, Script.DEFAULT_TEMPLATE_LANG);
-
- // for deprecation of stored script namespaces the default lang is ignored,
- // so the template lang must be set for a stored script
- if (template.getType() == ScriptType.STORED) {
- template = new Script(ScriptType.STORED, Script.DEFAULT_TEMPLATE_LANG, template.getIdOrCode(), template.getParams());
- }
-
- return new TemplateQueryBuilder(template);
- }
-}