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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: ShowMessage.java,v 1.4 2000/04/18 13:12:47 wastl Exp $ */
  2. import net.wastl.webmail.misc.Urlify;
  3. import net.wastl.webmail.server.*;
  4. import net.wastl.webmail.server.http.*;
  5. import net.wastl.webmail.ui.xml.*;
  6. import net.wastl.webmail.ui.html.*;
  7. import java.util.*;
  8. /*
  9.  * ShowMessage.java
  10.  *
  11.  * Created: Thu Sep  2 16:57:54 1999
  12.  *
  13.  * Copyright (C) 2000 Sebastian Schaffert
  14.  * 
  15.  * This program is free software; you can redistribute it and/or
  16.  * modify it under the terms of the GNU General Public License
  17.  * as published by the Free Software Foundation; either version 2
  18.  * of the License, or (at your option) any later version.
  19.  * 
  20.  * This program is distributed in the hope that it will be useful,
  21.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23.  * GNU General Public License for more details.
  24.  * 
  25.  * You should have received a copy of the GNU General Public License
  26.  * along with this program; if not, write to the Free Software
  27.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  28.  */
  29. /**
  30.  * Show a message.
  31.  *
  32.  * provides: message show
  33.  * requires: message list
  34.  *
  35.  * @author Sebastian Schaffert
  36.  * @version
  37.  */
  38. public class ShowMessage implements Plugin, URLHandler {
  39.     
  40.     public static final String VERSION="1.3";
  41.     public static final String URL="/folder/showmsg";
  42.     Storage store;
  43.     public ShowMessage() {
  44.     }
  45.     public void register(WebMailServer parent) {
  46. parent.getURLHandler().registerHandler(URL,this);
  47. this.store=parent.getStorage();
  48.     }
  49.     public String getName() {
  50. return "ShowMessage";
  51.     }
  52.     public String getDescription() {
  53. return "Display a message";
  54.     }
  55.     public String getVersion() {
  56. return VERSION;
  57.     }
  58.     public String getURL() {
  59. return URL;
  60.     }
  61.     public HTMLDocument handleURL(String suburl, HTTPSession sess, HTTPRequestHeader header) throws WebMailException {
  62. if(sess == null) {
  63.     throw new WebMailException("No session was given. If you feel this is incorrect, please contact your system administrator");
  64. }
  65. WebMailSession session=(WebMailSession)sess;
  66. UserData user=session.getUser();
  67. String folderhash=header.getContent("folder-id");
  68. if(header.isContentSet("flag")) {
  69.     try {
  70. session.setFlags(folderhash,header);
  71.     } catch(Exception ex) {
  72. if(WebMailServer.getDebug()) ex.printStackTrace();
  73. throw new WebMailException(ex.getMessage());
  74.     }
  75. }
  76. int nr=1;
  77. try {
  78.     nr=Integer.parseInt(header.getContent("message-nr"));
  79. } catch(Exception e) {}
  80. try {
  81.     session.getMessage(folderhash,nr);
  82. } catch(NoSuchFolderException e) {
  83.     throw new DocumentNotFoundException("Could not find folder "+folderhash+"!");
  84. }
  85. return new XHTMLDocument(session.getModel(),
  86.  store.getStylesheet("showmessage.xsl",
  87.      user.getPreferredLocale(),user.getTheme()));
  88. //return new HTMLParsedDocument(store,session,"showmessage");
  89.     }
  90.     public String provides() {
  91. return "message show";
  92.     }
  93.     public String requires() {
  94. return "message list";
  95.     }
  96. } // ShowMessage