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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: UserSetup.java,v 1.2 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. /*
  8.  * UserSetup.java
  9.  *
  10.  * Created: Wed Sep  8 14:07:36 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.  * Show a form to change user settings and actually perform them.
  30.  *
  31.  * provides: user setup
  32.  * requires: content bar
  33.  *
  34.  * @author Sebastian Schaffert
  35.  * @version
  36.  */
  37. public class UserSetup implements Plugin, URLHandler {
  38.     
  39.     public static final String VERSION="1.3";
  40.     public static final String URL="/setup";
  41.     Storage store;
  42.     public UserSetup() {
  43.     }
  44.     public void register(WebMailServer parent) {
  45. parent.getURLHandler().registerHandler(URL,this);
  46. store=parent.getStorage();
  47.     }
  48.     public String getName() {
  49. return "UserSetup";
  50.     }
  51.     public String getDescription() {
  52. return "Change a users settings.";
  53.     }
  54.     public String getVersion() {
  55. return VERSION;
  56.     }
  57.     public String getURL() {
  58. return URL;
  59.     }
  60.     public HTMLDocument handleURL(String suburl, HTTPSession sess, HTTPRequestHeader header) throws WebMailException {  
  61. if(sess == null) {
  62.     throw new WebMailException("No session was given. If you feel this is incorrect, please contact your system administrator");
  63. }
  64. WebMailSession session=(WebMailSession)sess;
  65. UserData user=session.getUser();
  66. HTMLDocument content;
  67. session.refreshFolderInformation();
  68. if(suburl.startsWith("/submit")) {
  69.     try {
  70. session.changeSetup(header);
  71. content=new XHTMLDocument(session.getModel(),store.getStylesheet("setup.xsl",user.getPreferredLocale(),user.getTheme()));
  72.     } catch(InvalidPasswordException e) {
  73. throw new DocumentNotFoundException("The two passwords did not match");
  74.     }
  75. } else {
  76.     content=new XHTMLDocument(session.getModel(),store.getStylesheet("setup.xsl",user.getPreferredLocale(),user.getTheme()));
  77. }   
  78. return content;
  79.     }
  80.     public String provides() {
  81. return "user setup";
  82.     }
  83.     public String requires() {
  84. return "content bar";
  85.     }
  86. } // UserSetup