View Javadoc

1   /**
2    * This file Copyright (c) 2003-2011 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.module.mail.templates;
35  
36  import info.magnolia.module.mail.MailException;
37  import info.magnolia.module.mail.MailTemplate;
38  
39  import java.net.URL;
40  import java.util.List;
41  
42  import javax.activation.DataHandler;
43  import javax.activation.DataSource;
44  import javax.activation.FileDataSource;
45  import javax.activation.URLDataSource;
46  import javax.mail.BodyPart;
47  import javax.mail.internet.MimeBodyPart;
48  import javax.mail.internet.MimeMultipart;
49  
50  
51  /**
52   * A base class for sending mails with attachments.
53   * Date: Apr 1, 2006 Time: 9:00:35 PM
54   * @author <a href="mailto:niko@macnica.com">Nicolas Modrzyk</a>
55   */
56  public abstract class MgnlMultipartEmail extends MgnlEmail {
57  
58      private static final String CONTENT_ID = "Content-ID";
59  
60      private static final String RELATED = "related";
61  
62      protected MimeMultipart multipart;
63  
64      public boolean isMultipart() {
65          return (this.multipart != null);
66      }
67  
68      public MimeMultipart getMailMultipart() {
69          return this.multipart;
70      }
71  
72      public MgnlMultipartEmail(MailTemplate template) {
73          super(template);
74      }
75  
76      @Override
77      public MimeBodyPart addAttachment(MailAttachment attachment) throws MailException {
78  
79          try {
80              if (!isMultipart()) {
81                  turnOnMultipart();
82              }
83              MimeBodyPart messageBodyPart = new MimeBodyPart();
84              String key = attachment.getName();
85              log.info("Found new attachment with name :" + key);
86  
87              // get info on the attachment
88              URL url = attachment.getUrl();
89              String name = attachment.getFileName();
90              String contentType = attachment.getContentType();
91  
92              // set the disposition of the file.
93              messageBodyPart.setDisposition(attachment.getDisposition() + "; filename=\"" + name + "\"");
94  
95              // Fetch the image and associate to part
96              DataSource fds = url.getProtocol().startsWith("file:")
97                  ? new FileDataSource(url.getFile())
98                  : new URLDataSource(url);
99              // DataSource fd = new FileDataSource(file);
100             messageBodyPart.setDataHandler(new DataHandler(fds));
101             // Add a header to connect to the HTML
102 
103             // MAGNOLIA-1649 this is really important!
104             if (!key.startsWith("<")) {
105                 key = "<" + key + ">";
106             }
107             messageBodyPart.setHeader(CONTENT_ID, key);
108 
109             // set the header as well as the content type do this AFTER setting the data source
110             messageBodyPart.setHeader(CONTENT_TYPE, contentType + "; name=\"" + name + "\"");
111 
112             // Add part to multi-part
113             this.multipart.addBodyPart(messageBodyPart);
114 
115             // Set the content again
116             this.setContent(this.multipart);
117 
118             return messageBodyPart;
119         }
120         catch (Exception e) {
121             throw new MailException(e.getMessage(), e);
122         }
123     }
124 
125     private void turnOnMultipart() {
126 
127         try {
128             if(this.multipart == null) {
129                 this.multipart = new MimeMultipart(RELATED);
130             }
131             if(this.getContent() != null) {
132 
133                 Object o = this.getContent();
134                 if (o instanceof String) {
135                     BodyPart messageBodyPart = new MimeBodyPart();
136                     messageBodyPart.setContent(o, getContentType());
137                     this.multipart.addBodyPart(messageBodyPart, 0);
138                     this.setContent(this.multipart);
139                 }
140             }
141         }
142         catch (Exception e) {
143             log.info(e.getMessage());
144         }
145     }
146 
147     @Override
148     public void setBody(String body) throws Exception {
149 
150         this.setContent(body, getContentType());
151 
152         // process the attachments
153         final List<MailAttachment> attachments = super.getTemplate().getAttachments();
154         if (attachments != null) {
155             setAttachments(attachments);
156         }
157     }
158 
159 }