source: trunk/lib/Utilities.inc.php @ 204

Last change on this file since 204 was 202, checked in by scdev, 18 years ago

Q - updated usage of $nav.

File size: 30.3 KB
Line 
1<?php
2/**
3 * Utilities.inc.php
4 * Code by Strangecode :: www.strangecode.com :: This document contains copyrighted information
5 */
6
7
8/**
9 * Print variable dump.
10 *
11 * @param  mixed $var      Variable to dump.
12 * @param  bool  $display   Hide the dump in HTML comments?
13 * @param  bool  $var_dump Use var_dump instead of print_r.
14 */
15function dump($var, $display=false, $var_dump=false)
16{
17    echo $display ? "\n<br /><pre>\n" : "\n\n\n<!--\n";
18    if ($var_dump) {
19        var_dump($var);
20    } else {
21        print_r($var);
22    }
23    echo $display ?  "\n</pre><br />\n" : "\n-->\n\n\n";
24}
25
26/**
27 * Return dump as variable.
28 *
29 * @param  mixed $var      Variable to dump.
30 * @return string Dump of var.
31 */
32function getDump($var)
33{
34    ob_start();
35    print_r($var);
36    $d = ob_get_contents();
37    ob_end_clean();
38    return $d;
39}
40
41/**
42 * Return dump as cleaned text. Useful for dumping data into emails.
43 *
44 * @param  mixed $var      Variable to dump.
45 * @return string Dump of var.
46 */
47function fancyDump($var, $indent='')
48{
49    $output = '';
50    if (is_array($var)) {
51        foreach ($var as $k=>$v) {
52            $k = ucfirst(strtolower(str_replace(array('_', '  '), ' ', $k)));
53            if (is_array($v)) {
54                $output .= sprintf("\n%s%s: %s\n", $indent, $k, fancyDump($v, $indent . $indent));
55            } else {
56                $output .= sprintf("%s%s: %s\n", $indent, $k, $v);
57            }
58        }
59    } else {
60        $output .= sprintf("%s%s\n", $indent, $var);
61    }
62    return $output;
63}
64
65/**
66 * Returns text with appropriate html translations.
67 *
68 * @param  string $txt              Text to clean.
69 * @param  bool   $preserve_html    If set to true, oTxt will not translage <, >, ", or '
70 *                                  characters into HTML entities. This allows HTML to pass
71 *                                  through unmunged.
72 * @return string                   Cleaned text.
73 */
74function oTxt($txt, $preserve_html=false)
75{
76    $app =& App::getInstance();
77
78    $search = array();
79    $replace = array();
80
81    // Make converted ampersand entities into normal ampersands (they will be done manually later) to retain HTML entities.
82    $search['retain_ampersand']     = '/&amp;/';
83    $replace['retain_ampersand']    = '&';
84
85    if ($preserve_html) {
86        // Convert characters that must remain non-entities for displaying HTML.
87        $search['retain_left_angle']       = '/&lt;/';
88        $replace['retain_left_angle']      = '<';
89
90        $search['retain_right_angle']      = '/&gt;/';
91        $replace['retain_right_angle']     = '>';
92
93        $search['retain_single_quote']     = '/&#039;/';
94        $replace['retain_single_quote']    = "'";
95
96        $search['retain_double_quote']     = '/&quot;/';
97        $replace['retain_double_quote']    = '"';
98    }
99
100    // & becomes &amp;. Exclude any occurance where the & is followed by a alphanum or unicode caracter.
101    $search['ampersand']        = '/&(?![\w\d#]{1,10};)/';
102    $replace['ampersand']       = '&amp;';
103
104    return preg_replace($search, $replace, htmlentities($txt, ENT_QUOTES, $app->getParam('character_set')));
105}
106
107/**
108 * Returns text with stylistic modifications. Warning: this will break some HTML attibutes!
109 * TODO: Allow a string such as this to be passted: <a href="javascript:openPopup('/foo/bar.php')">Click here</a>
110 *
111 * @param  string   $txt  Text to clean.
112 * @return string         Cleaned text.
113 */
114function fancyTxt($txt)
115{
116    $search = array();
117    $replace = array();
118
119    // "double quoted text"  becomes  &ldquo;double quoted text&rdquo;
120    $search['double_quotes']    = '/(^|[^\w=])(?:"|&quot;|&#34;|&#x22;|&ldquo;)([^"]+?)(?:"|&quot;|&#34;|&#x22;|&rdquo;)([^\w]|$)/ms'; // " is the same as &quot; and &#34; and &#x22;
121    $replace['double_quotes']   = '$1&ldquo;$2&rdquo;$3';
122
123    // text's apostrophes  become  text&rsquo;s apostrophes
124    $search['apostrophe']       = '/(\w)(?:\'|&#39;|&#039;)(\w)/ms';
125    $replace['apostrophe']      = '$1&rsquo;$2';
126
127    // 'single quoted text'  becomes  &lsquo;single quoted text&rsquo;
128    $search['single_quotes']    = '/(^|[^\w=])(?:\'|&#39;|&lsquo;)([^\']+?)(?:\'|&#39;|&rsquo;)([^\w]|$)/ms';
129    $replace['single_quotes']   = '$1&lsquo;$2&rsquo;$3';
130
131    // plural posessives' apostrophes become posessives&rsquo;
132    $search['apostrophes']      = '/(s)(?:\'|&#39;|&#039;)(\s)/ms';
133    $replace['apostrophes']     = '$1&rsquo;$2';
134
135    // em--dashes  become em&mdash;dashes
136    $search['em_dash']          = '/(\s*[^!<-])--([^>-]\s*)/';
137    $replace['em_dash']         = '$1&mdash;$2';
138
139    return preg_replace($search, $replace, $txt);
140}
141
142
143/**
144 * Generates a hexadecibal html color based on provided word.
145 *
146 * @access public
147 * @param  string $text  A string for which to convert to color.
148 * @return string  A hexadecimal html color.
149 */
150function getTextColor($text, $method=1)
151{
152    $r = substr(md5($text), 0, 1);
153    $g = substr(md5($text), 1, 1);
154    $b = substr(md5($text), 2, 1);
155
156    switch ($method) {
157    case 2 :
158        if (hexdec($r) > hexdec('c')) {
159            $r = dechex(hexdec('f') - hexdec($r));
160        }
161        if (hexdec($g) > hexdec('c')) {
162            $g = dechex(hexdec('f') - hexdec($g));
163        }
164        if (hexdec($b) > hexdec('c')) {
165            $b = dechex(hexdec('f') - hexdec($b));
166        }
167        break;
168
169    case 1 :
170    default :
171        $r = dechex(round(hexdec($r) * .8));
172        $g = dechex(round(hexdec($g) * .8));
173        $b = dechex(round(hexdec($b) * .6));
174        break;
175    }
176
177    return $r . $r . $g . $g . $b . $b;
178}
179
180/**
181 * Encodes a string into unicode values 128-255.
182 * Useful for hiding an email address from spambots.
183 *
184 * @access  public
185 * @param   string   $text   A line of text to encode.
186 * @return  string   Encoded text.
187 */
188function encodeAscii($text)
189{
190    $ouput = '';
191    $num = strlen($text);
192    for ($i=0; $i<$num; $i++) {
193        $output .= sprintf('&#%03s', ord($text{$i}));
194    }
195    return $output;
196}
197
198/**
199 * Encodes an email into a "user at domain dot com" format.
200 *
201 * @access  public
202 * @param   string   $email   An email to encode.
203 * @param   string   $at      Replaces the @.
204 * @param   string   $dot     Replaces the ..
205 * @return  string   Encoded email.
206 */
207function encodeEmail($email, $at=' at ', $dot=' dot ')
208{
209    $search = array('/@/', '/\./');
210    $replace = array($at, $dot);
211    return preg_replace($search, $replace, $email);
212}
213
214/**
215 * Turns "a really long string" into "a rea...string"
216 *
217 * @access  public
218 * @param   string  $str    Input string
219 * @param   int     $len    Maximum string length.
220 * @param   string  $where  Where to cut the string. One of: 'start', 'middle', or 'end'.
221 * @return  string          Truncated output string
222 * @author  Quinn Comendant <quinn@strangecode.com>
223 * @since   29 Mar 2006 13:48:49
224 */
225function truncate($str, $len, $where='middle')
226{
227    $part1 = floor(($len - 3) / 2);
228    $part2 = ceil(($len - 3) / 2);
229    switch ($where) {
230    case 'start' :
231        return preg_replace(array(sprintf('/^.{4,}(.{%s})$/sU', $part1 + $part2), '/\s*\.{3,}\s*/sU'), array('...$1', '...'), $str);
232        break;
233    default :
234    case 'middle' :
235        return preg_replace(array(sprintf('/^(.{%s}).{4,}(.{%s})$/sU', $part1, $part2), '/\s*\.{3,}\s*/sU'), array('$1...$2', '...'), $str);
236        break;   
237    case 'end' :
238        return preg_replace(array(sprintf('/^(.{%s}).{4,}$/sU', $part1 + $part2), '/\s*\.{3,}\s*/sU'), array('$1...', '...'), $str);
239        break;   
240    }
241}
242
243/**
244 * Return a human readable filesize.
245 *
246 * @param       int    $size        Size
247 * @param       int    $unit        The maximum unit
248 * @param       int    $format      The return string format
249 * @author      Aidan Lister <aidan@php.net>
250 * @version     1.1.0
251 */
252function humanFileSize($size, $format='%01.2f %s', $max_unit=null)
253{
254    // Units
255    $units = array('B', 'KB', 'MB', 'GB', 'TB');
256    $ii = count($units) - 1;
257
258    // Max unit
259    $max_unit = array_search((string) $max_unit, $units);
260    if ($max_unit === null || $max_unit === false) {
261        $max_unit = $ii;
262    }
263
264    // Loop
265    $i = 0;
266    while ($max_unit != $i && $size >= 1024 && $i < $ii) {
267        $size /= 1024;
268        $i++;
269    }
270
271    return sprintf($format, $size, $units[$i]);
272}
273
274/*
275* Returns a human readable amount of time for the given amount of seconds.
276*
277* 45 seconds
278* 12 minutes
279* 3.5 hours
280* 2 days
281* 1 week
282* 4 months
283*
284* Months are calculated using the real number of days in a year: 365.2422 / 12.
285*
286* @access   public
287* @param    int $seconds Seconds of time.
288* @param    string $max_unit Key value from the $units array.
289* @param    string $format Sprintf formatting string.
290* @return   string Value of units elapsed.
291* @author   Quinn Comendant <quinn@strangecode.com>
292* @version  1.0
293* @since    23 Jun 2006 12:15:19
294*/
295function humanTime($seconds, $max_unit=null, $format='%01.1f')
296{
297    // Units: array of seconds in the unit, singular and plural unit names.
298    $units = array(
299        'second' => array(1, _("second"), _("seconds")),
300        'minute' => array(60, _("minute"), _("minutes")),
301        'hour' => array(3600, _("hour"), _("hours")),
302        'day' => array(86400, _("day"), _("days")),
303        'week' => array(604800, _("week"), _("weeks")),
304        'month' => array(2629743.84, _("month"), _("months")),
305        'year' => array(31556926.08, _("year"), _("years")),
306        'decade' => array(315569260.8, _("decade"), _("decades")),
307    );
308   
309    // Max unit to calculate.
310    $max_unit = isset($units[$max_unit]) ? $max_unit : 'decade';
311
312    $final_time = $seconds;
313    $last_unit = 'second';
314    foreach ($units as $k => $v) {
315        if ($max_unit != $k && $seconds >= $v[0]) {
316            $final_time = $seconds / $v[0];
317            $last_unit = $k;
318        }
319    }
320    $final_time = sprintf($format, $final_time);
321    return sprintf('%s %s', $final_time, (1 == $final_time ? $units[$last_unit][1] : $units[$last_unit][2]));   
322}
323
324/**
325 * Returns stats of a file from the include path.
326 *
327 * @param   string  $file   File in include path.
328 * @return  mixed   Value of requested key from fstat(), or false on error.
329 * @author  Quinn Comendant <quinn@strangecode.com>
330 * @since   03 Dec 2005 14:23:26
331 */
332function statIncludePath($file, $stat)
333{
334    // Open file pointer read-only using include path.
335    if ($fp = fopen($file, 'r', true)) {
336        // File opend successfully, get stats.
337        $stats = fstat($fp);
338        fclose($fp);
339        // Return specified stats.
340        return $stats[$stat];
341    } else {
342        return false;
343    }
344}
345
346/**
347 * If $var is net set or null, set it to $default. Otherwise leave it alone.
348 * Returns the final value of $var. Use to find a default value of one is not avilable.
349 *
350 * @param  mixed $var       The variable that is being set.
351 * @param  mixed $default   What to set it to if $val is not currently set.
352 * @return mixed            The resulting value of $var.
353 */
354function setDefault(&$var, $default='')
355{
356    if (!isset($var)) {
357        $var = $default;
358    }
359    return $var;
360}
361
362/**
363 * Like preg_quote() except for arrays, it takes an array of strings and puts
364 * a backslash in front of every character that is part of the regular
365 * expression syntax.
366 *
367 * @param  array $array    input array
368 * @param  array $delim    optional character that will also be excaped.
369 * @return array    an array with the same values as $array1 but shuffled
370 */
371function pregQuoteArray($array, $delim='/')
372{
373    if (!empty($array)) {
374        if (is_array($array)) {
375            foreach ($array as $key=>$val) {
376                $quoted_array[$key] = preg_quote($val, $delim);
377            }
378            return $quoted_array;
379        } else {
380            return preg_quote($array, $delim);
381        }
382    }
383}
384
385/**
386 * Converts a PHP Array into encoded URL arguments and return them as an array.
387 *
388 * @param  mixed $data        An array to transverse recursivly, or a string
389 *                            to use directly to create url arguments.
390 * @param  string $prefix     The name of the first dimension of the array.
391 *                            If not specified, the first keys of the array will be used.
392 * @return array              URL with array elements as URL key=value arguments.
393 */
394function urlEncodeArray($data, $prefix='', $_return=true) {
395
396    // Data is stored in static variable.
397    static $args;
398
399    if (is_array($data)) {
400        foreach ($data as $key => $val) {
401            // If the prefix is empty, use the $key as the name of the first dimention of the "array".
402            // ...otherwise, append the key as a new dimention of the "array".
403            $new_prefix = ('' == $prefix) ? urlencode($key) : $prefix . '[' . urlencode($key) . ']';
404            // Enter recursion.
405            urlEncodeArray($val, $new_prefix, false);
406        }
407    } else {
408        // We've come to the last dimention of the array, save the "array" and its value.
409        $args[$prefix] = urlencode($data);
410    }
411
412    if ($_return) {
413        // This is not a recursive execution. All recursion is complete.
414        // Reset static var and return the result.
415        $ret = $args;
416        $args = array();
417        return is_array($ret) ? $ret : array();
418    }
419}
420
421/**
422 * Converts a PHP Array into encoded URL arguments and return them in a string.
423 *
424 * @param  mixed $data        An array to transverse recursivly, or a string
425 *                            to use directly to create url arguments.
426 * @param  string $prefix     The name of the first dimention of the array.
427 *                            If not specified, the first keys of the array will be used.
428 * @return string url         A string ready to append to a url.
429 */
430function urlEncodeArrayToString($data, $prefix='') {
431
432    $array_args = urlEncodeArray($data, $prefix);
433    $url_args = '';
434    $delim = '';
435    foreach ($array_args as $key=>$val) {
436        $url_args .= $delim . $key . '=' . $val;
437        $delim = ini_get('arg_separator.output');
438    }
439    return $url_args;
440}
441
442/**
443 * Fills an arrray with the result from a multiple ereg search.
444 * Curtesy of Bruno - rbronosky@mac.com - 10-May-2001
445 * Blame him for the funky do...while loop.
446 *
447 * @param  mixed $pattern   regular expression needle
448 * @param  mixed $string   haystack
449 * @return array    populated with each found result
450 */
451function eregAll($pattern, $string)
452{
453    do {
454        if (!ereg($pattern, $string, $temp)) {
455             continue;
456        }
457        $string = str_replace($temp[0], '', $string);
458        $results[] = $temp;
459    } while (ereg($pattern, $string, $temp));
460    return $results;
461}
462
463/**
464 * Prints the word "checked" if a variable is set, and optionally matches
465 * the desired value, otherwise prints nothing,
466 * used for printing the word "checked" in a checkbox form input.
467 *
468 * @param  mixed $var     the variable to compare
469 * @param  mixed $value   optional, what to compare with if a specific value is required.
470 */
471function frmChecked($var, $value=null)
472{
473    if (func_num_args() == 1 && $var) {
474        // 'Checked' if var is true.
475        echo ' checked="checked" ';
476    } else if (func_num_args() == 2 && $var == $value) {
477        // 'Checked' if var and value match.
478        echo ' checked="checked" ';
479    } else if (func_num_args() == 2 && is_array($var)) {
480        // 'Checked' if the value is in the key or the value of an array.
481        if (isset($var[$value])) {
482            echo ' checked="checked" ';
483        } else if (in_array($value, $var)) {
484            echo ' checked="checked" ';
485        }
486    }
487}
488
489/**
490 * prints the word "selected" if a variable is set, and optionally matches
491 * the desired value, otherwise prints nothing,
492 * otherwise prints nothing, used for printing the word "checked" in a
493 * select form input
494 *
495 * @param  mixed $var     the variable to compare
496 * @param  mixed $value   optional, what to compare with if a specific value is required.
497 */
498function frmSelected($var, $value=null)
499{
500    if (func_num_args() == 1 && $var) {
501        // 'selected' if var is true.
502        echo ' selected="selected" ';
503    } else if (func_num_args() == 2 && $var == $value) {
504        // 'selected' if var and value match.
505        echo ' selected="selected" ';
506    } else if (func_num_args() == 2 && is_array($var)) {
507        // 'selected' if the value is in the key or the value of an array.
508        if (isset($var[$value])) {
509            echo ' selected="selected" ';
510        } else if (in_array($value, $var)) {
511            echo ' selected="selected" ';
512        }
513    }
514}
515
516/**
517 * Adds slashes to values of an array and converts the array to a comma
518 * delimited list. If value provided is a string return the string
519 * escaped.  This is useful for putting values coming in from posted
520 * checkboxes into a SET column of a database.
521 *
522 *
523 * @param  array $in      Array to convert.
524 * @return string         Comma list of array values.
525 */
526function escapedList($in)
527{
528    $db =& DB::getInstance();
529   
530    if (is_array($in) && !empty($in)) {
531        return "'" . join("', '", array_map(array($db, 'escapeString'), $in)) . "'";
532    } else {
533        return $db->escapeString($in);
534    }
535}
536
537/**
538 * Converts a human string date into a SQL-safe date.  Dates nearing
539 * infinity use the date 2038-01-01 so conversion to unix time format
540 * remain within valid range.
541 *
542 * @param  array $date     String date to convert.
543 * @param  array $format   Date format to pass to date().
544 *                         Default produces MySQL datetime: 0000-00-00 00:00:00.
545 * @return string          SQL-safe date.
546 */
547function strToSQLDate($date, $format='Y-m-d H:i:s')
548{
549    // Translate the human string date into SQL-safe date format.
550    if (empty($date) || '0000-00-00' == $date || strtotime($date) === -1) {
551        $sql_date = '0000-00-00';
552    } else {
553        $sql_date = date($format, strtotime($date));
554    }
555
556    return $sql_date;
557}
558
559/**
560 * If magic_quotes_gpc is in use, run stripslashes() on $var. If $var is an
561 * array, stripslashes is run on each value, recursivly, and the stripped
562 * array is returned.
563 *
564 * @param  mixed $var   The string or array to un-quote, if necessary.
565 * @return mixed        $var, minus any magic quotes.
566 */
567function dispelMagicQuotes($var)
568{
569    static $magic_quotes_gpc;
570
571    if (!isset($magic_quotes_gpc)) {
572        $magic_quotes_gpc = get_magic_quotes_gpc();
573    }
574
575    if ($magic_quotes_gpc) {
576        if (!is_array($var)) {
577            $var = stripslashes($var);
578        } else {
579            foreach ($var as $key=>$val) {
580                if (is_array($val)) {
581                    $var[$key] = dispelMagicQuotes($val);
582                } else {
583                    $var[$key] = stripslashes($val);
584                }
585            }
586        }
587    }
588    return $var;
589}
590
591/**
592 * Get a form variable from GET or POST data, stripped of magic
593 * quotes if necessary.
594 *
595 * @param string $var (optional) The name of the form variable to look for.
596 * @param string $default (optional) The value to return if the
597 *                                   variable is not there.
598 * @return mixed      A cleaned GET or POST if no $var specified.
599 * @return string     A cleaned form $var if found, or $default.
600 */
601function getFormData($var=null, $default=null)
602{
603    if ('POST' == getenv('REQUEST_METHOD') && is_null($var)) {
604        return dispelMagicQuotes($_POST);
605    } else if ('GET' == getenv('REQUEST_METHOD') && is_null($var)) {
606        return dispelMagicQuotes($_GET);
607    }
608    if (isset($_POST[$var])) {
609        return dispelMagicQuotes($_POST[$var]);
610    } else if (isset($_GET[$var])) {
611        return dispelMagicQuotes($_GET[$var]);
612    } else {
613        return $default;
614    }
615}
616function getPost($var=null, $default=null)
617{
618    if (is_null($var)) {
619        return dispelMagicQuotes($_POST);
620    }
621    if (isset($_POST[$var])) {
622        return dispelMagicQuotes($_POST[$var]);
623    } else {
624        return $default;
625    }
626}
627function getGet($var=null, $default=null)
628{
629    if (is_null($var)) {
630        return dispelMagicQuotes($_GET);
631    }
632    if (isset($_GET[$var])) {
633        return dispelMagicQuotes($_GET[$var]);
634    } else {
635        return $default;
636    }
637}
638
639/**
640 * Signs a value using md5 and a simple text key. In order for this
641 * function to be useful (i.e. secure) the key must be kept secret, which
642 * means keeping it as safe as database credentials. Putting it into an
643 * environment variable set in httpd.conf is a good place.
644 *
645 * @access  public
646 * @param   string  $val    The string to sign.
647 * @param   string  $salt   (Optional) A text key to use for computing the signature.
648 * @return  string  The original value with a signature appended.
649 */
650function addSignature($val, $salt=null)
651{
652    $app =& App::getInstance();
653   
654    if ('' == trim($val)) {
655        $app->logMsg(sprintf('Cannot add signature to an empty string.', null), LOG_INFO, __FILE__, __LINE__);
656        return '';
657    }
658
659    if (!isset($salt)) {
660        $salt = $app->getParam('signing_key');
661    }
662
663    return $val . '-' . substr(md5($salt . md5($val . $salt)), 0, 18);
664}
665
666/**
667 * Strips off the signature appended by addSignature().
668 *
669 * @access  public
670 * @param   string  $signed_val     The string to sign.
671 * @return  string  The original value with a signature removed.
672 */
673function removeSignature($signed_val)
674{
675    return substr($signed_val, 0, strrpos($signed_val, '-'));
676}
677
678
679/**
680 * Verifies a signature appened to a value by addSignature().
681 *
682 * @access  public
683 * @param   string  $signed_val A value with appended signature.
684 * @param   string  $salt       (Optional) A text key to use for computing the signature.
685 * @return  bool    True if the signature matches the var.
686 */
687function verifySignature($signed_val, $salt=null)
688{
689    // Strip the value from the signed value.
690    $val = removeSignature($signed_val);
691    // If the signed value matches the original signed value we consider the value safe.
692    if ($signed_val == addSignature($val, $salt)) {
693        // Signature verified.
694        return true;
695    } else {
696        return false;
697    }
698}
699
700/**
701 * Sends empty output to the browser and flushes the php buffer so the client
702 * will see data before the page is finished processing.
703 */
704function flushBuffer() {
705    echo str_repeat('          ', 205);
706    flush();
707}
708
709/**
710 * Adds email address to mailman mailing list. Requires /etc/sudoers entry for apache to sudo execute add_members.
711 * Don't forget to allow php_admin_value open_basedir access to "/var/mailman/bin".
712 *
713 * @access  public
714 * @param   string  $email     Email address to add.
715 * @param   string  $list      Name of list to add to.
716 * @param   bool    $send_welcome_message   True to send welcome message to subscriber.
717 * @return  bool    True on success, false on failure.
718 */
719function mailmanAddMember($email, $list, $send_welcome_message=false)
720{
721    $app =& App::getInstance();
722   
723    $add_members = '/var/mailman/bin/add_members';
724    if (is_executable($add_members) && is_readable($add_members)) {
725        $welcome_msg = $send_welcome_message ? 'y' : 'n';
726        exec(sprintf('/bin/echo %s | /usr/bin/sudo %s -r - --welcome-msg=%s --admin-notify=n %s', escapeshellarg($email), escapeshellarg($add_members), $welcome_msg, escapeshellarg($list)), $stdout, $return_code);
727        if (0 == $return_code) {
728            $app->logMsg(sprintf('Mailman add member success for list: %s, user: %s', $list, $email, $stdout), LOG_INFO, __FILE__, __LINE__);
729            return true;
730        } else {
731            $app->logMsg(sprintf('Mailman add member failed for list: %s, user: %s, with message: %s', $list, $email, $stdout), LOG_WARNING, __FILE__, __LINE__);
732            return false;
733        }
734    } else {
735        $app->logMsg(sprintf('Mailman add member program not executable: %s', $add_members), LOG_ALERT, __FILE__, __LINE__);
736        return false;
737    }
738}
739
740/**
741 * Removes email address from mailman mailing list. Requires /etc/sudoers entry for apache to sudo execute add_members.
742 * Don't forget to allow php_admin_value open_basedir access to "/var/mailman/bin".
743 *
744 * @access  public
745 * @param   string  $email     Email address to add.
746 * @param   string  $list      Name of list to add to.
747 * @param   bool    $send_user_ack   True to send goodbye message to subscriber.
748 * @return  bool    True on success, false on failure.
749 */
750function mailmanRemoveMember($email, $list, $send_user_ack=false)
751{
752    $app =& App::getInstance();
753   
754    $remove_members = '/var/mailman/bin/remove_members';
755    if (is_executable($remove_members) && is_readable($remove_members)) {
756        $userack = $send_user_ack ? '' : '--nouserack';
757        exec(sprintf('/usr/bin/sudo %s %s --noadminack %s %s', escapeshellarg($remove_members), $userack, escapeshellarg($list), escapeshellarg($email)), $stdout, $return_code);
758        if (0 == $return_code) {
759            $app->logMsg(sprintf('Mailman remove member success for list: %s, user: %s', $list, $email, $stdout), LOG_INFO, __FILE__, __LINE__);
760            return true;
761        } else {
762            $app->logMsg(sprintf('Mailman remove member failed for list: %s, user: %s, with message: %s', $list, $email, $stdout), LOG_WARNING, __FILE__, __LINE__);
763            return false;
764        }
765    } else {
766        $app->logMsg(sprintf('Mailman remove member program not executable: %s', $remove_members), LOG_ALERT, __FILE__, __LINE__);
767        return false;
768    }
769}
770
771/**
772 * Returns the remote IP address, taking into consideration proxy servers.
773 *
774 * @param  bool $dolookup   If true we resolve to IP to a host name,
775 *                          if false we don't.
776 * @return string    IP address if $dolookup is false or no arg
777 *                   Hostname if $dolookup is true
778 */
779function getRemoteAddr($dolookup=false)
780{
781    $ip = getenv('HTTP_CLIENT_IP');
782    if (empty($ip) || $ip == 'unknown' || $ip == 'localhost' || $ip == '127.0.0.1') {
783        $ip = getenv('HTTP_X_FORWARDED_FOR');
784        if (empty($ip) || $ip == 'unknown' || $ip == 'localhost' || $ip == '127.0.0.1') {
785            $ip = getenv('REMOTE_ADDR');
786        }
787    }
788    return $dolookup && '' != $ip ? gethostbyaddr($ip) : $ip;
789}
790
791/**
792 * Tests whether a given IP address can be found in an array of IP address networks.
793 * Elements of networks array can be single IP addresses or an IP address range in CIDR notation
794 * See: http://en.wikipedia.org/wiki/Classless_inter-domain_routing
795 *
796 * @access  public
797 * @param   string  IP address to search for.
798 * @param   array   Array of networks to search within.
799 * @return  mixed   Returns the network that matched on success, false on failure.
800 */
801function ipInRange($ip, $networks)
802{
803    if (!is_array($networks)) {
804        $networks = array($networks);
805    }
806
807    $ip_binary = sprintf('%032b', ip2long($ip));
808    foreach ($networks as $network) {
809        if (preg_match('![\d\.]{7,15}/\d{1,2}!', $network)) {
810            // IP is in CIDR notation.
811            list($cidr_ip, $cidr_bitmask) = split('/', $network);
812            $cidr_ip_binary = sprintf('%032b', ip2long($cidr_ip));
813            if (substr($ip_binary, 0, $cidr_bitmask) === substr($cidr_ip_binary, 0, $cidr_bitmask)) {
814               // IP address is within the specified IP range.
815               return $network;
816            }
817        } else {
818            if ($ip === $network) {
819               // IP address exactly matches.
820               return $network;
821            }
822        }
823    }
824
825    return false;
826}
827
828/**
829 * If the given $url is on the same web site, return true. This can be used to
830 * prevent from sending sensitive info in a get query (like the SID) to another
831 * domain.
832 *
833 * @param  string $url    the URI to test.
834 * @return bool True if given $url is our domain or has no domain (is a relative url), false if it's another.
835 */
836function isMyDomain($url)
837{
838    static $urls = array();
839
840    if (!isset($urls[$url])) {
841        if (!preg_match('|https?://[\w.]+/|', $url)) {
842            // If we can't find a domain we assume the URL is local (i.e. "/my/url/path/" or "../img/file.jpg").
843            $urls[$url] = true;
844        } else {
845            $urls[$url] = preg_match('|https?://[\w.]*' . preg_quote(getenv('HTTP_HOST'), '|') . '|i', $url);
846        }
847    }
848    return $urls[$url];
849}
850
851/**
852 * Takes a URL and returns it without the query or anchor portion
853 *
854 * @param  string $url   any kind of URI
855 * @return string        the URI with ? or # and everything after removed
856 */
857function stripQuery($url)
858{
859    return preg_replace('![?#].*!', '', $url);
860}
861
862/**
863 * Returns a fully qualified URL to the current script, including the query.
864 *
865 * @return string    a full url to the current script
866 */
867function absoluteMe()
868{
869    $protocol = ('on' == getenv('HTTPS')) ? 'https://' : 'http://';
870    return $protocol . getenv('HTTP_HOST') . getenv('REQUEST_URI');
871}
872
873/**
874 * Compares the current url with the referring url.
875 *
876 * @param  bool $exclude_query  Remove the query string first before comparing.
877 * @return bool                 True if the current URL is the same as the refering URL, false otherwise.
878 */
879function refererIsMe($exclude_query=false)
880{
881    if ($exclude_query) {
882        return (stripQuery(absoluteMe()) == stripQuery(getenv('HTTP_REFERER')));
883    } else {
884        return (absoluteMe() == getenv('HTTP_REFERER'));
885    }
886}
887
888/**
889 * Stub functions used when installation does not have
890 * GNU gettext extension installed
891 */
892if (!extension_loaded('gettext')) {
893    /**
894    * Translates text
895    *
896    * @access public
897    * @param string $text the text to be translated
898    * @return string translated text
899    */
900    function gettext($text) {
901        return $text;
902    }
903
904    /**
905    * Translates text
906    *
907    * @access public
908    * @param string $text the text to be translated
909    * @return string translated text
910    */
911    function _($text) {
912        return $text;
913    }
914
915    /**
916    * Translates text by domain
917    *
918    * @access public
919    * @param string $domain the language to translate the text into
920    * @param string $text the text to be translated
921    * @return string translated text
922    */
923    function dgettext($domain, $text) {
924        return $text;
925    }
926
927    /**
928    * Translates text by domain and category
929    *
930    * @access public
931    * @param string $domain the language to translate the text into
932    * @param string $text the text to be translated
933    * @param string $category the language dialect to use
934    * @return string translated text
935    */
936    function dcgettext($domain, $text, $category) {
937        return $text;
938    }
939
940    /**
941    * Binds the text domain
942    *
943    * @access public
944    * @param string $domain the language to translate the text into
945    * @param string
946    * @return string translated text
947    */
948    function bindtextdomain($domain, $directory) {
949        return $domain;
950    }
951
952    /**
953    * Sets the text domain
954    *
955    * @access public
956    * @param string $domain the language to translate the text into
957    * @return string translated text
958    */
959    function textdomain($domain) {
960        return $domain;
961    }
962}
963
964
965
966?>
Note: See TracBrowser for help on using the repository browser.