mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 18:17:43 +00:00
122 lines
4.2 KiB
Java
122 lines
4.2 KiB
Java
/*
|
|
* Autopsy Forensic Browser
|
|
*
|
|
* Copyright 2013 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.imageanalyzer.actions;
|
|
|
|
import java.awt.Component;
|
|
import javax.swing.JButton;
|
|
import javax.swing.JOptionPane;
|
|
import org.openide.awt.ActionID;
|
|
import org.openide.awt.ActionReference;
|
|
import org.openide.awt.ActionRegistration;
|
|
import org.openide.util.HelpCtx;
|
|
import org.openide.util.NbBundle.Messages;
|
|
import org.openide.util.actions.CallableSystemAction;
|
|
import org.openide.windows.WindowManager;
|
|
import org.sleuthkit.autopsy.casemodule.Case;
|
|
import org.sleuthkit.autopsy.core.Installer;
|
|
import org.sleuthkit.autopsy.coreutils.Logger;
|
|
import org.sleuthkit.autopsy.imageanalyzer.EurekaController;
|
|
import org.sleuthkit.autopsy.imageanalyzer.EurekaModule;
|
|
|
|
@ActionID(category = "Tools",
|
|
id = "org.sleuthkit.autopsy.imageanalyzer.OpenAction")
|
|
@ActionReference(path = "Menu/Tools" /* , position = 333 */)
|
|
@ActionRegistration( // iconBase = "org/sleuthkit/autopsy/imageanalyzer/images/lightbulb.png",
|
|
lazy = false,
|
|
displayName = "#CTL_OpenAction")
|
|
@Messages("CTL_OpenAction=Analyze Images/Videos")
|
|
public final class OpenAction extends CallableSystemAction {
|
|
|
|
private final String EUREKA = "Analyze Images/Videos";
|
|
|
|
private static final boolean fxInited = Installer.isJavaFxInited();
|
|
|
|
private static final Logger LOGGER = Logger.getLogger(OpenAction.class.getName());
|
|
|
|
public OpenAction() {
|
|
super();
|
|
}
|
|
|
|
@Override
|
|
public boolean isEnabled() {
|
|
return Case.isCaseOpen() && fxInited && Case.getCurrentCase().hasData();
|
|
}
|
|
|
|
/** Returns the toolbar component of this action
|
|
*
|
|
* @return component the toolbar button */
|
|
@Override
|
|
public Component getToolbarPresenter() {
|
|
JButton toolbarButton = new JButton(this);
|
|
toolbarButton.setText(EUREKA);
|
|
toolbarButton.addActionListener(this);
|
|
|
|
return toolbarButton;
|
|
}
|
|
|
|
@Override
|
|
public void performAction() {
|
|
|
|
//check case
|
|
if (!Case.existsCurrentCase()) {
|
|
return;
|
|
}
|
|
final Case currentCase = Case.getCurrentCase();
|
|
|
|
if (EurekaModule.isCaseStale(currentCase)) {
|
|
//case is stale, ask what to do
|
|
int answer = JOptionPane.showConfirmDialog(WindowManager.getDefault().getMainWindow(), "The image / video databse may be out of date. "
|
|
+ "Do you want to update and listen for further ingest results?\n"
|
|
+ " Choosing 'no' will display the out of date results."
|
|
+ " Choosing 'cancel' will close the image /video analyzer",
|
|
"The image / video databse may be out of date. ", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE);
|
|
|
|
switch (answer) {
|
|
case JOptionPane.YES_OPTION:
|
|
EurekaController.getDefault().setListeningEnabled(true);
|
|
//fall through
|
|
case JOptionPane.NO_OPTION:
|
|
EurekaModule.openTopComponent();
|
|
break;
|
|
case JOptionPane.CANCEL_OPTION:
|
|
break; //do nothing
|
|
|
|
}
|
|
} else {
|
|
//case is not stale, just open it
|
|
EurekaModule.openTopComponent();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return EUREKA;
|
|
}
|
|
|
|
@Override
|
|
public HelpCtx getHelpCtx() {
|
|
return HelpCtx.DEFAULT_HELP;
|
|
}
|
|
|
|
@Override
|
|
public boolean asynchronous() {
|
|
return false; // run on edt
|
|
}
|
|
}
|