mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 09:17:42 +00:00
108 lines
3.6 KiB
Java
108 lines
3.6 KiB
Java
/*
|
|
* Autopsy Forensic Browser
|
|
*
|
|
* Copyright 2011-2017 Basis Technology Corp.
|
|
* Contact: carrier <at> sleuthkit <dot> org
|
|
*
|
|
* Licensed 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.sleuthkit.autopsy.experimental.autoingest;
|
|
|
|
import java.io.IOException;
|
|
import java.nio.file.Path;
|
|
import java.nio.file.Paths;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.logging.Level;
|
|
import javax.swing.SwingUtilities;
|
|
import org.openide.filesystems.FileObject;
|
|
import org.openide.filesystems.FileUtil;
|
|
import org.openide.util.actions.CallableSystemAction;
|
|
import org.sleuthkit.autopsy.casemodule.AddImageAction;
|
|
import org.sleuthkit.autopsy.casemodule.Case;
|
|
import org.sleuthkit.autopsy.casemodule.CaseActionException;
|
|
import org.sleuthkit.autopsy.casemodule.CaseNewAction;
|
|
import org.sleuthkit.autopsy.coreutils.Logger;
|
|
import org.sleuthkit.autopsy.experimental.configuration.AutoIngestUserPreferences;
|
|
|
|
/**
|
|
* Handles locating and opening cases created by auto ingest.
|
|
*/
|
|
final class AutoIngestCaseManager {
|
|
|
|
private static final Logger LOGGER = Logger.getLogger(AutoIngestCaseManager.class.getName());
|
|
private static AutoIngestCaseManager instance;
|
|
|
|
/**
|
|
* Gets the auto ingest case manager.
|
|
*
|
|
* @return The auto ingest case manager singleton.
|
|
*/
|
|
synchronized static AutoIngestCaseManager getInstance() {
|
|
if (null == instance) {
|
|
instance = new AutoIngestCaseManager();
|
|
}
|
|
return instance;
|
|
}
|
|
|
|
/**
|
|
* Constructs an object that handles locating and opening cases created by
|
|
* auto ingest.
|
|
*/
|
|
private AutoIngestCaseManager() {
|
|
|
|
/*
|
|
* Permanently delete the "Open Recent Cases" item in the "File" menu.
|
|
* This is quite drastic, as it also affects Autopsy standalone mode on
|
|
* this machine, but review mode is only for looking at cases created by
|
|
* automated ingest.
|
|
*/
|
|
FileObject root = FileUtil.getConfigRoot();
|
|
FileObject openRecentCasesMenu = root.getFileObject("Menu/Case/OpenRecentCase");
|
|
if (openRecentCasesMenu != null) {
|
|
try {
|
|
openRecentCasesMenu.delete();
|
|
} catch (IOException ex) {
|
|
AutoIngestCaseManager.LOGGER.log(Level.WARNING, "Unable to remove Open Recent Cases file menu item", ex);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Gets a list of the cases in the top level case folder used by auto
|
|
* ingest.
|
|
*/
|
|
List<AutoIngestCase> getCases() {
|
|
List<AutoIngestCase> cases = new ArrayList<>();
|
|
List<Path> caseFolders = PathUtils.findCaseFolders(Paths.get(AutoIngestUserPreferences.getAutoModeResultsFolder()));
|
|
for (Path caseFolderPath : caseFolders) {
|
|
cases.add(new AutoIngestCase(caseFolderPath));
|
|
}
|
|
return cases;
|
|
}
|
|
|
|
/**
|
|
* Opens an auto ingest case case.
|
|
*
|
|
* @param caseMetadataFilePath Path to the case metadata file.
|
|
*
|
|
* @throws CaseActionException
|
|
*/
|
|
synchronized void openCase(Path caseMetadataFilePath) throws CaseActionException {
|
|
/*
|
|
* Open the case.
|
|
*/
|
|
Case.openAsCurrentCase(caseMetadataFilePath.toString());
|
|
}
|
|
}
|