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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: Composer.java,v 1.3 2000/04/18 13:12:47 wastl Exp $ */
  2. import net.wastl.webmail.ui.html.*;
  3. import net.wastl.webmail.ui.xml.*;
  4. import net.wastl.webmail.ui.*;
  5. import net.wastl.webmail.server.*;
  6. import net.wastl.webmail.server.http.*;
  7. /*
  8.  * Composer.java
  9.  *
  10.  * Created: Tue Sep  7 12:46:08 1999
  11.  *
  12.  * Copyright (C) 1999-2000 Sebastian Schaffert
  13.  * 
  14.  * This program is free software; you can redistribute it and/or
  15.  * modify it under the terms of the GNU General Public License
  16.  * as published by the Free Software Foundation; either version 2
  17.  * of the License, or (at your option) any later version.
  18.  * 
  19.  * This program is distributed in the hope that it will be useful,
  20.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  * GNU General Public License for more details.
  23.  * 
  24.  * You should have received a copy of the GNU General Public License
  25.  * along with this program; if not, write to the Free Software
  26.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  27.  */
  28. /**
  29.  * Compose a message. This plugin will show the compose form and fill in
  30.  * the necessary fields if this is a continued message
  31.  *
  32.  * @see FileAttacher
  33.  *
  34.  * provides: composer
  35.  * requires: content bar
  36.  *
  37.  * Created: Tue Sep  7 12:46:08 1999
  38.  *
  39.  * @author Sebastian Schaffert
  40.  * @version
  41.  */
  42. public class Composer implements Plugin, URLHandler {
  43.     
  44.     public static final String VERSION="1.3";
  45.     public static final String URL="/compose";
  46.     
  47.     Storage store;
  48.     public Composer() {
  49.     }
  50.     public void register(WebMailServer parent) {
  51. parent.getURLHandler().registerHandler(URL,this);
  52. store=parent.getStorage();
  53.     }
  54.     public String getName() {
  55. return "Composer";
  56.     }
  57.     public String getDescription() {
  58. return "This plugin handles the composition of a message.";
  59.     }
  60.     public String getVersion() {
  61. return VERSION;
  62.     }
  63.     public String getURL() {
  64. return URL;
  65.     }
  66.     public HTMLDocument handleURL(String suburl, HTTPSession sess, HTTPRequestHeader header) throws WebMailException {
  67. HTMLDocument content;
  68. WebMailSession session=(WebMailSession)sess;
  69. UserData user=session.getUser();
  70. /* We were not continuing to edit a message, so we should delete the current draft! */
  71. if(!header.isContentSet("continue")) {
  72.     session.clearAttachments();
  73.     session.clearWork();
  74.     session.prepareCompose();
  75.     session.setEnv();
  76. }
  77. int mode=0;
  78. if(header.isContentSet("reply")) {
  79.     mode += WebMailSession.GETMESSAGE_MODE_REPLY;
  80. }
  81. if(header.isContentSet("forward")) {
  82.     mode += WebMailSession.GETMESSAGE_MODE_FORWARD;
  83. }
  84. if(mode>0) {
  85.     if(!header.isContentSet("folder-id") || !header.isContentSet("message-nr")) {
  86. /// XXX error handler TBD here!
  87. System.err.println("Error: no folder-id or message-nr in request for reply or forward!");
  88.     } else {
  89. String folderhash=header.getContent("folder-id");   
  90. int msgnr=0;
  91. try {
  92.     msgnr=Integer.parseInt(header.getContent("message-nr"));
  93. } catch(NumberFormatException ex) {
  94.     /// XXX error handler TBD here!
  95.     System.err.println("MSGNR wrong in forward/reply!");
  96. }
  97.  
  98. try {
  99.     session.getMessage(folderhash,msgnr,mode);
  100. } catch(NoSuchFolderException ex) {
  101.     /// XXX error handler TBD here!
  102. }
  103.     }
  104. }
  105. return new XHTMLDocument(session.getModel(),
  106.  store.getStylesheet("compose.xsl",
  107.      user.getPreferredLocale(),user.getTheme()));
  108.     }
  109.   
  110.     public String provides() {
  111. return "composer";
  112.     }
  113.     public String requires() {
  114. return "content bar";
  115.     }
  116. } // Composer