mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
40937: ALF-15702, ALF-15669: mmt-dependencies was messing up the SDK classpath 40939: ALF-15696: Remove svnkit.jar - makes the build fail if the version of installed command line svn is 1.7. Using commandline binding for <svn> Ant task to be consistent with other parts of the build. 40942: ALF-15595 Pooled review workflow has a percentage parameter that has no effect. "Required Approve Percentage" removed from pooled review approve activiti form configuration as was done for ALF-8489 for jbpm form configuration. 40956: ALF-15717: Merged V4.0-BUG-FIX to V4.1-BUG-FIX (Lost revision) 33680: Merged DEV to V4.0-BUG-FIX 33675: ALF-12379: WebLogic: alfresco fails to start: java.lang.NoSuchMethodError: org.apache.commons.lang.mutable.MutableInt.increment()V org.apache.commons.* package should be used as application's preferrable for WebLogic. 40962: ALF-15635 ALF-14738: Use the right property to write Community vs. Enterprise in war manifest files 40965: Merge Dev to V4.1-BUG_FIX ALF-14144 : "Append failed" error message with IMAP when email contains a .msg file attached 40977: Sync parser generation 40983: Fixed: ALF-15730: MSSQL: It's impossible to upgrade Alfresco from 3.4.10 to 4.1.1 (build 134) - Taken directly from bug investigation phase 40986: ALF-15706 Unfriendly isCloudSyncKeyAvailable button on License Descriptior page 40992: Merged BRANCHES/DEV/FEATURES/CLOUD1_SALESFORCE/ to BRANCHES/DEV/V4.1-BUG-FIX: 40988: Fixes ALF-13698: Makes sure the default submit handler doesn't trigger 40997: Fix for ALF-15718 - correctly deal with browser headers as case-insensitive during headers map lookups. 41002: Show Cloud Sync Key Available on license descriptor. 41008: ALF-15744: Another WQS lucene resultset leak - Follow on from ALF-15505. New since 3.4.9 41010: ALF-15697: Not possible to start workflow not specifying the Due Date - Regression caused by ALF-10243 41027: ALF-15193: "Folder Is Not a Folder CmisInvalidArgumentException thrown when using cmis:objectId" 41029: Fix for ALF-14388 - Edit Online option is not supported for '.docm', 'dotm', '.xlsm' files 41032: Fix for ALF-15753 Infinite loop during Solr ACL indexing when ACL Changeset batch is empty git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@41034 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
226 lines
8.3 KiB
Java
226 lines
8.3 KiB
Java
/*
|
|
* Copyright (C) 2005-2010 Alfresco Software Limited.
|
|
*
|
|
* This file is part of Alfresco
|
|
*
|
|
* Alfresco is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alfresco is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.alfresco.repo.imap;
|
|
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
import java.io.UnsupportedEncodingException;
|
|
|
|
import javax.mail.MessagingException;
|
|
import javax.mail.Multipart;
|
|
import javax.mail.Part;
|
|
import javax.mail.internet.ContentType;
|
|
import javax.mail.internet.MimeMessage;
|
|
import javax.mail.internet.MimeUtility;
|
|
|
|
import org.alfresco.model.ContentModel;
|
|
import org.alfresco.model.ImapModel;
|
|
import org.alfresco.repo.security.authentication.AuthenticationUtil;
|
|
import org.alfresco.service.ServiceRegistry;
|
|
import org.alfresco.service.cmr.model.FileFolderService;
|
|
import org.alfresco.service.cmr.model.FileInfo;
|
|
import org.alfresco.service.cmr.repository.ContentWriter;
|
|
import org.alfresco.service.cmr.repository.NodeRef;
|
|
import org.alfresco.service.cmr.repository.NodeService;
|
|
import org.alfresco.service.cmr.security.PermissionService;
|
|
import org.alfresco.util.config.RepositoryFolderConfigBean;
|
|
import org.apache.commons.logging.Log;
|
|
import org.apache.commons.logging.LogFactory;
|
|
import org.springframework.util.FileCopyUtils;
|
|
|
|
/**
|
|
* Extract attachments according to provided AttachmentsExtractorMode
|
|
*
|
|
* @since 3.4.7
|
|
*/
|
|
public class AttachmentsExtractor
|
|
{
|
|
public static enum AttachmentsExtractorMode
|
|
{
|
|
/**
|
|
* Attachments will be extracted to the same folder where email lies.
|
|
*/
|
|
SAME,
|
|
/**
|
|
* All attachments for all emails will be extracted to one folder.
|
|
*/
|
|
COMMON,
|
|
/**
|
|
* All attachments for each email will be extracted to separate folder.
|
|
*/
|
|
SEPARATE
|
|
}
|
|
|
|
private Log logger = LogFactory.getLog(AttachmentsExtractor.class);
|
|
|
|
private FileFolderService fileFolderService;
|
|
private NodeService nodeService;
|
|
private ServiceRegistry serviceRegistry;
|
|
private RepositoryFolderConfigBean attachmentsFolder;
|
|
private NodeRef attachmentsFolderRef;
|
|
private AttachmentsExtractorMode attachmentsExtractorMode;
|
|
|
|
public void setFileFolderService(FileFolderService fileFolderService)
|
|
{
|
|
this.fileFolderService = fileFolderService;
|
|
}
|
|
|
|
public void setNodeService(NodeService nodeService)
|
|
{
|
|
this.nodeService = nodeService;
|
|
}
|
|
|
|
public void setAttachmentsFolder(RepositoryFolderConfigBean attachmentsFolder)
|
|
{
|
|
this.attachmentsFolder = attachmentsFolder;
|
|
}
|
|
|
|
public void setServiceRegistry(ServiceRegistry serviceRegistry)
|
|
{
|
|
this.serviceRegistry = serviceRegistry;
|
|
}
|
|
|
|
public void setAttachmentsExtractorMode(String attachmentsExtractorMode)
|
|
{
|
|
this.attachmentsExtractorMode = AttachmentsExtractorMode.valueOf(attachmentsExtractorMode);
|
|
}
|
|
|
|
public void init()
|
|
{
|
|
attachmentsFolderRef = AuthenticationUtil.runAs(new AuthenticationUtil.RunAsWork<NodeRef>()
|
|
{
|
|
public NodeRef doWork() throws Exception
|
|
{
|
|
NodeRef attFolderRef = attachmentsFolder.getOrCreateFolderPath(serviceRegistry.getNamespaceService(), nodeService, serviceRegistry.getSearchService(), fileFolderService);
|
|
serviceRegistry.getPermissionService().setPermission(attFolderRef , PermissionService.ALL_AUTHORITIES, PermissionService.FULL_CONTROL, true);
|
|
return attFolderRef;
|
|
}
|
|
}, AuthenticationUtil.getSystemUserName());
|
|
}
|
|
|
|
public void extractAttachments(NodeRef messageRef, MimeMessage originalMessage) throws IOException, MessagingException
|
|
{
|
|
NodeRef attachmentsFolderRef = null;
|
|
switch (attachmentsExtractorMode)
|
|
{
|
|
case SAME:
|
|
attachmentsFolderRef = nodeService.getPrimaryParent(messageRef).getParentRef();
|
|
break;
|
|
case COMMON:
|
|
attachmentsFolderRef = this.attachmentsFolderRef;
|
|
break;
|
|
case SEPARATE:
|
|
default:
|
|
NodeRef parentFolder = nodeService.getPrimaryParent(messageRef).getParentRef();
|
|
String messageName = (String) nodeService.getProperty(messageRef, ContentModel.PROP_NAME);
|
|
String attachmentsFolderName = messageName + "-attachments";
|
|
attachmentsFolderRef = fileFolderService.create(parentFolder, attachmentsFolderName, ContentModel.TYPE_FOLDER).getNodeRef();
|
|
break;
|
|
}
|
|
|
|
nodeService.createAssociation(messageRef, attachmentsFolderRef, ImapModel.ASSOC_IMAP_ATTACHMENTS_FOLDER);
|
|
|
|
Object content = originalMessage.getContent();
|
|
if (content instanceof Multipart)
|
|
{
|
|
Multipart multipart = (Multipart) content;
|
|
|
|
for (int i = 0, n = multipart.getCount(); i < n; i++)
|
|
{
|
|
Part part = multipart.getBodyPart(i);
|
|
if ("attachment".equalsIgnoreCase(part.getDisposition()))
|
|
{
|
|
createAttachment(messageRef, attachmentsFolderRef, part);
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
private void createAttachment(NodeRef messageFile, NodeRef attachmentsFolderRef, Part part) throws MessagingException, IOException
|
|
{
|
|
String fileName = part.getFileName();
|
|
if (fileName == null || fileName.isEmpty())
|
|
{
|
|
fileName = "unnamed";
|
|
}
|
|
try
|
|
{
|
|
fileName = MimeUtility.decodeText(fileName);
|
|
}
|
|
catch (UnsupportedEncodingException e)
|
|
{
|
|
if (logger.isWarnEnabled())
|
|
{
|
|
logger.warn("Cannot decode file name '" + fileName + "'", e);
|
|
}
|
|
}
|
|
|
|
ContentType contentType = new ContentType(part.getContentType());
|
|
NodeRef attachmentFile = fileFolderService.searchSimple(attachmentsFolderRef, fileName);
|
|
// The one possible behaviour
|
|
/*
|
|
if (result.size() > 0)
|
|
{
|
|
for (FileInfo fi : result)
|
|
{
|
|
fileFolderService.delete(fi.getNodeRef());
|
|
}
|
|
}
|
|
*/
|
|
// And another one behaviour which will overwrite the content of the existing file. It is performance preferable.
|
|
if (attachmentFile == null)
|
|
{
|
|
FileInfo createdFile = fileFolderService.create(attachmentsFolderRef, fileName, ContentModel.TYPE_CONTENT);
|
|
nodeService.createAssociation(messageFile, createdFile.getNodeRef(), ImapModel.ASSOC_IMAP_ATTACHMENT);
|
|
attachmentFile = createdFile.getNodeRef();
|
|
}
|
|
else
|
|
{
|
|
String name = fileName;
|
|
String ext = "";
|
|
if (fileName.lastIndexOf(".") != -1)
|
|
{
|
|
int index = fileName.lastIndexOf(".");
|
|
name = fileName.substring(0, index);
|
|
ext = fileName.substring(index);
|
|
|
|
}
|
|
|
|
int copyNum = 0;
|
|
do
|
|
{
|
|
copyNum++;
|
|
} while (fileFolderService.searchSimple(attachmentsFolderRef, name + " (" + copyNum + ")" + ext) != null);
|
|
|
|
FileInfo createdFile = fileFolderService.create(attachmentsFolderRef, name + " (" + copyNum + ")" + ext, ContentModel.TYPE_CONTENT);
|
|
nodeService.createAssociation(messageFile, createdFile.getNodeRef(), ImapModel.ASSOC_IMAP_ATTACHMENT);
|
|
attachmentFile = createdFile.getNodeRef();
|
|
|
|
}
|
|
|
|
nodeService.setProperty(attachmentFile, ContentModel.PROP_DESCRIPTION, nodeService.getProperty(messageFile, ContentModel.PROP_NAME));
|
|
|
|
ContentWriter writer = fileFolderService.getWriter(attachmentFile);
|
|
writer.setMimetype(contentType.getBaseType());
|
|
OutputStream os = writer.getContentOutputStream();
|
|
FileCopyUtils.copy(part.getInputStream(), os);
|
|
}
|
|
|
|
} |