Autopsy  4.4
Graphical digital forensics platform for The Sleuth Kit and other tools.
CaseDeleteAction.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2011-2017 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.casemodule;
20 
21 import java.awt.event.ActionEvent;
22 import java.beans.PropertyChangeEvent;
23 import java.util.concurrent.ExecutionException;
24 import java.util.logging.Level;
25 import javax.swing.Action;
26 import javax.swing.JOptionPane;
27 import javax.swing.SwingWorker;
28 import org.openide.DialogDescriptor;
29 import org.openide.DialogDisplayer;
30 import org.openide.NotifyDescriptor;
31 import org.openide.util.HelpCtx;
32 import org.openide.util.NbBundle;
33 import org.openide.util.NbBundle.Messages;
34 import org.openide.util.actions.CallableSystemAction;
37 
44 final class CaseDeleteAction extends CallableSystemAction {
45 
46  private static final long serialVersionUID = 1L;
47  private static final Logger logger = Logger.getLogger(CaseDeleteAction.class.getName());
48 
49  CaseDeleteAction() {
50  putValue(Action.NAME, NbBundle.getMessage(CaseDeleteAction.class, "CTL_CaseDeleteAction"));
51  this.setEnabled(false);
52  Case.addEventSubscriber(Case.Events.CURRENT_CASE.toString(), (PropertyChangeEvent evt) -> {
53  setEnabled(null != evt.getNewValue() && UserPreferences.getMode() != UserPreferences.SelectedMode.REVIEW);
54  });
55  }
56 
57  @Override
58  @Messages({
59  "Case.deleteCaseConfirmationDialog.title=Delete Current Case?",
60  "Case.deleteCaseConfirmationDialog.message=Are you sure you want to close and delete the current case?",
61  "Case.deleteCaseFailureMessageBox.title=Failed to Delete Case",
62  "# {0} - exception message", "Case.deleteCaseFailureMessageBox.message=Error deleting case: {0}",})
63  public void actionPerformed(ActionEvent e) {
64  try {
65  Case currentCase = Case.getCurrentCase();
66  String caseName = currentCase.getName();
67  String caseDirectory = currentCase.getCaseDirectory();
68 
69  /*
70  * Do a confirmation dialog and close the current case if the user
71  * confirms he/she wants to proceed.
72  */
73  Object response = DialogDisplayer.getDefault().notify(new NotifyDescriptor(
74  Bundle.Case_deleteCaseConfirmationDialog_message(),
75  Bundle.Case_deleteCaseConfirmationDialog_title(),
76  NotifyDescriptor.YES_NO_OPTION,
77  NotifyDescriptor.WARNING_MESSAGE,
78  null,
79  NotifyDescriptor.NO_OPTION));
80  if (null != response && DialogDescriptor.YES_OPTION == response) {
81 
82  new SwingWorker<Void, Void>() {
83 
84  @Override
85  protected Void doInBackground() throws Exception {
86  Case.deleteCurrentCase();
87  return null;
88  }
89 
90  @Override
91  protected void done() {
92  try {
93  get();
94  } catch (InterruptedException | ExecutionException ex) {
95  logger.log(Level.SEVERE, String.format("Failed to delete case %s at %s", caseName, caseDirectory), ex);
96  JOptionPane.showMessageDialog(
97  null,
98  Bundle.Case_deleteCaseFailureMessageBox_message(ex.getLocalizedMessage()),
99  Bundle.Case_deleteCaseFailureMessageBox_title(),
100  JOptionPane.ERROR_MESSAGE);
101  }
102  /*
103  * Re-open the startup window.
104  */
105  StartupWindowProvider.getInstance().open();
106  }
107  }.execute();
108  }
109  } catch (IllegalStateException ex) {
110  logger.log(Level.SEVERE, "Case delete action called with no current case", ex);
111  }
112  }
113 
114  @Override
115  public void performAction() {
116  }
117 
118  @Override
119  public String getName() {
120  return NbBundle.getMessage(CaseDeleteAction.class, "CTL_CaseDeleteAction");
121  }
122 
123  @Override
124  public HelpCtx getHelpCtx() {
125  return HelpCtx.DEFAULT_HELP;
126  }
127 
128 }
synchronized static Logger getLogger(String name)
Definition: Logger.java:161

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