]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/Request.php
Fixed IE problem
[SourceForge/phpwiki.git] / lib / Request.php
1 <?php rcs_id('$Id: Request.php,v 1.13 2002-02-08 08:01:32 lakka Exp $');
2
3 // FIXME: write log entry.
4
5 class Request {
6         
7     function Request() {
8         $this->_fix_magic_quotes_gpc();
9         $this->_fix_multipart_form_data();
10         
11         switch($this->get('REQUEST_METHOD')) {
12         case 'GET':
13         case 'HEAD':
14             $this->args = &$GLOBALS['HTTP_GET_VARS'];
15             break;
16         case 'POST':
17             $this->args = &$GLOBALS['HTTP_POST_VARS'];
18             break;
19         default:
20             $this->args = array();
21             break;
22         }
23         
24         $this->session = new Request_SessionVars;
25         $this->cookies = new Request_CookieVars;
26         
27         if (ACCESS_LOG)
28             $this->_log_entry = & new Request_AccessLogEntry($this,
29                                                              ACCESS_LOG);
30         
31         $TheRequest = $this;
32     }
33
34     function get($key) {
35         $vars = &$GLOBALS['HTTP_SERVER_VARS'];
36
37         if (isset($vars[$key]))
38             return $vars[$key];
39
40         switch ($key) {
41         case 'REMOTE_HOST':
42             $addr = $vars['REMOTE_ADDR'];
43             if (defined('ENABLE_REVERSE_DNS') && ENABLE_REVERSE_DNS)
44                 return $vars[$key] = gethostbyaddr($addr);
45             else
46                 return $addr;
47         default:
48             return false;
49         }
50     }
51
52     function getArg($key) {
53         if (isset($this->args[$key]))
54             return $this->args[$key];
55         return false;
56     }
57
58     function getArgs () {
59         return $this->args;
60     }
61     
62     function setArg($key, $val) {
63         if ($val === false)
64             unset($this->args[$key]);
65         else
66             $this->args[$key] = $val;
67     }
68     
69
70     function getURLtoSelf($args = false) {
71         $get_args = $this->args;
72         if ($args)
73             $get_args = array_merge($get_args, $args);
74
75         $pagename = $get_args['pagename'];
76         unset ($get_args['pagename']);
77         if ($get_args['action'] == 'browse')
78             unset($get_args['action']);
79
80         return WikiURL($pagename, $get_args);
81     }
82     
83
84     function isPost () {
85         return $this->get("REQUEST_METHOD") == "POST";
86     }
87     
88     function redirect($url) {
89         header("Location: $url");
90         if (isset($this->_log_entry))
91             $this->_log_entry->setStatus(302);
92     }
93
94     function setStatus($status) {
95         if (preg_match('|^HTTP/.*?\s(\d+)|i', $status, $m)) {
96             header($status);
97             $status = $m[1];
98         }
99         else {
100             $status = (integer) $status;
101             $reasons = array('200' => 'OK',
102                              '302' => 'Found',
103                              '400' => 'Bad Request',
104                              '401' => 'Unauthorized',
105                              '403' => 'Forbidden',
106                              '404' => 'Not Found');
107             header(sprintf("HTTP/1.0 %d %s", $status, $reason[$status]));
108         }
109
110         if (isset($this->_log_entry))
111             $this->_log_entry->setStatus($status);
112     }
113
114     function compress_output() {
115         if (function_exists('ob_gzhandler')) {
116             ob_start('ob_gzhandler');
117             $this->_is_compressing_output = true;
118         }
119     }
120
121     function finish() {
122         if (!empty($this->_is_compressing_output))
123             ob_end_flush();
124     }
125     
126
127     function getSessionVar($key) {
128         return $this->session->get($key);
129     }
130     function setSessionVar($key, $val) {
131         return $this->session->set($key, $val);
132     }
133     function deleteSessionVar($key) {
134         return $this->session->delete($key);
135     }
136
137     function getCookieVar($key) {
138         return $this->cookies->get($key);
139     }
140     function setCookieVar($key, $val, $lifetime_in_days = false) {
141         return $this->cookies->set($key, $val, $lifetime_in_days);
142     }
143     function deleteCookieVar($key) {
144         return $this->cookies->delete($key);
145     }
146     
147     function getUploadedFile($key) {
148         return Request_UploadedFile::getUploadedFile($key);
149     }
150     
151
152     function _fix_magic_quotes_gpc() {
153         $needs_fix = array('HTTP_POST_VARS',
154                            'HTTP_GET_VARS',
155                            'HTTP_COOKIE_VARS',
156                            'HTTP_SERVER_VARS',
157                            'HTTP_POST_FILES');
158         
159         // Fix magic quotes.
160         if (get_magic_quotes_gpc()) {
161             foreach ($needs_fix as $vars)
162                 $this->_stripslashes($GLOBALS[$vars]);
163         }
164     }
165
166
167     function _stripslashes(&$var) {
168         if (is_array($var)) {
169             foreach ($var as $key => $val)
170                 $this->_stripslashes($var[$key]);
171         }
172         elseif (is_string($var))
173             $var = stripslashes($var);
174     }
175     
176     function _fix_multipart_form_data () {
177         if (preg_match('|^multipart/form-data|', $this->get('CONTENT_TYPE')))
178             $this->_strip_leading_nl($GLOBALS['HTTP_POST_VARS']);
179     }
180     
181     function _strip_leading_nl(&$var) {
182         if (is_array($var)) {
183             foreach ($var as $key => $val)
184                 $this->_strip_leading_nl($var[$key]);
185         }
186         elseif (is_string($var))
187             $var = preg_replace('|^\r?\n?|', '', $var);
188     }
189 }
190
191 class Request_SessionVars {
192     function Request_SessionVars() {
193         // Prevent cacheing problems with IE 5
194         session_cache_limiter('none');
195                                         
196         session_start();
197     }
198     
199     function get($key) {
200         $vars = &$GLOBALS['HTTP_SESSION_VARS'];
201         if (isset($vars[$key]))
202             return $vars[$key];
203         return false;
204     }
205     
206     function set($key, $val) {
207         $vars = &$GLOBALS['HTTP_SESSION_VARS'];
208         if (ini_get('register_globals')) {
209             // This is funky but necessary, at least in some PHP's
210             $GLOBALS[$key] = $val;
211         }
212         $vars[$key] = $val;
213         session_register($key);
214     }
215     
216     function delete($key) {
217         $vars = &$GLOBALS['HTTP_SESSION_VARS'];
218         if (ini_get('register_globals'))
219             unset($GLOBALS[$key]);
220         unset($vars[$key]);
221         session_unregister($key);
222     }
223 }
224
225 class Request_CookieVars {
226     
227     function get($key) {
228         $vars = &$GLOBALS['HTTP_COOKIE_VARS'];
229         if (isset($vars[$key])) {
230             @$val = unserialize($vars[$key]);
231             if (!empty($val))
232                 return $val;
233         }
234         return false;
235     }
236         
237     function set($key, $val, $persist_days = false) {
238         $vars = &$GLOBALS['HTTP_COOKIE_VARS'];
239         
240         if (is_numeric($persist_days)) {
241             $expires = time() + (24 * 3600) * $persist_days;
242         }
243         else {
244             $expires = 0;
245         }
246         
247         $packedval = serialize($val);
248         $vars[$key] = $packedval;
249         setcookie($key, $packedval, $expires, '/');
250     }
251     
252     function delete($key) {
253         $vars = &$GLOBALS['HTTP_COOKIE_VARS'];
254         setcookie($key);
255         unset($vars[$key]);
256     }
257 }
258
259 class Request_UploadedFile {
260     function getUploadedFile($postname) {
261         global $HTTP_POST_FILES;
262         
263         if (!isset($HTTP_POST_FILES[$postname]))
264             return false;
265         
266         $fileinfo = &$HTTP_POST_FILES[$postname];
267         if (!is_uploaded_file($fileinfo['tmp_name']))
268             return false;       // possible malicious attack.
269
270         return new Request_UploadedFile($fileinfo);
271     }
272     
273     function Request_UploadedFile($fileinfo) {
274         $this->_info = $fileinfo;
275     }
276
277     function getSize() {
278         return $this->_info['size'];
279     }
280
281     function getName() {
282         return $this->_info['name'];
283     }
284
285     function getType() {
286         return $this->_info['type'];
287     }
288
289     function open() {
290         if ( ($fd = fopen($this->_info['tmp_name'], "rb")) ) {
291             if ($this->getSize() < filesize($this->_info['tmp_name'])) {
292                 // FIXME: Some PHP's (or is it some browsers?) put
293                 //    HTTP/MIME headers in the file body, some don't.
294                 //
295                 // At least, I think that's the case.  I know I used
296                 // to need this code, now I don't.
297                 //
298                 // This code is more-or-less untested currently.
299                 //
300                 // Dump HTTP headers.
301                 while ( ($header = fgets($fd, 4096)) ) {
302                     if (trim($header) == '') {
303                         break;
304                     }
305                     else if (!preg_match('/^content-(length|type):/i', $header)) {
306                         rewind($fd);
307                         break;
308                     }
309                 }
310             }
311         }
312         return $fd;
313     }
314
315     function getContents() {
316         $fd = $this->open();
317         $data = fread($fd, $this->getSize());
318         fclose($fd);
319         return $data;
320     }
321 }
322
323 /**
324  * Create NCSA "combined" log entry for current request.
325  */
326 class Request_AccessLogEntry
327 {
328     /**
329      * Constructor.
330      *
331      * The log entry will be automatically appended to the log file
332      * when the current request terminates.
333      *
334      * If you want to modify a Request_AccessLogEntry before it gets
335      * written (e.g. via the setStatus and setSize methods) you should
336      * use an '&' on the constructor, so that you're working with the
337      * original (rather than a copy) object.
338      *
339      * <pre>
340      *    $log_entry = & new Request_AccessLogEntry($req, "/tmp/wiki_access_log");
341      *    $log_entry->setStatus(401);
342      * </pre>
343      *
344      *
345      * @param $request object  Request object for current request.
346      * @param $logfile string  Log file name.
347      */
348     function Request_AccessLogEntry (&$request, $logfile) {
349         $this->logfile = $logfile;
350         
351         $this->host  = $request->get('REMOTE_HOST');
352         $this->ident = $request->get('REMOTE_IDENT');
353         if (!$this->ident)
354             $this->ident = '-';
355         $this->user = '-';        // FIXME: get logged-in user name
356         $this->time = time();
357         $this->request = join(' ', array($request->get('REQUEST_METHOD'),
358                                          $request->get('REQUEST_URI'),
359                                          $request->get('SERVER_PROTOCOL')));
360         $this->status = 200;
361         $this->size = 0;
362         $this->referer = (string) $request->get('HTTP_REFERER');
363         $this->user_agent = (string) $request->get('HTTP_USER_AGENT');
364
365         global $Request_AccessLogEntry_entries;
366         if (!isset($Request_AccessLogEntry_entries)) {
367             register_shutdown_function("Request_AccessLogEntry_shutdown_function");
368         }
369         $Request_AccessLogEntry_entries[] = &$this;
370     }
371
372     /**
373      * Set result status code.
374      *
375      * @param $status integer  HTTP status code.
376      */
377     function setStatus ($status) {
378         $this->status = $status;
379     }
380     
381     /**
382      * Set response size.
383      *
384      * @param $size integer
385      */
386     function setSize ($size) {
387         $this->size = $size;
388     }
389     
390     /**
391      * Get time zone offset.
392      *
393      * This is a static member function.
394      *
395      * @param $time integer Unix timestamp (defaults to current time).
396      * @return string Zone offset, e.g. "-0800" for PST.
397      */
398     function _zone_offset ($time = false) {
399         if (!$time)
400             $time = time();
401         $offset = date("Z", $time);
402         if ($offset < 0) {
403             $negoffset = "-";
404             $offset = -$offset;
405         }
406         $offhours = floor($offset / 3600);
407         $offmins  = $offset / 60 - $offhours * 60;
408         return sprintf("%s%02d%02d", $negoffset, $offhours, $offmins);
409     }
410
411     /**
412      * Format time in NCSA format.
413      *
414      * This is a static member function.
415      *
416      * @param $time integer Unix timestamp (defaults to current time).
417      * @return string Formatted date & time.
418      */
419     function _ncsa_time($time = false) {
420         if (!$time)
421             $time = time();
422
423         return date("d/M/Y:H:i:s", $time) .
424             " " . $this->_zone_offset();
425     }
426
427     /**
428      * Write entry to log file.
429      */
430     function write() {
431         $entry = sprintf('%s %s %s [%s] "%s" %d %d "%s" "%s"',
432                          $this->host, $this->ident, $this->user,
433                          $this->_ncsa_time($this->time),
434                          $this->request, $this->status, $this->size,
435                          $this->referer, $this->user_agent);
436
437         //Error log doesn't provide locking.
438         //error_log("$entry\n", 3, $this->logfile);
439
440         // Alternate method 
441         if (($fp = fopen($this->logfile, "a"))) {
442             flock($fp, LOCK_EX);
443             fputs($fp, "$entry\n");
444             fclose($fp);
445         }
446     }
447 }
448
449 /**
450  * Shutdown callback.
451  *
452  * @access private
453  * @see Request_AccessLogEntry
454  */
455 function Request_AccessLogEntry_shutdown_function ()
456 {
457     global $Request_AccessLogEntry_entries;
458     
459     foreach ($Request_AccessLogEntry_entries as $entry) {
460         $entry->write();
461     }
462     unset($Request_AccessLogEntry_entries);
463 }
464
465 // Local Variables:
466 // mode: php
467 // tab-width: 8
468 // c-basic-offset: 4
469 // c-hanging-comment-ender-p: nil
470 // indent-tabs-mode: nil
471 // End:   
472 ?>