You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2003/01/08 05:47:48 UTC

cvs commit: jakarta-commons-sandbox/jelly/jelly-tags/email maven.xml project.properties project.xml .cvsignore

dion        2003/01/07 20:47:48

  Added:       jelly/jelly-tags/email/src/java/org/apache/commons/jelly/tags/email
                        EmailTag.java EmailTagLibrary.java package.html
               jelly/jelly-tags/email maven.xml project.properties
                        project.xml .cvsignore
  Log:
  Move email out of core
  
  Revision  Changes    Path
  1.1                  jakarta-commons-sandbox/jelly/jelly-tags/email/src/java/org/apache/commons/jelly/tags/email/EmailTag.java
  
  Index: EmailTag.java
  ===================================================================
  /*
   * $Header: /home/cvs/jakarta-commons-sandbox/jelly/jelly-tags/email/src/java/org/apache/commons/jelly/tags/email/EmailTag.java,v 1.1 2003/01/08 04:47:48 dion Exp $
   * $Revision: 1.1 $
   * $Date: 2003/01/08 04:47:48 $
   *
   * ====================================================================
   *
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 2002 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution, if
   *    any, must include the following acknowlegement:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Commons", and "Apache Software
   *    Foundation" must not be used to endorse or promote products derived
   *    from this software without prior written permission. For written
   *    permission, please contact apache@apache.org.
   *
   * 5. Products derived from this software may not be called "Apache"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   * 
   * $Id: EmailTag.java,v 1.1 2003/01/08 04:47:48 dion Exp $
   */
  package org.apache.commons.jelly.tags.email;
  
  import org.apache.commons.jelly.TagSupport;
  import org.apache.commons.jelly.XMLOutput;
  import org.apache.commons.jelly.JellyException;
  import org.apache.commons.logging.LogFactory;
  import org.apache.commons.logging.Log;
  
  import javax.mail.Session;
  import javax.mail.Message;
  import javax.mail.Multipart;
  import javax.mail.Transport;
  import javax.mail.internet.MimeMessage;
  import javax.mail.internet.InternetAddress;
  import javax.mail.internet.MimeBodyPart;
  import javax.mail.internet.MimeMultipart;
  import javax.activation.FileDataSource;
  import javax.activation.DataHandler;
  
  import java.util.Properties;
  import java.util.StringTokenizer;
  import java.util.Date;
  import java.io.File;
  import java.io.FileNotFoundException;
  
  /**
   * Basic tag for sending an email. Supports one attachment, multiple to addresses delimited by ";",
   * multiple cc addresses, etc.
   *
   * @author  Jason Horman
   * @version  $Id: EmailTag.java,v 1.1 2003/01/08 04:47:48 dion Exp $
   */
  
  public class EmailTag extends TagSupport {
      private Log logger = LogFactory.getLog(EmailTag.class);
  
      /** smtp server */
      private String server       = null;
  
      /** who to send the message as */
      private String from         = null;
  
      /** who to send to */
      private String to           = null;
  
      /** who to cc */
      private String cc           = null;
  
      /** mail subject */
      private String subject      = null;
  
      /** mail message */
      private String message      = null;
  
      /** file attachment */
      private File attachment     = null;
      
      /** whether we should encode the XML body as text */
      private boolean encodeXML = false;
  
      /**
       * Set the smtp server for the message. If not set the system
       * property "mail.smtp.host" will be used.
       */
      public void setServer(String server) {
          this.server = server;
      }
  
      /**
       * Set the from address for the message
       */
      public void setFrom(String from) {
          this.from = from;
      }
  
      /**
       * ";" seperated list of people to send to
       */
      public void setTo(String to) {
          this.to = to;
      }
  
      /**
       * ";" seperated list of people to cc
       */
      public void setCC(String cc) {
          this.cc = cc;
      }
  
      /**
       * Set the email subject
       */
      public void setSubject(String subject) {
          this.subject = subject;
      }
  
      /**
       * Set the message body. This will override the Jelly tag body
       */
      public void setMessage(String message) {
          this.message = message;
      }
  
      /**
       * Set the email attachment for the message. Only 1 attachment is supported right now
       */
      public void setAttach(File attachment) throws FileNotFoundException {
          if (!attachment.exists()) {
              throw new FileNotFoundException("attachment not found");
          }
  
          this.attachment = attachment;
      }
  
      /** 
       * Sets whether we should encode the XML body as text or not. The default
       * is false so that the body will assumed to be valid XML
       */
      public void setEncodeXML(boolean encodeXML) {
          this.encodeXML = encodeXML;
      }
  
      /**
       * Execute the tag
       */
      public void doTag(XMLOutput xmlOutput) throws Exception {
          Properties props = new Properties();
          props.putAll(context.getVariables());
  
          // if a server was set then configure the system property
          if (server != null) {
              props.put("mail.smtp.host", server);
          } 
          else {
              if (props.get("mail.smtp.host") == null) {
                  throw new JellyException("no smtp server configured");
              }
          }
  
          // check if there was no to address
          if (to == null) {
              throw new JellyException("no to address specified");
          }
  
          // check if there was no from
          if (from == null) {
              throw new JellyException("no from address specified");
          }
  
          // get the messageBody from the message attribute or from the tag body
          // lets insure that our body is evaluated whichever as child tags may
          // communicate with us to set properties etc.
          String messageBody = message;
          if (message != null) {
              invokeBody(xmlOutput);
          }
          else {
              message = getBodyText(encodeXML);
          }
  
          // configure the mail session
          Session session = Session.getDefaultInstance(props, null);
  
          // construct the mime message
          MimeMessage msg = new MimeMessage(session);
  
          // set the from address
          msg.setFrom(new InternetAddress(from));
  
          // parse out the to addresses
          StringTokenizer st = new StringTokenizer(to, ";");
          InternetAddress[] addresses = new InternetAddress[st.countTokens()];
          int addressCount = 0;
          while (st.hasMoreTokens()) {
              addresses[addressCount++] = new InternetAddress(st.nextToken().trim());
          }
  
          // set the recipients
          msg.setRecipients(Message.RecipientType.TO, addresses);
  
          // parse out the cc addresses
          if (cc != null) {
              st = new StringTokenizer(cc, ";");
              InternetAddress[] ccAddresses = new InternetAddress[st.countTokens()];
              int ccAddressCount = 0;
              while (st.hasMoreTokens()) {
                  ccAddresses[ccAddressCount++] = new InternetAddress(st.nextToken().trim());
              }
  
              // set the cc recipients
              msg.setRecipients(Message.RecipientType.CC, ccAddresses);
          }
  
          // set the subject
          if (subject != null) {
              msg.setSubject(subject);
          }
  
          // set a timestamp
          msg.setSentDate(new Date());
  
          // if there was no attachment just set the text/body of the message
          if (attachment == null) {
  
              msg.setText(messageBody);
  
          } 
          else {
  
              // attach the multipart mime message
              // setup the body
              MimeBodyPart mbp1 = new MimeBodyPart();
              mbp1.setText(messageBody);
  
              // setup the attachment
              MimeBodyPart mbp2 = new MimeBodyPart();
              FileDataSource fds = new FileDataSource(attachment);
              mbp2.setDataHandler(new DataHandler(fds));
              mbp2.setFileName(fds.getName());
  
              // create the multipart and add its parts
              Multipart mp = new MimeMultipart();
              mp.addBodyPart(mbp1);
              mp.addBodyPart(mbp2);
  
              msg.setContent(mp);
  
          }
  
          logger.info("sending email to " + to + " using " + server);
  
          // send the email
          Transport.send(msg);
  
      }
  }
  
  
  
  1.1                  jakarta-commons-sandbox/jelly/jelly-tags/email/src/java/org/apache/commons/jelly/tags/email/EmailTagLibrary.java
  
  Index: EmailTagLibrary.java
  ===================================================================
  /*
   * $Header: /home/cvs/jakarta-commons-sandbox/jelly/jelly-tags/email/src/java/org/apache/commons/jelly/tags/email/EmailTagLibrary.java,v 1.1 2003/01/08 04:47:48 dion Exp $
   * $Revision: 1.1 $
   * $Date: 2003/01/08 04:47:48 $
   *
   * ====================================================================
   *
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 2002 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution, if
   *    any, must include the following acknowlegement:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Commons", and "Apache Software
   *    Foundation" must not be used to endorse or promote products derived
   *    from this software without prior written permission. For written
   *    permission, please contact apache@apache.org.
   *
   * 5. Products derived from this software may not be called "Apache"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   * 
   * $Id: EmailTagLibrary.java,v 1.1 2003/01/08 04:47:48 dion Exp $
   */
  package org.apache.commons.jelly.tags.email;
  
  import org.apache.commons.jelly.TagLibrary;
  
  import org.apache.commons.logging.Log;
  import org.apache.commons.logging.LogFactory;
  
  /** Describes the Taglib. This class could be generated by XDoclet
    *
    * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
    * @version $Revision: 1.1 $
    */
  public class EmailTagLibrary extends TagLibrary {
  
      /** The Log to which logging calls will be made. */
      private Log log = LogFactory.getLog(EmailTagLibrary.class);
      
      public EmailTagLibrary() {
          registerTag("email", EmailTag.class);
      }
  }
  
  
  
  1.1                  jakarta-commons-sandbox/jelly/jelly-tags/email/src/java/org/apache/commons/jelly/tags/email/package.html
  
  Index: package.html
  ===================================================================
  <html>
  <head>
  </head>
  <body>
    <p>
    	Tags for sending email using the JavaMail API
    </p>
  </body>
  </html>
  
  
  
  1.1                  jakarta-commons-sandbox/jelly/jelly-tags/email/maven.xml
  
  Index: maven.xml
  ===================================================================
  <project default="java:jar">
  
  </project>
  
  
  
  1.1                  jakarta-commons-sandbox/jelly/jelly-tags/email/project.properties
  
  Index: project.properties
  ===================================================================
  # -------------------------------------------------------------------
  # P R O J E C T  P R O P E R T I E S
  # -------------------------------------------------------------------
  
  maven.junit.fork=true
  
  maven.compile.deprecation = on
  
  # Installation dir
  maven.dist.install.dir = /usr/local/jelly
  
  maven.checkstyle.properties=../tag-checkstyle.properties
  
  
  1.1                  jakarta-commons-sandbox/jelly/jelly-tags/email/project.xml
  
  Index: project.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!DOCTYPE project [
    <!-- see file for description -->
    <!ENTITY commonDeps SYSTEM "file:../../commonDependencies.ent">
  ]>
  <project>
    <extend>../tag-project.xml</extend>
    <id>commons-jelly-tags-email</id>
    <name>commons-jelly-tags-email</name>
    <package>org.apache.commons.jelly.tags.email</package>
  
    <description>
        This is a Jelly interface for Email
    </description>
    <shortDescription>Commons Jelly e-mail Tag Library</shortDescription>
    
    <siteDirectory>/www/jakarta.apache.org/commons/sandbox/jelly/tags/email</siteDirectory>
    <distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons-sandbox/jelly/tags/email</distributionDirectory>
    <repository>
      <connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons-sandbox/jelly/jelly-tags/email/</connection>
      <url>http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/jelly/jelly-tags/email/</url>
    </repository>
    
      
    <dependencies>
    
      &commonDeps;
    
      <!-- START for compilation -->
      <dependency>
        <id>commons-jelly</id>
        <version>SNAPSHOT</version>
      </dependency>
      <!-- END for compilation -->
      
      <!-- START for run time -->
      <dependency>
        <id>jaf</id>
        <version>1.0.2</version>
        <jar>activation-1.0.2.jar</jar>
      </dependency>
      
      <dependency>
        <id>javamail</id>
        <version>1.2</version>
      </dependency>
      <!-- END for run time -->
  
      
    </dependencies>
    
  </project>
  
  
  
  1.1                  jakarta-commons-sandbox/jelly/jelly-tags/email/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  maven.log
  target
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>