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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: FolderList.java,v 1.4 2000/04/06 08:02:02 wastl Exp $ */
  2. import net.wastl.webmail.server.*;
  3. import net.wastl.webmail.server.http.*;
  4. import net.wastl.webmail.ui.html.*;
  5. import net.wastl.webmail.ui.xml.*;
  6. import java.util.*;
  7. import java.text.*;
  8. /*
  9.  * FolderList.java
  10.  *
  11.  * Created: Thu Sep  2 12:59:16 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.  * List the messages in a folder.
  31.  *
  32.  * provides: message list
  33.  * requires: mailbox list
  34.  *
  35.  * @author Sebastian Schaffert
  36.  * @version
  37.  */
  38. public class FolderList implements Plugin, URLHandler {
  39.     
  40.     public static final String VERSION="1.5";
  41.     public static final String URL="/folder/list";
  42.     Storage store;
  43.     WebMailServer parent;
  44.     public FolderList() {
  45.     }
  46.     public void register(WebMailServer parent) {
  47. parent.getURLHandler().registerHandler(URL,this);
  48. this.store=parent.getStorage();
  49. this.parent=parent;
  50.     }
  51.     public String getName() {
  52. return "FolderList";
  53.     }
  54.     public String getDescription() {
  55. return "List the contents of a folder";
  56.     }
  57.     public String getVersion() {
  58. return VERSION;
  59.     }
  60.     public String getURL() {
  61. return URL;
  62.     }
  63.     public HTMLDocument handleURL(String suburl, HTTPSession sess, HTTPRequestHeader header) throws WebMailException {
  64. if(sess == null) {
  65.     throw new WebMailException("No session was given. If you feel this is incorrect, please contact your system administrator");
  66. }
  67. WebMailSession session=(WebMailSession)sess;
  68. UserData user=session.getUser();
  69. String hashcode=header.getContent("folder-id");
  70. if(header.isContentSet("flag")) {
  71.     try {
  72. session.setFlags(hashcode,header);
  73.     } catch(Exception ex) {
  74. if(WebMailServer.getDebug()) ex.printStackTrace();
  75. throw new WebMailException(ex.getMessage());
  76.     }
  77. }
  78. int nr=1;
  79. try {
  80.     nr=Integer.parseInt(header.getContent("part"));
  81. } catch(Exception e) {}
  82. try {
  83.     session.createMessageList(hashcode,nr);
  84. } catch(NoSuchFolderException e) {
  85.     throw new DocumentNotFoundException("Could not find folder "+hashcode+"!");
  86. }
  87. return new XHTMLDocument(session.getModel(),
  88.  store.getStylesheet("messagelist.xsl",
  89.      user.getPreferredLocale(),user.getTheme()));
  90.     }
  91.     public String provides() {
  92. return "message list";
  93.     }
  94.     public String requires() {
  95. return "mailbox list";
  96.     }
  97. } // FolderList