Merge pull request #7867 from gdicristofaro/CT-7342_imageInfoPath

CT-7342 remove physical drive mentions from case
This commit is contained in:
Mark McKinnon 2024-03-20 10:03:05 -04:00 committed by GitHub
commit 56622c9032
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 41 additions and 9 deletions

View File

@ -107,6 +107,9 @@ Case.servicesException.notificationTitle={0} Error
Case.servicesException.serviceResourcesCloseError=Could not close case resources for {0} service: {1}
Case_caseType_multiUser=Multi-user case
Case_caseType_singleUser=Single-user case
Case_checkImagePaths_exceptionOccurred=An exception occurred while checking if image paths are present
# {0} - paths
Case_checkImagePaths_noPaths=The following images had no associated paths: {0}
CaseDetailsPanel.casePanel.border.title=Case
CaseDetailsPanel.examinerLabel.text=Name:
CaseDetailsPanel.examinerPanel.border.title=Examiner

View File

@ -41,6 +41,7 @@ import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.HashMap;
@ -64,6 +65,7 @@ import javax.annotation.concurrent.GuardedBy;
import javax.annotation.concurrent.ThreadSafe;
import javax.swing.JOptionPane;
import javax.swing.SwingUtilities;
import org.apache.commons.lang3.ArrayUtils;
import org.apache.commons.lang3.StringUtils;
import org.openide.util.Lookup;
import org.openide.util.NbBundle;
@ -194,8 +196,6 @@ public class Case {
private final SleuthkitEventListener sleuthkitEventListener;
private CollaborationMonitor collaborationMonitor;
private Services caseServices;
// matches something like '\\.\PHYSICALDRIVE0'
private static final String PLACEHOLDER_DS_PATH_REGEX = "^\\s*\\\\\\\\\\.\\\\PHYSICALDRIVE\\d*\\s*$";
private volatile boolean hasDataSource = false;
private volatile boolean hasData = false;
@ -1307,13 +1307,6 @@ public class Case {
String path = entry.getValue();
boolean fileExists = (new File(path).exists()|| DriveUtils.driveExists(path));
if (!fileExists) {
// CT-7336: ignore relocating datasources if file provider is present and placeholder path is used.
if (newCurrentCase.getMetadata() != null
&& !StringUtils.isBlank(newCurrentCase.getMetadata().getContentProviderName())
&& (path == null || path.matches(PLACEHOLDER_DS_PATH_REGEX))) {
continue;
}
try {
DataSource ds = newCurrentCase.getSleuthkitCase().getDataSource(obj_id);
String hostName = StringUtils.defaultString(ds.getHost() == null ? "" : ds.getHost().getName());
@ -2293,6 +2286,8 @@ public class Case {
checkForCancellation();
openCommunicationChannels(progressIndicator);
checkForCancellation();
checkImagePaths();
checkForCancellation();
openFileSystemsInBackground();
return null;
@ -2311,6 +2306,40 @@ public class Case {
throw ex;
}
}
/**
* Check if content provider is present, all images have paths, or throw an error.
* @throws CaseActionException
*/
@Messages({
"# {0} - paths",
"Case_checkImagePaths_noPaths=The following images had no associated paths: {0}",
"Case_checkImagePaths_exceptionOccurred=An exception occurred while checking if image paths are present"
})
private void checkImagePaths() throws CaseActionException {
// if there is a content provider, images don't necessarily need paths
if (StringUtils.isNotBlank(this.metadata.getContentProviderName())) {
return;
}
// identify images without paths
try {
List<Image> noPathImages = new ArrayList<>();
List<Image> images = this.caseDb.getImages();
for (Image img: images) {
if (ArrayUtils.isEmpty(img.getPaths())) {
noPathImages.add(img);
}
}
if (!noPathImages.isEmpty()) {
String imageListStr = noPathImages.stream().map(Image::getName).collect(Collectors.joining(", "));
throw new CaseActionException(Bundle.Case_checkImagePaths_noPaths(imageListStr));
}
} catch (TskCoreException ex) {
throw new CaseActionException(Bundle.Case_checkImagePaths_exceptionOccurred(), ex);
}
}
/**
* Starts a background task that reads a sector from each file system of