001/*
002 * (C) Copyright 2013 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl-2.1.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 * Nuxeo - initial API and implementation
016 *
017 */
018package org.nuxeo.ecm.platform.mail.adapter;
019
020import org.nuxeo.ecm.core.api.DocumentModel;
021import org.nuxeo.ecm.core.api.blobholder.BlobHolder;
022import org.nuxeo.ecm.core.api.blobholder.BlobHolderFactory;
023import org.nuxeo.ecm.platform.mail.utils.MailCoreConstants;
024
025/**
026 * Return appropriate BlobHolder for MailMessage documents.
027 * 
028 * @author ldoguin
029 * @since 5.7.3
030 */
031public class MailMessageBlobHolderfactory implements BlobHolderFactory {
032
033    @Override
034    public BlobHolder getBlobHolder(DocumentModel doc) {
035        String docType = doc.getType();
036        BlobHolder blobHolder;
037
038        if (docType.equals(MailCoreConstants.MAIL_MESSAGE_TYPE)) {
039            blobHolder = new MailMessageBlobHolder(doc, MailCoreConstants.HTML_TEXT_PROPERTY_NAME, "body.html");
040        } else {
041            blobHolder = null;
042        }
043        return blobHolder;
044    }
045
046}