Autopsy  4.18.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
ContentViewerDetailsPanel.java
Go to the documentation of this file.
1 /*
2  * Autopsy
3  *
4  * Copyright 2020 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.discovery.ui;
20 
21 import java.util.logging.Level;
22 import org.openide.nodes.Node;
27 import org.sleuthkit.datamodel.BlackboardArtifact;
28 import org.sleuthkit.datamodel.BlackboardAttribute;
29 import org.sleuthkit.datamodel.TskCoreException;
30 
34 final class ContentViewerDetailsPanel extends AbstractArtifactDetailsPanel {
35 
36  private static final long serialVersionUID = 1L;
37  private final DataContentPanel contentViewer = DataContentPanel.createInstance();
38  private final static Logger logger = Logger.getLogger(ContentViewerDetailsPanel.class.getName());
39 
43  @ThreadConfined(type = ThreadConfined.ThreadType.AWT)
44  ContentViewerDetailsPanel() {
45  initComponents();
46  add(contentViewer);
47  }
48 
54  @SuppressWarnings("unchecked")
55  // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
56  private void initComponents() {
57 
58  setPreferredSize(new java.awt.Dimension(300, 0));
59  setLayout(new java.awt.BorderLayout());
60  }// </editor-fold>//GEN-END:initComponents
61 
62  @ThreadConfined(type = ThreadConfined.ThreadType.AWT)
63  @Override
64  public void setArtifact(BlackboardArtifact artifact) {
65  Node node = Node.EMPTY;
66  if (artifact != null) {
67  boolean useAssociatedFile = artifact.getArtifactTypeID() == BlackboardArtifact.ARTIFACT_TYPE.TSK_WEB_DOWNLOAD.getTypeID()
68  || artifact.getArtifactTypeID() == BlackboardArtifact.ARTIFACT_TYPE.TSK_WEB_CACHE.getTypeID();
69  BlackboardAttribute pathIdAttr = null;
70  if (useAssociatedFile) {
71  try {
72  pathIdAttr = artifact.getAttribute(new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_PATH_ID));
73  } catch (TskCoreException ex) {
74  logger.log(Level.WARNING, "Error getting Path ID Attribute for artifact with ID: " + artifact.getArtifactID(), ex);
75  }
76  }
77  if (!useAssociatedFile || pathIdAttr != null) {
78  node = new BlackboardArtifactNode(artifact, useAssociatedFile);
79  }
80  }
81  contentViewer.setNode(node);
82  }
83 
84 
85  // Variables declaration - do not modify//GEN-BEGIN:variables
86  // End of variables declaration//GEN-END:variables
87 }

Copyright © 2012-2021 Basis Technology. Generated on: Thu Jul 8 2021
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.