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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: FolderSetup.java,v 1.3 2000/04/06 08:02:02 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.html.*;
  6. import net.wastl.webmail.ui.xml.*;
  7. import java.util.Enumeration;
  8. /*
  9.  * FolderSetup.java
  10.  *
  11.  * Created: Tue Sep  7 18:45:11 1999
  12.  *
  13.  * Copyright (C) 1999-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 the folder setup form and handle changes (except deletion).
  31.  *
  32.  * provides: folder setup
  33.  * requires: content bar
  34.  *
  35.  * Created: Tue Sep  7 18:45:11 1999
  36.  *
  37.  * @author Sebastian Schaffert
  38.  * @version
  39.  */
  40. public class FolderSetup implements Plugin, URLHandler {
  41.     
  42.     public static final String VERSION="1.3";
  43.     public static final String URL="/folder/setup";
  44.     Storage store;
  45.     public FolderSetup() {
  46.     }
  47.     public void register(WebMailServer parent) {
  48. parent.getURLHandler().registerHandler(URL,this);
  49. store=parent.getStorage();
  50.     }
  51.     public String getName() {
  52. return "FolderSetup";
  53.     }
  54.     public String getDescription() {
  55. return "This ContentProvider manages a users folder setup.";
  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. HTMLDocument content;
  70. if(header.isContentSet("method") && header.getContent("method").equals("mailbox")) {
  71.     if(header.isContentSet("remove")) {
  72. session.removeMailbox(header.getContent("remove"));
  73.     } else if(header.isContentSet("add")) {
  74. session.addMailbox(header.getContent("mbox_name"),
  75.    header.getContent("mbox_proto"),
  76.    header.getContent("mbox_host"),
  77.    header.getContent("mbox_login"),
  78.    header.getContent("mbox_password"));
  79.     }
  80.     content=new XHTMLDocument(session.getModel(),
  81.       store.getStylesheet("foldersetup-mailbox.xsl",
  82.   user.getPreferredLocale(),user.getTheme()));
  83. } else if(header.isContentSet("method") && header.getContent("method").equals("folder")) {
  84.     if(header.isContentSet("remove")) {
  85. try {
  86.     session.removeFolder(header.getContent("remove"),header.isContentSet("recurse"));
  87. } catch(Exception ex) {
  88.     ex.printStackTrace();
  89.     throw new WebMailException("Error while removing folders");
  90. }
  91.     } else if(header.isContentSet("addto")) {
  92. String type=header.getContent("folder_type");
  93. boolean holds_folders=false,holds_messages=false;
  94. if(type.equals("msgs")) {
  95.     holds_messages=true;
  96. } else if(type.equals("folder")) {
  97.     holds_folders=true;
  98. } else if(type.equals("msgfolder")) {
  99.     holds_folders=true; holds_messages=true;
  100. }
  101. try {
  102.     session.addFolder(header.getContent("addto"),
  103.       header.getContent("folder_name"),
  104.       holds_messages,
  105.       holds_folders);
  106.     
  107. } catch(Exception ex) {
  108.     ex.printStackTrace();
  109.     throw new WebMailException("Error while adding folders");
  110. }
  111.     }
  112.     content=new XHTMLDocument(session.getModel(),
  113.       store.getStylesheet("foldersetup-folders.xsl",
  114.   user.getPreferredLocale(),user.getTheme()));
  115.     
  116. } else if(header.isContentSet("method") && header.getContent("method").equals("folderadd")) {
  117.     session.setAddToFolder(header.getContent("addto"));
  118.     content=new XHTMLDocument(session.getModel(),
  119.       store.getStylesheet("foldersetup-folders-add.xsl",
  120.   user.getPreferredLocale(),user.getTheme()));
  121. } else {     
  122.     content=new XHTMLDocument(session.getModel(),
  123.       store.getStylesheet("foldersetup.xsl",
  124.   user.getPreferredLocale(),user.getTheme()));
  125. }
  126. return content;
  127.     }
  128.     
  129.     public String provides() {
  130. return "folder setup";
  131.     }
  132.     public String requires() {
  133. return "content bar";
  134.     }
  135. } // FolderSetup