logname change
[mir.git] / source / mir / misc / WebdbMultipartRequest.java
1 /*
2  * Copyright (C) 2001, 2002  The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with the com.oreilly.servlet library, any library
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of
24  * the above that use the same license as the above), and distribute linked
25  * combinations including the two.  You must obey the GNU General Public
26  * License in all respects for all of the code used other than the above
27  * mentioned libraries.  If you modify this file, you may extend this exception
28  * to your version of the file, but you are not obligated to do so.  If you do
29  * not wish to do so, delete this exception statement from your version.
30  */
31
32 package mir.misc;
33
34 import java.io.IOException;
35 import java.util.Enumeration;
36 import java.util.HashMap;
37 import java.util.Hashtable;
38 import java.util.Map;
39 import java.util.Vector;
40
41 import javax.servlet.http.HttpServletRequest;
42
43 import mir.config.MirPropertiesConfiguration;
44 import mir.config.MirPropertiesConfiguration.PropertiesConfigExc;
45
46 import com.oreilly.servlet.multipart.FilePart;
47 import com.oreilly.servlet.multipart.MultipartParser;
48 import com.oreilly.servlet.multipart.ParamPart;
49 import com.oreilly.servlet.multipart.Part;
50
51 /**
52  * Title:
53  * Description:
54  * Copyright:    Copyright (c) 2001
55  * Company:      Indymedia
56  * @author
57  * @version 1.0
58  */
59
60 public class WebdbMultipartRequest
61 {
62   HttpServletRequest    req=null;
63   Hashtable             parameters = new Hashtable();
64   MultipartParser       mp=null;
65   FileHandler           _fHandler;
66
67   public WebdbMultipartRequest(HttpServletRequest theReq, FileHandler handler)
68     throws FileHandler.FileHandlerExc, FileHandler.FileHandlerFailure, IOException, PropertiesConfigExc
69   {
70     req=theReq;
71     int maxSize;
72     try {
73       maxSize = MirPropertiesConfiguration.instance().getInt("MaxMediaUploadSize");
74     }
75     catch (PropertiesConfigExc e) {
76       maxSize = 1024;
77       throw e;
78     }
79     mp = new MultipartParser(req, 1024*maxSize);
80     _fHandler = handler;
81     _evaluateRequest();
82   }
83
84
85   /**
86    * The following comment and some code was adapted from the Oreilley cos.jar
87    * package. -mh 2001.09.20
88    *
89    * Returns all the parameters as a Map of Strings, any parameter
90    * that sent without a value will be null.  A value
91    * is guaranteed to be in its normal, decoded form.  If A parameter
92    * has multiple values, only the last one is returned (for backward
93    * compatibility).  For parameters with multiple values, it's possible
94    * the last "value" may be null.
95    *
96    * @return A Map of String representations of the  parameter values.
97    */
98   public Map getParameters(){
99     Map pHash = new HashMap();
100     String value = new String();
101
102     Enumeration Keys = parameters.keys();
103     while(Keys.hasMoreElements()) {
104       String KeyNm = (String)Keys.nextElement();
105       Vector values = (Vector)parameters.get(KeyNm);
106
107       if (values == null || values.size() == 0) {
108         value = null;
109       }
110       else {
111         value = (String)values.elementAt(values.size() - 1);
112       }
113
114       pHash.put(KeyNm, value);
115     }
116
117     return pHash;
118   }
119
120   /**
121    * The following code and comment stolen from oreilley cos.jar.
122    * -mh. 2001.09.20
123    *
124    * Returns the values of the named parameter as a String array, or null if
125    * the parameter was not sent.  The array has one entry for each parameter
126    * field sent.  If any field was sent without a value that entry is stored
127    * in the array as a null.  The values are guaranteed to be in their
128    * normal, decoded form.  A single value is returned as a one-element array.
129    *
130    * @param name the parameter name.
131    * @return the parameter values.
132    */
133   public String[] getParameterValues(String name) {
134     try {
135       Vector values = (Vector)parameters.get(name);
136       if (values == null || values.size() == 0) {
137         return null;
138       }
139       String[] valuesArray = new String[values.size()];
140       values.copyInto(valuesArray);
141       return valuesArray;
142     }
143     catch (Exception e) {
144       return null;
145     }
146   }
147
148   private void _evaluateRequest() throws FileHandler.FileHandlerExc,
149       FileHandler.FileHandlerFailure, IOException {
150
151     Part part;
152     int i = 1;
153     while ((part = mp.readNextPart()) != null) {
154       String name = part.getName();
155       if (part.isParam()) {
156         // It's a parameter part, add it to the vector of values
157         ParamPart paramPart = (ParamPart) part;
158         String value = paramPart.getStringValue();
159         Vector existingValues = (Vector)parameters.get(name);
160         if (existingValues == null) {
161           existingValues = new Vector();
162           parameters.put(name, existingValues);
163         }
164         existingValues.addElement(value);
165       }
166       else if (part.isFile()) {
167         // nur das erste uploadfile beruecksichtigen
168         FilePart filePart = (FilePart) part;
169         String fn = filePart.getFileName();
170         if (filePart.getFileName() != null) {
171           if (_fHandler != null)
172             _fHandler.setFile(filePart, i, getParameters());
173           i++;
174         }
175       }
176     } // while */
177   }
178
179 }