FileAttacher.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:4k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: FileAttacher.java,v 1.2 2000/04/06 08:02:02 wastl Exp $ */
  2. import net.wastl.webmail.ui.html.*;
  3. import net.wastl.webmail.ui.xml.*;
  4. import net.wastl.webmail.server.*;
  5. import net.wastl.webmail.server.http.*;
  6. import java.util.*;
  7. import java.text.*;
  8. import java.io.*;
  9. import javax.mail.*;
  10. import net.wastl.webmail.misc.*;
  11. /**
  12.  * FileAttacher.java
  13.  *
  14.  * Created: Tue Sep  7 16:45:21 1999
  15.  *
  16.  * Copyright (C) 1999-2000 Sebastian Schaffert
  17.  * 
  18.  * This program is free software; you can redistribute it and/or
  19.  * modify it under the terms of the GNU General Public License
  20.  * as published by the Free Software Foundation; either version 2
  21.  * of the License, or (at your option) any later version.
  22.  * 
  23.  * This program is distributed in the hope that it will be useful,
  24.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  25.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  26.  * GNU General Public License for more details.
  27.  * 
  28.  * You should have received a copy of the GNU General Public License
  29.  * along with this program; if not, write to the Free Software
  30.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  31.  */
  32. /**
  33.  * This plugin shows the Form for attaching files to a message as well as does
  34.  * the actual attaching to a WebMailSession
  35.  *
  36.  * provides: attach
  37.  * requires: composer
  38.  *
  39.  * @author Sebastian Schaffert
  40.  * @version
  41.  */
  42. public class FileAttacher implements URLHandler, Plugin {
  43.     
  44.     public static final String VERSION="1.00";
  45.     public static final String URL="/compose/attach";
  46.     
  47.     Storage store;
  48.     public FileAttacher() {
  49.     }
  50.     public void register(WebMailServer parent) {
  51. parent.getURLHandler().registerHandler(URL,this);
  52. this.store=parent.getStorage();
  53. parent.getConfigScheme().configRegisterStringKey("MAX ATTACH SIZE","1000000","Maximum size of attachments in bytes");
  54.     }
  55.     public String getName() {
  56. return "FileAttacher";
  57.     }
  58.     public String getDescription() {
  59. return "This URL-Handler handles file attachments for the Composer.";
  60.     }
  61.     public String getVersion() {
  62. return VERSION;
  63.     }
  64.     public String getURL() {
  65. return URL;
  66.     }
  67.     
  68.     public HTMLDocument handleURL(String suburl, HTTPSession sess, HTTPRequestHeader head) throws WebMailException {
  69. if(sess == null) {
  70.     throw new WebMailException("No session was given. If you feel this is incorrect, please contact your system administrator");
  71. }
  72. WebMailSession session=(WebMailSession)sess;
  73. UserData user=session.getUser();
  74. if(head.isContentSet("ADD")) {
  75.     try {
  76. /* Read the file from the HTTP Header and store it in the user's session */
  77. ByteStore bs=(ByteStore)head.getObjContent("FILE");
  78. String description="";
  79. if(head.isContentSet("DESCRIPTION")) {
  80.     description=new String(((ByteStore)head.getObjContent("DESCRIPTION")).getBytes());
  81. }
  82. //System.err.println("Description: "+description);
  83. if(bs!=null && bs.getSize() >0 ) {
  84.     session.addWorkAttachment(bs.getName(),bs,description);
  85. }
  86.     } catch(Exception e) {
  87. e.printStackTrace();
  88. throw new DocumentNotFoundException("Could not attach file. (Reason: "+e.getMessage()+")");
  89.     }
  90. } else if(head.isContentSet("DELETE") && head.isContentSet("ATTACHMENTS")) {
  91.     System.err.println("Removing "+head.getContent("ATTACHMENTS"));
  92.     session.removeWorkAttachment(head.getContent("ATTACHMENTS"));
  93. }
  94.     
  95. return new XHTMLDocument(session.getModel(),
  96.  store.getStylesheet("compose_attach.xsl",
  97.      user.getPreferredLocale(),user.getTheme()));
  98.     }
  99.     public String provides() {
  100. return "attach";
  101.     }
  102.     public String requires() {
  103. return "composer";
  104.     }
  105. } // FileAttacher