19 package org.sleuthkit.autopsy.keywordsearch;
 
   21 import java.util.ArrayList;
 
   22 import java.util.Collection;
 
   23 import java.util.List;
 
   25 import java.util.logging.Level;
 
   26 import org.apache.commons.lang3.StringUtils;
 
   27 import org.apache.commons.lang3.math.NumberUtils;
 
   28 import org.apache.solr.client.solrj.SolrQuery;
 
   29 import org.apache.solr.client.solrj.SolrRequest;
 
   30 import org.apache.solr.client.solrj.SolrRequest.METHOD;
 
   31 import org.apache.solr.client.solrj.response.QueryResponse;
 
   32 import org.apache.solr.common.SolrDocument;
 
   33 import org.apache.solr.common.SolrDocumentList;
 
   34 import org.apache.solr.common.params.CursorMarkParams;
 
   39 import org.
sleuthkit.datamodel.BlackboardArtifact.ARTIFACT_TYPE;
 
   41 import org.
sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE;
 
   50 class LuceneQuery 
implements KeywordSearchQuery {
 
   52     private static final Logger logger = Logger.getLogger(LuceneQuery.class.getName());
 
   53     private String keywordStringEscaped;
 
   54     private boolean isEscaped;
 
   55     private final Keyword originalKeyword;
 
   56     private final KeywordList keywordList;
 
   57     private final List<KeywordQueryFilter> filters = 
new ArrayList<>();
 
   58     private String field = null;
 
   59     private static final int MAX_RESULTS_PER_CURSOR_MARK = 512;
 
   60     static final int SNIPPET_LENGTH = 50;
 
   61     static final String HIGHLIGHT_FIELD = Server.Schema.TEXT.toString();
 
   63     private static final boolean DEBUG = (Version.getBuildType() == Version.Type.DEVELOPMENT);
 
   70     LuceneQuery(KeywordList keywordList, Keyword keyword) {
 
   71         this.keywordList = keywordList;
 
   72         this.originalKeyword = keyword;
 
   73         this.keywordStringEscaped = this.originalKeyword.getSearchTerm();
 
   77     public void addFilter(KeywordQueryFilter filter) {
 
   78         this.filters.add(filter);
 
   82     public void setField(String field) {
 
   87     public void setSubstringQuery() {
 
   90         keywordStringEscaped += 
"*";
 
   94     public void escape() {
 
   95         keywordStringEscaped = KeywordSearchUtil.escapeLuceneQuery(originalKeyword.getSearchTerm());
 
  100     public boolean isEscaped() {
 
  105     public boolean isLiteral() {
 
  106         return originalKeyword.searchTermIsLiteral();
 
  110     public String getEscapedQueryString() {
 
  111         return this.keywordStringEscaped;
 
  115     public String getQueryString() {
 
  116         return this.originalKeyword.getSearchTerm();
 
  120     public KeywordList getKeywordList() {
 
  125     public QueryResults performQuery() throws KeywordSearchModuleException, NoOpenCoreException {
 
  127         final Server solrServer = KeywordSearch.getServer();
 
  128         double indexSchemaVersion = NumberUtils.toDouble(solrServer.getIndexInfo().getSchemaVersion());
 
  130         SolrQuery solrQuery = createAndConfigureSolrQuery(KeywordSearchSettings.getShowSnippets());
 
  132         final String strippedQueryString = StringUtils.strip(getQueryString(), 
"\"");
 
  134         String cursorMark = CursorMarkParams.CURSOR_MARK_START;
 
  135         boolean allResultsProcessed = 
false;
 
  136         List<KeywordHit> matches = 
new ArrayList<>();
 
  137         while (!allResultsProcessed) {
 
  138             solrQuery.set(CursorMarkParams.CURSOR_MARK_PARAM, cursorMark);
 
  139             QueryResponse response = solrServer.query(solrQuery, SolrRequest.METHOD.POST);
 
  140             SolrDocumentList resultList = response.getResults();
 
  142             Map<String, Map<String, List<String>>> highlightResponse = response.getHighlighting();
 
  144             for (SolrDocument resultDoc : resultList) {
 
  152                     final String docId = resultDoc.getFieldValue(Server.Schema.ID.toString()).toString();
 
  153                     final Integer chunkSize = (Integer) resultDoc.getFieldValue(Server.Schema.CHUNK_SIZE.toString());
 
  154                     final Collection<Object> content = resultDoc.getFieldValues(Server.Schema.CONTENT_STR.toString());
 
  156                     if (indexSchemaVersion < 2.0) {
 
  158                         matches.add(createKeywordtHit(highlightResponse, docId));
 
  161                         for (Object content_obj : content) {
 
  162                             String content_str = (String) content_obj;
 
  164                             int firstOccurence = StringUtils.indexOfIgnoreCase(content_str, strippedQueryString);
 
  166                             if (chunkSize == null || chunkSize == 0 || (firstOccurence > -1 && firstOccurence < chunkSize)) {
 
  167                                 matches.add(createKeywordtHit(highlightResponse, docId));
 
  171                 } 
catch (TskException ex) {
 
  172                     throw new KeywordSearchModuleException(ex);
 
  175             String nextCursorMark = response.getNextCursorMark();
 
  176             if (cursorMark.equals(nextCursorMark)) {
 
  177                 allResultsProcessed = 
true;
 
  179             cursorMark = nextCursorMark;
 
  182         QueryResults results = 
new QueryResults(
this);
 
  184         results.addResult(
new Keyword(originalKeyword.getSearchTerm(), 
true, 
true, originalKeyword.getListName(), originalKeyword.getOriginalTerm()), matches);
 
  190     public boolean validate() {
 
  191         return StringUtils.isNotBlank(originalKeyword.getSearchTerm());
 
  211     public BlackboardArtifact postKeywordHitToBlackboard(Content content, Keyword foundKeyword, KeywordHit hit, String snippet, String listName) {
 
  212         final String MODULE_NAME = KeywordSearchModuleFactory.getModuleName();
 
  214         Collection<BlackboardAttribute> attributes = 
new ArrayList<>();
 
  215         BlackboardArtifact bba;
 
  217             bba = content.newArtifact(ARTIFACT_TYPE.TSK_KEYWORD_HIT);
 
  218         } 
catch (TskCoreException e) {
 
  219             logger.log(Level.WARNING, 
"Error adding bb artifact for keyword hit", e); 
 
  223         if (snippet != null) {
 
  224             attributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_KEYWORD_PREVIEW, MODULE_NAME, snippet));
 
  226         attributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_KEYWORD, MODULE_NAME, foundKeyword.getSearchTerm()));
 
  227         if (StringUtils.isNotBlank(listName)) {
 
  228             attributes.add(
new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_SET_NAME, MODULE_NAME, listName));
 
  231         if (originalKeyword != null) {
 
  232             BlackboardAttribute.ATTRIBUTE_TYPE selType = originalKeyword.getArtifactAttributeType();
 
  233             if (selType != null) {
 
  234                 attributes.add(
new BlackboardAttribute(selType, MODULE_NAME, foundKeyword.getSearchTerm()));
 
  237             if (originalKeyword.searchTermIsWholeWord()) {
 
  238                 attributes.add(
new BlackboardAttribute(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_KEYWORD_SEARCH_TYPE, MODULE_NAME, KeywordSearch.QueryType.LITERAL.ordinal()));
 
  240                 attributes.add(
new BlackboardAttribute(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_KEYWORD_SEARCH_TYPE, MODULE_NAME, KeywordSearch.QueryType.SUBSTRING.ordinal()));
 
  244         hit.getArtifactID().ifPresent(artifactID
 
  245                 -> attributes.add(
new BlackboardAttribute(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_ASSOCIATED_ARTIFACT, MODULE_NAME, artifactID))
 
  249             bba.addAttributes(attributes); 
 
  251         } 
catch (TskCoreException e) {
 
  252             logger.log(Level.WARNING, 
"Error adding bb attributes to artifact", e); 
 
  265     private SolrQuery createAndConfigureSolrQuery(
boolean snippets) {
 
  266         SolrQuery q = 
new SolrQuery();
 
  267         q.setShowDebugInfo(DEBUG); 
 
  269         String queryStr = originalKeyword.searchTermIsLiteral()
 
  270                 ? KeywordSearchUtil.quoteQuery(keywordStringEscaped) : keywordStringEscaped;
 
  275             queryStr = field + 
":" + queryStr;
 
  277         q.setQuery(queryStr);
 
  278         q.setRows(MAX_RESULTS_PER_CURSOR_MARK);
 
  280         q.setSort(SolrQuery.SortClause.asc(Server.Schema.ID.toString()));
 
  282         q.setFields(Server.Schema.ID.toString(),
 
  283                 Server.Schema.CHUNK_SIZE.toString(),
 
  284                 Server.Schema.CONTENT_STR.toString());
 
  286         for (KeywordQueryFilter filter : filters) {
 
  287             q.addFilterQuery(filter.toString());
 
  291             configurwQueryForHighlighting(q);
 
  303     private static void configurwQueryForHighlighting(SolrQuery q) {
 
  304         q.addHighlightField(HIGHLIGHT_FIELD);
 
  305         q.setHighlightSnippets(1);
 
  306         q.setHighlightFragsize(SNIPPET_LENGTH);
 
  309         q.setParam(
"hl.useFastVectorHighlighter", 
"on"); 
 
  310         q.setParam(
"hl.tag.pre", 
"«"); 
 
  311         q.setParam(
"hl.tag.post", 
"«"); 
 
  312         q.setParam(
"hl.fragListBuilder", 
"simple"); 
 
  315         q.setParam(
"hl.fragCharSize", Integer.toString(q.getQuery().length())); 
 
  319         q.setParam(
"hl.maxAnalyzedChars", Server.HL_ANALYZE_CHARS_UNLIMITED); 
 
  322     private KeywordHit createKeywordtHit(Map<String, Map<String, List<String>>> highlightResponse, String docId) 
throws TskException {
 
  328         if (KeywordSearchSettings.getShowSnippets()) {
 
  329             List<String> snippetList = highlightResponse.get(docId).get(Server.Schema.TEXT.toString());
 
  331             if (snippetList != null) {
 
  332                 snippet = EscapeUtil.unEscapeHtml(snippetList.get(0)).trim();
 
  336         return new KeywordHit(docId, snippet, originalKeyword.getSearchTerm());
 
  353     static String querySnippet(String query, 
long solrObjectId, 
boolean isRegex, 
boolean group) 
throws NoOpenCoreException {
 
  354         return querySnippet(query, solrObjectId, 0, isRegex, group);
 
  372     static String querySnippet(String query, 
long solrObjectId, 
int chunkID, 
boolean isRegex, 
boolean group) 
throws NoOpenCoreException {
 
  373         SolrQuery q = 
new SolrQuery();
 
  374         q.setShowDebugInfo(DEBUG); 
 
  378             queryStr = HIGHLIGHT_FIELD + 
":" 
  379                     + (group ? KeywordSearchUtil.quoteQuery(query)
 
  386             queryStr = KeywordSearchUtil.quoteQuery(query);
 
  388         q.setQuery(queryStr);
 
  390         String contentIDStr = (chunkID == 0)
 
  391                 ? Long.toString(solrObjectId)
 
  392                 : Server.getChunkIdString(solrObjectId, chunkID);
 
  393         String idQuery = Server.Schema.ID.toString() + 
":" + KeywordSearchUtil.escapeLuceneQuery(contentIDStr);
 
  394         q.addFilterQuery(idQuery);
 
  396         configurwQueryForHighlighting(q);
 
  398         Server solrServer = KeywordSearch.getServer();
 
  401             QueryResponse response = solrServer.query(q, METHOD.POST);
 
  402             Map<String, Map<String, List<String>>> responseHighlight = response.getHighlighting();
 
  403             Map<String, List<String>> responseHighlightID = responseHighlight.get(contentIDStr);
 
  404             if (responseHighlightID == null) {
 
  407             List<String> contentHighlights = responseHighlightID.get(LuceneQuery.HIGHLIGHT_FIELD);
 
  408             if (contentHighlights == null) {
 
  412                 return EscapeUtil.unEscapeHtml(contentHighlights.get(0)).trim();
 
  414         } 
catch (NoOpenCoreException ex) {
 
  415             logger.log(Level.SEVERE, 
"Error executing Lucene Solr Query: " + query + 
". Solr doc id " + solrObjectId + 
", chunkID " + chunkID, ex); 
 
  417         } 
catch (KeywordSearchModuleException ex) {
 
  418             logger.log(Level.SEVERE, 
"Error executing Lucene Solr Query: " + query + 
". Solr doc id " + solrObjectId + 
", chunkID " + chunkID, ex);