com.jaeksoft.searchlib.script.commands.SearchCommands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensearchserver Show documentation
Show all versions of opensearchserver Show documentation
OpenSearchServer is a powerful, enterprise-class, search engine program. Using the web user interface, the crawlers (web, file, database, ...) and the REST/RESTFul API you will be able to integrate quickly and easily advanced full-text search capabilities in your application. OpenSearchServer runs on Windows and Linux/Unix/BSD.
The newest version!
/**
* License Agreement for OpenSearchServer
*
* Copyright (C) 2013 Emmanuel Keller / Jaeksoft
*
* http://www.open-search-server.com
*
* This file is part of OpenSearchServer.
*
* OpenSearchServer is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OpenSearchServer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenSearchServer.
* If not, see .
**/
package com.jaeksoft.searchlib.script.commands;
import java.sql.SQLException;
import java.util.regex.Pattern;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.jaeksoft.searchlib.Client;
import com.jaeksoft.searchlib.SearchLibException;
import com.jaeksoft.searchlib.request.AbstractRequest;
import com.jaeksoft.searchlib.request.AbstractSearchRequest;
import com.jaeksoft.searchlib.result.AbstractResultSearch;
import com.jaeksoft.searchlib.result.ResultDocument;
import com.jaeksoft.searchlib.schema.FieldValue;
import com.jaeksoft.searchlib.script.CommandAbstract;
import com.jaeksoft.searchlib.script.CommandEnum;
import com.jaeksoft.searchlib.script.ScriptCommandContext;
import com.jaeksoft.searchlib.script.ScriptException;
import com.jaeksoft.searchlib.util.JsonUtils;
import com.jaeksoft.searchlib.util.StringUtils;
import com.jaeksoft.searchlib.util.Variables;
import com.jaeksoft.searchlib.webservice.query.search.SearchResult;
import com.jayway.jsonpath.JsonPath;
import com.jayway.jsonpath.PathNotFoundException;
public class SearchCommands {
private static abstract class SearchTemplateAbstract extends
CommandAbstract {
protected SearchTemplateAbstract(CommandEnum commandEnum) {
super(commandEnum);
}
protected AbstractResultSearch> search(ScriptCommandContext context,
String template, String query) throws ScriptException {
try {
Client client = (Client) context.getConfig();
AbstractRequest request = client.getNewRequest(template);
if (!(request instanceof AbstractSearchRequest))
throw new ScriptException("Wrong type of search request: "
+ request.getNameType());
AbstractSearchRequest searchRequest = (AbstractSearchRequest) request;
if (!query.isEmpty())
searchRequest.setQueryString(query);
return (AbstractResultSearch>) client.request(searchRequest);
} catch (SearchLibException e) {
throw new ScriptException(e);
}
}
}
public static class SearchTemplate extends SearchTemplateAbstract {
public SearchTemplate() {
super(CommandEnum.SEARCH_TEMPLATE);
}
protected SearchTemplate(CommandEnum command) {
super(command);
}
public final static Pattern PARAM_SQL_BY_DOC = Pattern.compile(
"sql_by_doc\\(\\[([^\\]]*)\\]\\)", Pattern.CASE_INSENSITIVE);
@Override
public void run(ScriptCommandContext context, String id,
String... parameters) throws ScriptException {
checkParameters(2, parameters);
String template = parameters[0];
String query = parameters[1];
String sqlByDoc = findPatternFunction(2, PARAM_SQL_BY_DOC);
Variables searchVariables = new Variables();
Variables documentVariables = new Variables();
context.addVariables(searchVariables, documentVariables);
try {
AbstractResultSearch> result = this.search(context, template,
query);
searchVariables.put("search:numfound",
Integer.toString(result.getNumFound()));
int pos = ((AbstractSearchRequest) result.getRequest())
.getStart();
if (!StringUtils.isEmpty(sqlByDoc)) {
for (ResultDocument document : result) {
documentVariables.clear();
for (FieldValue fieldValue : document.getReturnFields()
.values()) {
if (fieldValue.getValuesCount() == 0)
continue;
documentVariables
.put(StringUtils.fastConcat("search:",
fieldValue.getName()), fieldValue
.getValueList().get(0).getValue());
}
documentVariables.put("search:score",
Float.toString(result.getScore(pos++)));
context.executeSqlUpdate(context
.replaceVariables(sqlByDoc));
}
}
} catch (SQLException e) {
throw new ScriptException(e);
} finally {
context.removeVariables(searchVariables, documentVariables);
}
}
}
public static class SearchTemplateJson extends SearchTemplateAbstract {
private static enum Action_Trigger {
IF_NOT_FOUND, IF_FOUND
};
private static enum Action_Option {
NEXT_COMMAND, EXIT
};
public SearchTemplateJson() {
super(CommandEnum.SEARCH_TEMPLATE_JSON);
}
public final static String ACTION_EXIT_IF_NOT_FOUND = "EXIT_IF_NOT_FOUND";
public final static String ACTION_EXIT_IF_FOUND = "IF_FOUND";
private void checkAction(Action_Trigger trigger, Action_Option option,
CommandEnum command, boolean bFound) throws ScriptException {
switch (trigger) {
case IF_FOUND:
if (!bFound)
return;
break;
case IF_NOT_FOUND:
if (bFound)
return;
break;
}
switch (option) {
case EXIT:
throw new ScriptException.ExitException();
case NEXT_COMMAND:
throw new ScriptException.NextCommandException(command);
}
}
@Override
public void run(ScriptCommandContext context, String id,
String... parameters) throws ScriptException {
checkParameters(5, parameters);
String template = parameters[0];
String query = context.replaceVariables(parameters[1]);
JsonPath jsonPath = JsonPath.compile(parameters[2]);
Action_Trigger trigger = Action_Trigger.valueOf(parameters[3]);
Action_Option option = Action_Option.valueOf(parameters[4]);
String cmd = getParameterString(5);
CommandEnum command = StringUtils.isEmpty(cmd) ? null : CommandEnum
.find(cmd);
AbstractResultSearch> result = this.search(context, template,
query);
SearchResult searchResult = new SearchResult(result);
try {
Object object = jsonPath.read(JsonUtils
.toJsonString(searchResult));
checkAction(trigger, option, command, object != null);
} catch (PathNotFoundException e) {
checkAction(trigger, option, command, false);
} catch (JsonProcessingException e) {
throw new ScriptException(e);
}
}
}
}