OSDN Git Service

BugTrack2/171: The delimiter was put between page name and body.
[pukiwiki/pukiwiki.git] / lib / func.php
1 <?php
2 // PukiWiki - Yet another WikiWikiWeb clone.
3 // $Id: func.php,v 1.61 2006/04/16 01:08:57 teanan Exp $
4 // Copyright (C)
5 //   2002-2006 PukiWiki Developers Team
6 //   2001-2002 Originally written by yu-ji
7 // License: GPL v2 or (at your option) any later version
8 //
9 // General functions
10
11 function is_interwiki($str)
12 {
13         global $InterWikiName;
14         return preg_match('/^' . $InterWikiName . '$/', $str);
15 }
16
17 function is_pagename($str)
18 {
19         global $BracketName;
20
21         $is_pagename = (! is_interwiki($str) &&
22                   preg_match('/^(?!\/)' . $BracketName . '$(?<!\/$)/', $str) &&
23                 ! preg_match('#(^|/)\.{1,2}(/|$)#', $str));
24
25         if (defined('SOURCE_ENCODING')) {
26                 switch(SOURCE_ENCODING){
27                 case 'UTF-8': $pattern =
28                         '/^(?:[\x00-\x7F]|(?:[\xC0-\xDF][\x80-\xBF])|(?:[\xE0-\xEF][\x80-\xBF][\x80-\xBF]))+$/';
29                         break;
30                 case 'EUC-JP': $pattern =
31                         '/^(?:[\x00-\x7F]|(?:[\x8E\xA1-\xFE][\xA1-\xFE])|(?:\x8F[\xA1-\xFE][\xA1-\xFE]))+$/';
32                         break;
33                 }
34                 if (isset($pattern) && $pattern != '')
35                         $is_pagename = ($is_pagename && preg_match($pattern, $str));
36         }
37
38         return $is_pagename;
39 }
40
41 function is_url($str, $only_http = FALSE)
42 {
43         $scheme = $only_http ? 'https?' : 'https?|ftp|news';
44         return preg_match('/^(' . $scheme . ')(:\/\/[-_.!~*\'()a-zA-Z0-9;\/?:\@&=+\$,%#]*)$/', $str);
45 }
46
47 // If the page exists
48 function is_page($page, $clearcache = FALSE)
49 {
50         if ($clearcache) clearstatcache();
51         return file_exists(get_filename($page));
52 }
53
54 function is_editable($page)
55 {
56         global $cantedit;
57         static $is_editable = array();
58
59         if (! isset($is_editable[$page])) {
60                 $is_editable[$page] = (
61                         is_pagename($page) &&
62                         ! is_freeze($page) &&
63                         ! in_array($page, $cantedit)
64                 );
65         }
66
67         return $is_editable[$page];
68 }
69
70 function is_freeze($page, $clearcache = FALSE)
71 {
72         global $function_freeze;
73         static $is_freeze = array();
74
75         if ($clearcache === TRUE) $is_freeze = array();
76         if (isset($is_freeze[$page])) return $is_freeze[$page];
77
78         if (! $function_freeze || ! is_page($page)) {
79                 $is_freeze[$page] = FALSE;
80                 return FALSE;
81         } else {
82                 $fp = fopen(get_filename($page), 'rb') or
83                         die('is_freeze(): fopen() failed: ' . htmlspecialchars($page));
84                 flock($fp, LOCK_SH) or die('is_freeze(): flock() failed');
85                 rewind($fp);
86                 $buffer = fgets($fp, 9);
87                 flock($fp, LOCK_UN) or die('is_freeze(): flock() failed');
88                 fclose($fp) or die('is_freeze(): fclose() failed: ' . htmlspecialchars($page));
89
90                 $is_freeze[$page] = ($buffer != FALSE && rtrim($buffer, "\r\n") == '#freeze');
91                 return $is_freeze[$page];
92         }
93 }
94
95 // Handling $non_list
96 // $non_list will be preg_quote($str, '/') later.
97 function check_non_list($page = '')
98 {
99         global $non_list;
100         static $regex;
101
102         if (! isset($regex)) $regex = '/' . $non_list . '/';
103
104         return preg_match($regex, $page);
105 }
106
107 // Auto template
108 function auto_template($page)
109 {
110         global $auto_template_func, $auto_template_rules;
111
112         if (! $auto_template_func) return '';
113
114         $body = '';
115         $matches = array();
116         foreach ($auto_template_rules as $rule => $template) {
117                 $rule_pattrn = '/' . $rule . '/';
118
119                 if (! preg_match($rule_pattrn, $page, $matches)) continue;
120
121                 $template_page = preg_replace($rule_pattrn, $template, $page);
122                 if (! is_page($template_page)) continue;
123
124                 $body = join('', get_source($template_page));
125
126                 // Remove fixed-heading anchors
127                 $body = preg_replace('/^(\*{1,3}.*)\[#[A-Za-z][\w-]+\](.*)$/m', '$1$2', $body);
128
129                 // Remove '#freeze'
130                 $body = preg_replace('/^#freeze\s*$/m', '', $body);
131
132                 $count = count($matches);
133                 for ($i = 0; $i < $count; $i++)
134                         $body = str_replace('$' . $i, $matches[$i], $body);
135
136                 break;
137         }
138         return $body;
139 }
140
141 // Expand all search-words to regexes and push them into an array
142 function get_search_words($words = array(), $do_escape = FALSE)
143 {
144         static $init, $mb_convert_kana, $pre, $post, $quote = '/';
145
146         if (! isset($init)) {
147                 // function: mb_convert_kana() is for Japanese code only
148                 if (LANG == 'ja' && function_exists('mb_convert_kana')) {
149                         $mb_convert_kana = create_function('$str, $option',
150                                 'return mb_convert_kana($str, $option, SOURCE_ENCODING);');
151                 } else {
152                         $mb_convert_kana = create_function('$str, $option',
153                                 'return $str;');
154                 }
155                 if (SOURCE_ENCODING == 'EUC-JP') {
156                         // Perl memo - Correct pattern-matching with EUC-JP
157                         // http://www.din.or.jp/~ohzaki/perl.htm#JP_Match (Japanese)
158                         $pre  = '(?<!\x8F)';
159                         $post = '(?=(?:[\xA1-\xFE][\xA1-\xFE])*' . // JIS X 0208
160                                 '(?:[\x00-\x7F\x8E\x8F]|\z))';     // ASCII, SS2, SS3, or the last
161                 } else {
162                         $pre = $post = '';
163                 }
164                 $init = TRUE;
165         }
166
167         if (! is_array($words)) $words = array($words);
168
169         // Generate regex for the words
170         $regex = array();
171         foreach ($words as $word) {
172                 $word = trim($word);
173                 if ($word == '') continue;
174
175                 // Normalize: ASCII letters = to single-byte. Others = to Zenkaku and Katakana
176                 $word_nm = $mb_convert_kana($word, 'aKCV');
177                 $nmlen   = mb_strlen($word_nm, SOURCE_ENCODING);
178
179                 // Each chars may be served ...
180                 $chars = array();
181                 for ($pos = 0; $pos < $nmlen; $pos++) {
182                         $char = mb_substr($word_nm, $pos, 1, SOURCE_ENCODING);
183
184                         // Just normalized one? (ASCII char or Zenkaku-Katakana?)
185                         $or = array(preg_quote($do_escape ? htmlspecialchars($char) : $char, $quote));
186                         if (strlen($char) == 1) {
187                                 // An ASCII (single-byte) character
188                                 foreach (array(strtoupper($char), strtolower($char)) as $_char) {
189                                         if ($char != '&') $or[] = preg_quote($_char, $quote); // As-is?
190                                         $ascii = ord($_char);
191                                         $or[] = sprintf('&#(?:%d|x%x);', $ascii, $ascii); // As an entity reference?
192                                         $or[] = preg_quote($mb_convert_kana($_char, 'A'), $quote); // As Zenkaku?
193                                 }
194                         } else {
195                                 // NEVER COME HERE with mb_substr(string, start, length, 'ASCII')
196                                 // A multi-byte character
197                                 $or[] = preg_quote($mb_convert_kana($char, 'c'), $quote); // As Hiragana?
198                                 $or[] = preg_quote($mb_convert_kana($char, 'k'), $quote); // As Hankaku-Katakana?
199                         }
200                         $chars[] = '(?:' . join('|', array_unique($or)) . ')'; // Regex for the character
201                 }
202
203                 $regex[$word] = $pre . join('', $chars) . $post; // For the word
204         }
205
206         return $regex; // For all words
207 }
208
209 // 'Search' main function
210 function do_search($word, $type = 'AND', $non_format = FALSE, $base = '')
211 {
212         global $script, $whatsnew, $search_non_list;
213         global $_msg_andresult, $_msg_orresult, $_msg_notfoundresult;
214         global $search_auth;
215
216         $retval = array();
217
218         $b_type = ($type == 'AND'); // AND:TRUE OR:FALSE
219         $keys = get_search_words(preg_split('/\s+/', $word, -1, PREG_SPLIT_NO_EMPTY));
220
221         $_pages = get_existpages();
222         if ($base != '') {
223                 $_pages = preg_grep('/^' . $base . '/', $_pages);
224         }
225         $pages = array();
226
227         foreach ($_pages as $page) {
228                 if ($page == $whatsnew || (! $search_non_list && check_non_list($page)))
229                         continue;
230
231                 // ¸¡º÷Âоݥڡ¼¥¸¤ÎÀ©¸Â¤ò¤«¤±¤ë¤«¤É¤¦¤« (¥Ú¡¼¥¸Ì¾¤ÏÀ©¸Â³°)
232                 if ($search_auth && ! check_readable($page, false, false)) {
233                         $source = ''; // Empty
234                 } else {
235                         $source = get_source($page, TRUE, TRUE);
236                 }
237                 if (! $non_format)
238                         $source = $page . "\n" . $source; // ¥Ú¡¼¥¸Ì¾¤â¸¡º÷ÂоݤË
239
240                 $b_match = FALSE;
241                 foreach ($keys as $key) {
242                         $b_match = preg_match('/' . $key . '/S', $source);
243                         if ($b_match xor $b_type) break;
244                 }
245                 if ($b_match) $pages[$page] = $non_format ? 0 : get_filetime($page);
246         }
247         if ($non_format) return array_keys($pages);
248
249         $r_word = rawurlencode($word);
250         $s_word = htmlspecialchars($word);
251         if (empty($pages))
252                 return str_replace('$1', $s_word, $_msg_notfoundresult);
253
254         ksort($pages);
255         $retval = '<ul>' . "\n";
256         foreach ($pages as $page=>$time) {
257                 $r_page  = rawurlencode($page);
258                 $s_page  = htmlspecialchars($page);
259                 $passage = get_passage($time);
260                 $retval .= ' <li><a href="' . $script . '?cmd=read&amp;page=' .
261                         $r_page . '&amp;word=' . $r_word . '">' . $s_page .
262                         '</a>' . $passage . '</li>' . "\n";
263         }
264         $retval .= '</ul>' . "\n";
265
266         $retval .= str_replace('$1', $s_word, str_replace('$2', count($pages),
267                 str_replace('$3', count($_pages), $b_type ? $_msg_andresult : $_msg_orresult)));
268
269         return $retval;
270 }
271
272 // Argument check for program
273 function arg_check($str)
274 {
275         global $vars;
276         return isset($vars['cmd']) && (strpos($vars['cmd'], $str) === 0);
277 }
278
279 // Encode page-name
280 function encode($key)
281 {
282         return ($key == '') ? '' : strtoupper(bin2hex($key));
283         // Equal to strtoupper(join('', unpack('H*0', $key)));
284         // But PHP 4.3.10 says 'Warning: unpack(): Type H: outside of string in ...'
285 }
286
287 // Decode page name
288 function decode($key)
289 {
290         return hex2bin($key);
291 }
292
293 // Inversion of bin2hex()
294 function hex2bin($hex_string)
295 {
296         // preg_match : Avoid warning : pack(): Type H: illegal hex digit ...
297         // (string)   : Always treat as string (not int etc). See BugTrack2/31
298         return preg_match('/^[0-9a-f]+$/i', $hex_string) ?
299                 pack('H*', (string)$hex_string) : $hex_string;
300 }
301
302 // Remove [[ ]] (brackets)
303 function strip_bracket($str)
304 {
305         $match = array();
306         if (preg_match('/^\[\[(.*)\]\]$/', $str, $match)) {
307                 return $match[1];
308         } else {
309                 return $str;
310         }
311 }
312
313 // Create list of pages
314 function page_list($pages, $cmd = 'read', $withfilename = FALSE)
315 {
316         global $script, $list_index;
317         global $_msg_symbol, $_msg_other;
318         global $pagereading_enable;
319
320         // ¥½¡¼¥È¥­¡¼¤ò·èÄꤹ¤ë¡£ ' ' < '[a-zA-Z]' < 'zz'¤È¤¤¤¦Á°Äó¡£
321         $symbol = ' ';
322         $other = 'zz';
323
324         $retval = '';
325
326         if($pagereading_enable) {
327                 mb_regex_encoding(SOURCE_ENCODING);
328                 $readings = get_readings($pages);
329         }
330
331         $list = $matches = array();
332
333         // Shrink URI for read
334         if ($cmd == 'read') {
335                 $href = $script . '?';
336         } else {
337                 $href = $script . '?cmd=' . $cmd . '&amp;page=';
338         }
339
340         foreach($pages as $file=>$page) {
341                 $r_page  = rawurlencode($page);
342                 $s_page  = htmlspecialchars($page, ENT_QUOTES);
343                 $passage = get_pg_passage($page);
344
345                 $str = '   <li><a href="' . $href . $r_page . '">' .
346                         $s_page . '</a>' . $passage;
347
348                 if ($withfilename) {
349                         $s_file = htmlspecialchars($file);
350                         $str .= "\n" . '    <ul><li>' . $s_file . '</li></ul>' .
351                                 "\n" . '   ';
352                 }
353                 $str .= '</li>';
354
355                 // WARNING: Japanese code hard-wired
356                 if($pagereading_enable) {
357                         if(mb_ereg('^([A-Za-z])', mb_convert_kana($page, 'a'), $matches)) {
358                                 $head = $matches[1];
359                         } elseif (isset($readings[$page]) && mb_ereg('^([¥¡-¥ö])', $readings[$page], $matches)) { // here
360                                 $head = $matches[1];
361                         } elseif (mb_ereg('^[ -~]|[^¤¡-¤ó°¡-ô¦]', $page)) { // and here
362                                 $head = $symbol;
363                         } else {
364                                 $head = $other;
365                         }
366                 } else {
367                         $head = (preg_match('/^([A-Za-z])/', $page, $matches)) ? $matches[1] :
368                                 (preg_match('/^([ -~])/', $page, $matches) ? $symbol : $other);
369                 }
370
371                 $list[$head][$page] = $str;
372         }
373         ksort($list);
374
375         $cnt = 0;
376         $arr_index = array();
377         $retval .= '<ul>' . "\n";
378         foreach ($list as $head=>$pages) {
379                 if ($head === $symbol) {
380                         $head = $_msg_symbol;
381                 } else if ($head === $other) {
382                         $head = $_msg_other;
383                 }
384
385                 if ($list_index) {
386                         ++$cnt;
387                         $arr_index[] = '<a id="top_' . $cnt .
388                                 '" href="#head_' . $cnt . '"><strong>' .
389                                 $head . '</strong></a>';
390                         $retval .= ' <li><a id="head_' . $cnt . '" href="#top_' . $cnt .
391                                 '"><strong>' . $head . '</strong></a>' . "\n" .
392                                 '  <ul>' . "\n";
393                 }
394                 ksort($pages);
395                 $retval .= join("\n", $pages);
396                 if ($list_index)
397                         $retval .= "\n  </ul>\n </li>\n";
398         }
399         $retval .= '</ul>' . "\n";
400         if ($list_index && $cnt > 0) {
401                 $top = array();
402                 while (! empty($arr_index))
403                         $top[] = join(' | ' . "\n", array_splice($arr_index, 0, 16)) . "\n";
404
405                 $retval = '<div id="top" style="text-align:center">' . "\n" .
406                         join('<br />', $top) . '</div>' . "\n" . $retval;
407         }
408         return $retval;
409 }
410
411 // Show text formatting rules
412 function catrule()
413 {
414         global $rule_page;
415
416         if (! is_page($rule_page)) {
417                 return '<p>Sorry, page \'' . htmlspecialchars($rule_page) .
418                         '\' unavailable.</p>';
419         } else {
420                 return convert_html(get_source($rule_page));
421         }
422 }
423
424 // Show (critical) error message
425 function die_message($msg)
426 {
427         $title = $page = 'Runtime error';
428         $body = <<<EOD
429 <h3>Runtime error</h3>
430 <strong>Error message : $msg</strong>
431 EOD;
432
433         pkwk_common_headers();
434         if(defined('SKIN_FILE') && file_exists(SKIN_FILE) && is_readable(SKIN_FILE)) {
435                 catbody($title, $page, $body);
436         } else {
437                 header('Content-Type: text/html; charset=euc-jp');
438                 print <<<EOD
439 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
440 <html>
441  <head>
442   <title>$title</title>
443   <meta http-equiv="content-type" content="text/html; charset=euc-jp">
444  </head>
445  <body>
446  $body
447  </body>
448 </html>
449 EOD;
450         }
451         exit;
452 }
453
454 // Have the time (as microtime)
455 function getmicrotime()
456 {
457         list($usec, $sec) = explode(' ', microtime());
458         return ((float)$sec + (float)$usec);
459 }
460
461 // Get the date
462 function get_date($format, $timestamp = NULL)
463 {
464         $format = preg_replace('/(?<!\\\)T/',
465                 preg_replace('/(.)/', '\\\$1', ZONE), $format);
466
467         $time = ZONETIME + (($timestamp !== NULL) ? $timestamp : UTIME);
468
469         return date($format, $time);
470 }
471
472 // Format date string
473 function format_date($val, $paren = FALSE)
474 {
475         global $date_format, $time_format, $weeklabels;
476
477         $val += ZONETIME;
478
479         $date = date($date_format, $val) .
480                 ' (' . $weeklabels[date('w', $val)] . ') ' .
481                 date($time_format, $val);
482
483         return $paren ? '(' . $date . ')' : $date;
484 }
485
486 // Get short string of the passage, 'N seconds/minutes/hours/days/years ago'
487 function get_passage($time, $paren = TRUE)
488 {
489         static $units = array('m'=>60, 'h'=>24, 'd'=>1);
490
491         $time = max(0, (UTIME - $time) / 60); // minutes
492
493         foreach ($units as $unit=>$card) {
494                 if ($time < $card) break;
495                 $time /= $card;
496         }
497         $time = floor($time) . $unit;
498
499         return $paren ? '(' . $time . ')' : $time;
500 }
501
502 // Hide <input type="(submit|button|image)"...>
503 function drop_submit($str)
504 {
505         return preg_replace('/<input([^>]+)type="(submit|button|image)"/i',
506                 '<input$1type="hidden"', $str);
507 }
508
509 // Generate AutoLink patterns (thx to hirofummy)
510 function get_autolink_pattern(& $pages)
511 {
512         global $WikiName, $autolink, $nowikiname;
513
514         $config = &new Config('AutoLink');
515         $config->read();
516         $ignorepages      = $config->get('IgnoreList');
517         $forceignorepages = $config->get('ForceIgnoreList');
518         unset($config);
519         $auto_pages = array_merge($ignorepages, $forceignorepages);
520
521         foreach ($pages as $page)
522                 if (preg_match('/^' . $WikiName . '$/', $page) ?
523                     $nowikiname : strlen($page) >= $autolink)
524                         $auto_pages[] = $page;
525
526         if (empty($auto_pages)) {
527                 $result = $result_a = $nowikiname ? '(?!)' : $WikiName;
528         } else {
529                 $auto_pages = array_unique($auto_pages);
530                 sort($auto_pages, SORT_STRING);
531
532                 $auto_pages_a = array_values(preg_grep('/^[A-Z]+$/i', $auto_pages));
533                 $auto_pages   = array_values(array_diff($auto_pages,  $auto_pages_a));
534
535                 $result   = get_autolink_pattern_sub($auto_pages,   0, count($auto_pages),   0);
536                 $result_a = get_autolink_pattern_sub($auto_pages_a, 0, count($auto_pages_a), 0);
537         }
538         return array($result, $result_a, $forceignorepages);
539 }
540
541 function get_autolink_pattern_sub(& $pages, $start, $end, $pos)
542 {
543         if ($end == 0) return '(?!)';
544
545         $result = '';
546         $count = $i = $j = 0;
547         $x = (mb_strlen($pages[$start]) <= $pos);
548         if ($x) ++$start;
549
550         for ($i = $start; $i < $end; $i = $j) {
551                 $char = mb_substr($pages[$i], $pos, 1);
552                 for ($j = $i; $j < $end; $j++)
553                         if (mb_substr($pages[$j], $pos, 1) != $char) break;
554
555                 if ($i != $start) $result .= '|';
556                 if ($i >= ($j - 1)) {
557                         $result .= str_replace(' ', '\\ ', preg_quote(mb_substr($pages[$i], $pos), '/'));
558                 } else {
559                         $result .= str_replace(' ', '\\ ', preg_quote($char, '/')) .
560                                 get_autolink_pattern_sub($pages, $i, $j, $pos + 1);
561                 }
562                 ++$count;
563         }
564         if ($x || $count > 1) $result = '(?:' . $result . ')';
565         if ($x)               $result .= '?';
566
567         return $result;
568 }
569
570 // Get absolute-URI of this script
571 function get_script_uri($init_uri = '')
572 {
573         global $script_directory_index;
574         static $script;
575
576         if ($init_uri == '') {
577                 // Get
578                 if (isset($script)) return $script;
579
580                 // Set automatically
581                 $msg     = 'get_script_uri() failed: Please set $script at INI_FILE manually';
582
583                 $script  = (SERVER_PORT == 443 ? 'https://' : 'http://'); // scheme
584                 $script .= SERVER_NAME; // host
585                 $script .= (SERVER_PORT == 80 ? '' : ':' . SERVER_PORT);  // port
586
587                 // SCRIPT_NAME ¤¬'/'¤Ç»Ï¤Þ¤Ã¤Æ¤¤¤Ê¤¤¾ì¹ç(cgi¤Ê¤É) REQUEST_URI¤ò»È¤Ã¤Æ¤ß¤ë
588                 $path    = SCRIPT_NAME;
589                 if ($path{0} != '/') {
590                         if (! isset($_SERVER['REQUEST_URI']) || $_SERVER['REQUEST_URI']{0} != '/')
591                                 die_message($msg);
592
593                         // REQUEST_URI¤ò¥Ñ¡¼¥¹¤·¡¢pathÉôʬ¤À¤±¤ò¼è¤ê½Ð¤¹
594                         $parse_url = parse_url($script . $_SERVER['REQUEST_URI']);
595                         if (! isset($parse_url['path']) || $parse_url['path']{0} != '/')
596                                 die_message($msg);
597
598                         $path = $parse_url['path'];
599                 }
600                 $script .= $path;
601
602                 if (! is_url($script, TRUE) && php_sapi_name() == 'cgi')
603                         die_message($msg);
604                 unset($msg);
605
606         } else {
607                 // Set manually
608                 if (isset($script)) die_message('$script: Already init');
609                 if (! is_url($init_uri, TRUE)) die_message('$script: Invalid URI');
610                 $script = $init_uri;
611         }
612
613         // Cut filename or not
614         if (isset($script_directory_index)) {
615                 if (! file_exists($script_directory_index))
616                         die_message('Directory index file not found: ' .
617                                 htmlspecialchars($script_directory_index));
618                 $matches = array();
619                 if (preg_match('#^(.+/)' . preg_quote($script_directory_index, '#') . '$#',
620                         $script, $matches)) $script = $matches[1];
621         }
622
623         return $script;
624 }
625
626 // Remove null(\0) bytes from variables
627 //
628 // NOTE: PHP had vulnerabilities that opens "hoge.php" via fopen("hoge.php\0.txt") etc.
629 // [PHP-users 12736] null byte attack
630 // http://ns1.php.gr.jp/pipermail/php-users/2003-January/012742.html
631 //
632 // 2003-05-16: magic quotes gpc¤ÎÉü¸µ½èÍý¤òÅý¹ç
633 // 2003-05-21: Ï¢ÁÛÇÛÎó¤Î¥­¡¼¤Ïbinary safe
634 //
635 function input_filter($param)
636 {
637         static $magic_quotes_gpc = NULL;
638         if ($magic_quotes_gpc === NULL)
639             $magic_quotes_gpc = get_magic_quotes_gpc();
640
641         if (is_array($param)) {
642                 return array_map('input_filter', $param);
643         } else {
644                 $result = str_replace("\0", '', $param);
645                 if ($magic_quotes_gpc) $result = stripslashes($result);
646                 return $result;
647         }
648 }
649
650 // Compat for 3rd party plugins. Remove this later
651 function sanitize($param) {
652         return input_filter($param);
653 }
654
655 // Explode Comma-Separated Values to an array
656 function csv_explode($separator, $string)
657 {
658         $retval = $matches = array();
659
660         $_separator = preg_quote($separator, '/');
661         if (! preg_match_all('/("[^"]*(?:""[^"]*)*"|[^' . $_separator . ']*)' .
662             $_separator . '/', $string . $separator, $matches))
663                 return array();
664
665         foreach ($matches[1] as $str) {
666                 $len = strlen($str);
667                 if ($len > 1 && $str{0} == '"' && $str{$len - 1} == '"')
668                         $str = str_replace('""', '"', substr($str, 1, -1));
669                 $retval[] = $str;
670         }
671         return $retval;
672 }
673
674 // Implode an array with CSV data format (escape double quotes)
675 function csv_implode($glue, $pieces)
676 {
677         $_glue = ($glue != '') ? '\\' . $glue{0} : '';
678         $arr = array();
679         foreach ($pieces as $str) {
680                 if (ereg('[' . $_glue . '"' . "\n\r" . ']', $str))
681                         $str = '"' . str_replace('"', '""', $str) . '"';
682                 $arr[] = $str;
683         }
684         return join($glue, $arr);
685 }
686
687 //// Compat ////
688
689 // is_a --  Returns TRUE if the object is of this class or has this class as one of its parents
690 // (PHP 4 >= 4.2.0)
691 if (! function_exists('is_a')) {
692
693         function is_a($class, $match)
694         {
695                 if (empty($class)) return FALSE; 
696
697                 $class = is_object($class) ? get_class($class) : $class;
698                 if (strtolower($class) == strtolower($match)) {
699                         return TRUE;
700                 } else {
701                         return is_a(get_parent_class($class), $match);  // Recurse
702                 }
703         }
704 }
705
706 // array_fill -- Fill an array with values
707 // (PHP 4 >= 4.2.0)
708 if (! function_exists('array_fill')) {
709
710         function array_fill($start_index, $num, $value)
711         {
712                 $ret = array();
713                 while ($num-- > 0) $ret[$start_index++] = $value;
714                 return $ret;
715         }
716 }
717
718 // md5_file -- Calculates the md5 hash of a given filename
719 // (PHP 4 >= 4.2.0)
720 if (! function_exists('md5_file')) {
721
722         function md5_file($filename)
723         {
724                 if (! file_exists($filename)) return FALSE;
725
726                 $fd = fopen($filename, 'rb');
727                 if ($fd === FALSE ) return FALSE;
728                 $data = fread($fd, filesize($filename));
729                 fclose($fd);
730                 return md5($data);
731         }
732 }
733
734 // sha1 -- Compute SHA-1 hash
735 // (PHP 4 >= 4.3.0, PHP5)
736 if (! function_exists('sha1')) {
737         if (extension_loaded('mhash')) {
738                 function sha1($str)
739                 {
740                         return bin2hex(mhash(MHASH_SHA1, $str));
741                 }
742         } else {
743                 function sha1($str, $raw_output = FALSE)
744                 {
745                         die('Function sha1() not found and extension \'mhash\' not exists');
746                 }
747         }
748 }
749 ?>