freemarkerdor/src/main/java/cz/xelfi/quoridor/freemarkerdor/EmailService.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 04 Mar 2010 19:37:58 +0100
changeset 233 ecddc9f373bb
child 235 782848b5f533
permissions -rw-r--r--
Changing an email needs to be confirmed by receiving an email and responding to an URL send inside it
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * The contents of this file are subject to the terms of either the GNU
     5  * General Public License Version 2 only ("GPL") or the Common
     6  * Development and Distribution License("CDDL") (collectively, the
     7  * "License"). You may not use this file except in compliance with the
     8  * License. You can obtain a copy of the License at
     9  * http://www.netbeans.org/cddl-gplv2.html
    10  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    11  * specific language governing permissions and limitations under the
    12  * License.  When distributing the software, include this License Header
    13  * Notice in each file and include the License file at
    14  * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    15  * particular file as subject to the "Classpath" exception as provided
    16  * by Sun in the GPL Version 2 section of the License file that
    17  * accompanied this code. If applicable, add the following below the
    18  * License Header, with the fields enclosed by brackets [] replaced by
    19  * your own identifying information:
    20  * "Portions Copyrighted [year] [name of copyright owner]"
    21  *
    22  * Contributor(s):
    23  *
    24  * Portions Copyrighted 2009 Jaroslav Tulach
    25  */
    26 
    27 package cz.xelfi.quoridor.freemarkerdor;
    28 
    29 import java.io.IOException;
    30 import java.util.Iterator;
    31 import java.util.Properties;
    32 import java.util.ServiceLoader;
    33 import javax.mail.Message;
    34 import javax.mail.MessagingException;
    35 import javax.mail.Session;
    36 import javax.mail.Transport;
    37 import javax.mail.internet.InternetAddress;
    38 import javax.mail.internet.MimeMessage;
    39 import org.openide.util.Exceptions;
    40 
    41 /** Send emails.
    42  *
    43  * @author Jaroslav Tulach <jtulach@netbeans.org>
    44  */
    45 public abstract class EmailService {
    46     private static EmailService DEFAULT;
    47     
    48     public abstract void sendEmail(
    49         String address,
    50         String subject,
    51         String text
    52     ) throws IOException;
    53 
    54     public static synchronized EmailService getDefault() {
    55         if (DEFAULT == null) {
    56             Iterator<EmailService> it = ServiceLoader.load(EmailService.class).iterator();
    57             DEFAULT = it.hasNext() ? it.next() : new Impl();
    58         }
    59         return DEFAULT;
    60     }
    61 
    62     private static class Impl extends EmailService {
    63         private final Session session;
    64         public Impl() {
    65             Properties props = System.getProperties();
    66             final String host = "mail.smtp.host";
    67             if (props.get(host) == null) {
    68                 props.put(host,"localhost");
    69             }
    70             session = Session.getDefaultInstance(props, null);
    71         }
    72 
    73         @Override
    74         public void sendEmail(String address, String subject, String text) throws IOException {
    75             try {
    76                 MimeMessage message = new MimeMessage(session);
    77                 message.setFrom(new InternetAddress("quoridor@xelfi.cz"));
    78                 message.addRecipient(Message.RecipientType.TO, new InternetAddress(address));
    79                 message.setSubject(subject);
    80                 message.setText(text);
    81                 Transport.send(message);
    82             } catch (MessagingException ex) {
    83                 throw new IOException(ex);
    84             }
    85 
    86         }
    87     }
    88 }