use of com.zimbra.cs.index.IndexDocument in project zm-mailbox by Zimbra.
the class Note method generateIndexData.
@Override
public List<IndexDocument> generateIndexData() {
String toIndex = getText();
IndexDocument doc = new IndexDocument();
doc.addContent(toIndex);
doc.addSubject(toIndex);
doc.addPartName(LuceneFields.L_PARTNAME_NOTE);
return Collections.singletonList(doc);
}
use of com.zimbra.cs.index.IndexDocument in project zm-mailbox by Zimbra.
the class CalendarItem method getIndexDocuments.
protected List<IndexDocument> getIndexDocuments() throws TemporaryIndexingException {
List<IndexDocument> toRet = new ArrayList<IndexDocument>();
// when this method is called during commit of cancel operation.
if (numInvites() < 1)
return toRet;
Invite defaultInvite = getDefaultInviteOrNull();
String defaultLocation = "";
if (defaultInvite != null && defaultInvite.getLocation() != null)
defaultLocation = defaultInvite.getLocation();
String defaultName = "";
if (defaultInvite != null && defaultInvite.getName() != null)
defaultName = defaultInvite.getName();
String defaultOrganizer = "";
if (defaultInvite != null && defaultInvite.getOrganizer() != null)
defaultOrganizer = defaultInvite.getOrganizer().getIndexString();
for (Invite inv : getInvites()) {
StringBuilder s = new StringBuilder();
List<String> toAddrs = new ArrayList<String>();
// NAME (subject)
String nameToUse = "";
if (inv.getName() != null) {
s.append(inv.getName()).append(' ');
nameToUse = inv.getName();
} else {
s.append(defaultName).append(' ');
nameToUse = defaultName;
}
// ORGANIZER (from)
String orgToUse = null;
if (inv.getOrganizer() != null) {
String thisInvOrg = inv.getOrganizer().getIndexString();
if (thisInvOrg != null && thisInvOrg.length() > 0)
orgToUse = thisInvOrg;
}
if (orgToUse == null)
orgToUse = defaultOrganizer;
// ATTENDIES (TO)
for (ZAttendee at : inv.getAttendees()) {
try {
toAddrs.add(at.getFriendlyAddress().toString());
s.append(at.getIndexString()).append(' ');
} catch (ServiceException e) {
}
}
s.append(' ');
// LOCATION
if (inv.getLocation() != null) {
s.append(inv.getLocation()).append(' ');
} else {
s.append(defaultLocation).append(' ');
}
// DESCRIPTION
try {
s.append(inv.getDescription()).append(' ');
} catch (ServiceException ex) {
if (ZimbraLog.index.isDebugEnabled()) {
ZimbraLog.index.debug("Caught exception fetching description while indexing CalendarItem " + this.getId() + " skipping", ex);
}
}
// COMMENTS
List<String> comments = inv.getComments();
if (comments != null && !comments.isEmpty()) {
for (String comm : comments) {
s.append(comm).append(' ');
}
}
// CONTACTS
List<String> contacts = inv.getContacts();
if (contacts != null && !contacts.isEmpty()) {
for (String contact : contacts) {
s.append(contact).append(' ');
}
}
// CATEGORIES
List<String> categories = inv.getCategories();
if (categories != null && !categories.isEmpty()) {
for (String cat : categories) {
s.append(cat).append(' ');
}
}
MimeMessage mm = null;
if (!inv.getDontIndexMimeMessage()) {
try {
mm = inv.getMimeMessage();
} catch (ServiceException e) {
if (ZimbraLog.index.isDebugEnabled()) {
ZimbraLog.index.debug("Caught MessagingException for Invite " + inv.toString() + " while fetching MM during indexing of CalendarItem " + this.getId() + " skipping Invite", e);
}
}
}
List<IndexDocument> docList = new ArrayList<IndexDocument>();
if (mm == null) {
// no blob!
IndexDocument doc = new IndexDocument();
// need to properly emulate an indexed Invite message here -- set the TOP partname
doc.addPartName(LuceneFields.L_PARTNAME_TOP);
docList.add(doc);
} else {
try {
ParsedMessage pm = new ParsedMessage(mm, mMailbox.attachmentsIndexingEnabled());
pm.analyzeFully();
if (pm.hasTemporaryAnalysisFailure())
throw new MailItem.TemporaryIndexingException();
docList = pm.getLuceneDocuments();
} catch (ServiceException e) {
if (ZimbraLog.index.isDebugEnabled()) {
ZimbraLog.index.debug("Caught MessagingException for Invite " + inv.toString() + " while indexing CalendarItem " + this.getId() + " skipping Invite", e);
}
}
}
for (IndexDocument doc : docList) {
// update the doc, overriding many of the fields with data from the appointment
doc.addContent(s.toString());
doc.removeTo();
doc.removeFrom();
doc.removeSubject();
for (String to : toAddrs) {
doc.addTo(new RFC822AddressTokenStream(to));
}
doc.addFrom(new RFC822AddressTokenStream(orgToUse));
doc.addSubject(nameToUse);
toRet.add(doc);
}
}
// set the "public"/"private" flag in the index for this appointment
FieldTokenStream fields = new FieldTokenStream(INDEX_FIELD_ITEM_CLASS, isPublic() ? "public" : "private");
for (IndexDocument doc : toRet) {
doc.addField(fields);
}
return toRet;
}
use of com.zimbra.cs.index.IndexDocument in project zm-mailbox by Zimbra.
the class ParsedMessage method getMainBodyLuceneDocument.
private IndexDocument getMainBodyLuceneDocument(StringBuilder fullContent) throws MessagingException, ServiceException {
IndexDocument doc = new IndexDocument(new Document());
doc.addMimeType(new MimeTypeTokenStream("message/rfc822"));
doc.addPartName(LuceneFields.L_PARTNAME_TOP);
doc.addFrom(getFromTokenStream());
doc.addTo(getToTokenStream());
doc.addCc(getCcTokenStream());
try {
doc.addEnvFrom(new RFC822AddressTokenStream(getMimeMessage().getHeader("X-Envelope-From", ",")));
} catch (MessagingException ignore) {
}
try {
doc.addEnvTo(new RFC822AddressTokenStream(getMimeMessage().getHeader("X-Envelope-To", ",")));
} catch (MessagingException ignore) {
}
String msgId = Strings.nullToEmpty(Mime.getHeader(getMimeMessage(), "message-id"));
if (msgId.length() > 0) {
if (msgId.charAt(0) == '<') {
msgId = msgId.substring(1);
}
if (msgId.charAt(msgId.length() - 1) == '>') {
msgId = msgId.substring(0, msgId.length() - 1);
}
if (msgId.length() > 0) {
doc.addMessageId(msgId);
}
}
// iterate all the message headers, add them to the structured-field data in the index
FieldTokenStream fields = new FieldTokenStream();
MimeMessage mm = getMimeMessage();
List<Part> parts = new ArrayList<Part>();
parts.add(mm);
try {
if (mm.getContent() instanceof ZMimeMultipart) {
ZMimeMultipart content = (ZMimeMultipart) mm.getContent();
int numParts = content.getCount();
for (int i = 0; i < numParts; i++) {
parts.add(content.getBodyPart(i));
}
}
} catch (IOException ignore) {
}
for (Part part : parts) {
Enumeration<?> en = part.getAllHeaders();
while (en.hasMoreElements()) {
Header h = (Header) en.nextElement();
String key = h.getName().trim();
String value = h.getValue();
if (value != null) {
value = MimeUtility.unfold(value).trim();
} else {
value = "";
}
if (key.length() > 0) {
if (value.length() == 0) {
// low-level tokenizer can't deal with blank header value, so we'll index
// some dummy value just so the header appears in the index.
// Users can query for the existence of the header with a query
// like #headername:*
fields.add(key, "_blank_");
} else {
fields.add(key, value);
}
}
}
}
// add key:value pairs to the structured FIELD lucene field
doc.addField(fields);
String subject = getSubject();
doc.addSubject(subject);
// add subject and from to main content for better searching
StringBuilder contentPrepend = new StringBuilder(subject);
// Bug 583: add all of the TOKENIZED versions of the email addresses to our CONTENT field...
appendToContent(contentPrepend, StringUtil.join(" ", getFromTokenStream().getAllTokens()));
appendToContent(contentPrepend, StringUtil.join(" ", getToTokenStream().getAllTokens()));
appendToContent(contentPrepend, StringUtil.join(" ", getCcTokenStream().getAllTokens()));
// bug 33461: add filenames to our CONTENT field
for (String fn : filenames) {
appendToContent(contentPrepend, ZimbraAnalyzer.getAllTokensConcatenated(LuceneFields.L_FILENAME, fn));
// also add the non-tokenized form, so full-filename searches match
appendToContent(contentPrepend, fn);
}
String text = contentPrepend.toString() + " " + fullContent.toString();
doc.addContent(text);
try {
MimeHandler.getObjects(text, doc);
} catch (ObjectHandlerException e) {
ZimbraLog.index.warn("Unable to recognize searchable objects in message: msgid=%s,subject=%s", getMessageID(), getSubject(), e);
}
// Get the list of attachment content types from this message and any TNEF attachments
doc.addAttachments(new MimeTypeTokenStream(Mime.getAttachmentTypeList(messageParts)));
return doc;
}
use of com.zimbra.cs.index.IndexDocument in project zm-mailbox by Zimbra.
the class ParsedContact method analyzeContact.
private void analyzeContact(Account acct, boolean indexAttachments) throws ServiceException {
if (indexDocs != null) {
return;
}
indexDocs = new ArrayList<IndexDocument>();
StringBuilder attachContent = new StringBuilder();
ServiceException conversionError = null;
if (contactAttachments != null) {
for (Attachment attach : contactAttachments) {
try {
analyzeAttachment(attach, attachContent, indexAttachments);
} catch (MimeHandlerException e) {
String part = attach.getPartName();
String ctype = attach.getContentType();
ZimbraLog.index.warn("Parse error on attachment " + part + " (" + ctype + ")", e);
if (conversionError == null && ConversionException.isTemporaryCauseOf(e)) {
conversionError = ServiceException.FAILURE("failed to analyze part", e.getCause());
mHasTemporaryAnalysisFailure = true;
}
} catch (ObjectHandlerException e) {
String part = attach.getPartName();
String ctype = attach.getContentType();
ZimbraLog.index.warn("Parse error on attachment " + part + " (" + ctype + ")", e);
}
}
}
indexDocs.add(getPrimaryDocument(acct, attachContent.toString()));
}
Aggregations