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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: ImageHandler.java,v 1.2 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.Locale;
  7. /*
  8.  * ImageHandler.java
  9.  *
  10.  * Created: Mon Mar 27 23:15:41 2000
  11.  *
  12.  * Copyright (C) 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.  *
  30.  * @author Sebastian Schaffert
  31.  * @version
  32.  */
  33. public class ImageHandler implements Plugin, URLHandler  {
  34.         
  35.     public static final String VERSION="1.0";
  36.     public static final String URL="/images";
  37.     Storage store;
  38.     public ImageHandler() {
  39.     }
  40.     public void register(WebMailServer parent) {
  41. parent.getURLHandler().registerHandler(URL,this);
  42. store=parent.getStorage();
  43.     }
  44.     public String getName() {
  45. return "ImageHandler";
  46.     }
  47.     public String getDescription() {
  48. return "Return WebMail images";
  49.     }
  50.     public String getVersion() {
  51. return VERSION;
  52.     }
  53.     public String getURL() {
  54. return URL;
  55.     }
  56.     public HTMLDocument handleURL(String suburl, HTTPSession session, HTTPRequestHeader header) throws WebMailException {
  57. if(session == null || session instanceof AdminSession) {
  58.     //throw new WebMailException("No session was given. If you feel this is incorrect, please contact your system administrator");
  59.     return new HTMLImage(store,"images"+suburl,Locale.getDefault(),"default");
  60. } else {
  61.     UserData data=((WebMailSession)session).getUser();
  62.     return new HTMLImage(store,"images"+suburl,data.getPreferredLocale(),data.getTheme());
  63. }
  64.     }
  65.     public String provides() {
  66. return "imagehandler";
  67.     }
  68.     public String requires() {
  69. return "";
  70.     }
  71.     
  72. } // ImageHandler