==================================================================== */
package org.apache.poi.hsmf.datatypes;
+import static org.apache.poi.hsmf.datatypes.MAPIProperty.ATTACH_CONTENT_ID;
import static org.apache.poi.hsmf.datatypes.MAPIProperty.ATTACH_DATA;
import static org.apache.poi.hsmf.datatypes.MAPIProperty.ATTACH_EXTENSION;
import static org.apache.poi.hsmf.datatypes.MAPIProperty.ATTACH_FILENAME;
private StringChunk attachLongFileName;
private StringChunk attachMimeTag;
private DirectoryChunk attachmentDirectory;
+ private StringChunk attachContentId;
/**
* This is in WMF Format. You'll probably want to pass it to Apache Batik to
return attachRenderingWMF;
}
+ /**
+ * @return the attachment content ID
+ */
+ public StringChunk getAttachContentId() {
+ return attachContentId;
+ }
+
/**
* Called by the parser whenever a chunk is found.
*/
} else if (chunk instanceof DirectoryChunk) {
attachmentDirectory = (DirectoryChunk) chunk;
} else {
- LOG.log(POILogger.ERROR, "Unexpected data chunk of type " + chunk);
+ LOG.log(POILogger.ERROR, "Unexpected data chunk of type " + chunk.getEntryName());
}
} else if (chunkId == ATTACH_EXTENSION.id) {
attachExtension = (StringChunk) chunk;
attachMimeTag = (StringChunk) chunk;
} else if (chunkId == ATTACH_RENDERING.id) {
attachRenderingWMF = (ByteChunk) chunk;
+ } else if (chunkId == ATTACH_CONTENT_ID.id) {
+ attachContentId = (StringChunk) chunk;
+ } else {
+ LOG.log(POILogger.WARN, "Currently unsupported attachment chunk property will be ignored. " + chunk.getEntryName());
}
// And add to the main list
public class TestFileWithAttachmentsRead extends TestCase {
private final MAPIMessage twoSimpleAttachments;
private final MAPIMessage pdfMsgAttachments;
+ private final MAPIMessage inlineImgMsgAttachments;
/**
* Initialize this test, load up the attachment_test_msg.msg mapi message.
POIDataSamples samples = POIDataSamples.getHSMFInstance();
this.twoSimpleAttachments = new MAPIMessage(samples.openResourceAsStream("attachment_test_msg.msg"));
this.pdfMsgAttachments = new MAPIMessage(samples.openResourceAsStream("attachment_msg_pdf.msg"));
+ this.inlineImgMsgAttachments = new MAPIMessage(samples.openResourceAsStream("attachment_msg_inlineImg.msg"));
}
/**
assertEquals(2, attachments.length);
}
+ /**
+ * Test to see if we get the correct Content-IDs of inline images.
+ */
+ public void testReadContentIDField() throws IOException {
+ AttachmentChunks[] attachments = inlineImgMsgAttachments.getAttachmentFiles();
+
+ AttachmentChunks attachment;
+
+ // Check in Content-ID field
+ attachment = inlineImgMsgAttachments.getAttachmentFiles()[0];
+ assertEquals("image001.png", attachment.getAttachFileName().getValue());
+ assertEquals(".png", attachment.getAttachExtension().getValue());
+ assertEquals("image001.png@01D0A524.96D40F30", attachment.getAttachContentId().getValue());
+
+ attachment = inlineImgMsgAttachments.getAttachmentFiles()[1];
+ assertEquals("image002.png", attachment.getAttachFileName().getValue());
+ assertEquals(".png", attachment.getAttachExtension().getValue());
+ assertEquals("image002.png@01D0A524.96D40F30", attachment.getAttachContentId().getValue());
+
+ attachment = inlineImgMsgAttachments.getAttachmentFiles()[2];
+ assertEquals("image003.png", attachment.getAttachFileName().getValue());
+ assertEquals(".png", attachment.getAttachExtension().getValue());
+ assertEquals("image003.png@01D0A526.B4C739C0", attachment.getAttachContentId().getValue());
+
+ attachment = inlineImgMsgAttachments.getAttachmentFiles()[3];
+ assertEquals("image006.jpg", attachment.getAttachFileName().getValue());
+ assertEquals(".jpg", attachment.getAttachExtension().getValue());
+ assertEquals("image006.jpg@01D0A526.B649E220", attachment.getAttachContentId().getValue());
+ }
+
+
/**
* Test to see if attachments are not empty.
*/
assertEquals("test-unicode.doc", attachment.getAttachLongFileName().getValue());
assertEquals(".doc", attachment.getAttachExtension().getValue());
assertNull(attachment.getAttachMimeTag());
- assertEquals(24064, attachment.getAttachData().getValue().length);
+ assertEquals(24064, attachment.getAttachData().getValue().length); // or compare the hashes of the attachment data
attachment = twoSimpleAttachments.getAttachmentFiles()[1];
assertEquals("pj1.txt", attachment.getAttachFileName().getValue());
assertEquals("pj1.txt", attachment.getAttachLongFileName().getValue());
assertEquals(".txt", attachment.getAttachExtension().getValue());
assertNull(attachment.getAttachMimeTag());
- assertEquals(89, attachment.getAttachData().getValue().length);
+ assertEquals(89, attachment.getAttachData().getValue().length); // or compare the hashes of the attachment data
}
/**
assertEquals(".pdf", attachment.getAttachExtension().getValue());
assertNull(attachment.getAttachMimeTag());
assertNull(attachment.getAttachmentDirectory());
- assertEquals(13539, attachment.getAttachData().getValue().length);
+ assertEquals(13539, attachment.getAttachData().getValue().length); //or compare the hashes of the attachment data
// First in a nested message
attachment = pdfMsgAttachments.getAttachmentFiles()[0];