Autopsy  4.19.3
Graphical digital forensics platform for The Sleuth Kit and other tools.
KwsDataArtifactIngestModule.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2021-2021 Basis Technology Corp.
5  * Contact: carrier <at> sleuthkit <dot> org
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 package org.sleuthkit.autopsy.keywordsearch;
20 
21 import java.io.Reader;
22 import java.util.logging.Level;
28 import org.sleuthkit.datamodel.BlackboardArtifact;
29 import org.sleuthkit.datamodel.DataArtifact;
30 import org.sleuthkit.datamodel.TskCoreException;
31 
39 
40  private static final Logger LOGGER = Logger.getLogger(KeywordSearchIngestModule.class.getName());
41  private static final int TSK_ASSOCIATED_OBJECT_TYPE_ID = BlackboardArtifact.Type.TSK_ASSOCIATED_OBJECT.getTypeID();
44 
46  this.settings = settings;
47  }
48 
49  @Override
50  public void startUp(IngestJobContext context) throws IngestModuleException {
51  this.context = context;
52  }
53 
54  @Override
55  public ProcessResult process(DataArtifact artifact) {
56  try {
57  if (artifact.getType().getTypeID() != TSK_ASSOCIATED_OBJECT_TYPE_ID) {
58  Ingester ingester = Ingester.getDefault();
59  Reader blackboardExtractedTextReader = KeywordSearchUtil.getReader(artifact);
60  String sourceName = artifact.getDisplayName() + "_" + artifact.getArtifactID();
61  ingester.indexMetaDataOnly(artifact, sourceName);
62  ingester.search(blackboardExtractedTextReader,
63  artifact.getArtifactID(),
64  sourceName, artifact,
65  context, true,
66  settings.isIndexToSolrEnabled(),
67  settings.getNamesOfEnabledKeyWordLists());
68  }
69  } catch (Exception ex) {
70  LOGGER.log(Level.SEVERE, String.format("Error indexing data artifact '%s' (job ID=%d)", artifact, context.getJobId()), ex); //NON-NLS
71  return ProcessResult.ERROR;
72  }
73  return ProcessResult.OK;
74  }
75 
76 }
synchronized static Logger getLogger(String name)
Definition: Logger.java:124

Copyright © 2012-2022 Basis Technology. Generated on: Tue Jun 27 2023
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.