X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=functions%2Fstrings.php;h=df0a7117452152f1ae87e3d0671ede0cd115437c;hp=00557ae498fbf1b8c789be19076fd725ef8054fe;hb=2a50fbd78ecc337335eff7e62e28ae06580d452c;hpb=66239b656b146e8f14c4505fca18d9f740e79721 diff --git a/functions/strings.php b/functions/strings.php index 00557ae4..df0a7117 100644 --- a/functions/strings.php +++ b/functions/strings.php @@ -1,6 +1,6 @@ = strlen($haystack)) - return -1; - $pos++; - } - return $pos; -} +$version = '1.3.0 [CVS-DEVEL]'; /** * Wraps text at $wrap characters @@ -95,21 +33,21 @@ function sqWordWrap(&$line, $wrap) { if (isset($regs[2])) { $words = explode(' ', $regs[2]); } else { - $words = ""; + $words = ''; } $i = 0; $line = $beginning_spaces; while ($i < count($words)) { - // Force one word to be on a line (minimum) + /* Force one word to be on a line (minimum) */ $line .= $words[$i]; $line_len = strlen($beginning_spaces) + strlen($words[$i]) + 2; if (isset($words[$i + 1])) $line_len += strlen($words[$i + 1]); $i ++; - // Add more words (as long as they fit) + /* Add more words (as long as they fit) */ while ($line_len < $wrap && $i < count($words)) { $line .= ' ' . $words[$i]; $i++; @@ -119,55 +57,42 @@ function sqWordWrap(&$line, $wrap) { $line_len += 1; } - // Skip spaces if they are the first thing on a continued line + /* Skip spaces if they are the first thing on a continued line */ while (!isset($words[$i]) && $i < count($words)) { $i ++; } - // Go to the next line if we have more to process + /* Go to the next line if we have more to process */ if ($i < count($words)) { - $line .= "\n" . $beginning_spaces; + $line .= "\n"; } } } - /** - * Does the opposite of sqWordWrap() + * If $haystack is a full mailbox name and $needle is the mailbox + * separator character, returns the last part of the mailbox name. */ -function sqUnWordWrap(&$body) { - $lines = explode("\n", $body); - $body = ""; - $PreviousSpaces = ""; - for ($i = 0; $i < count($lines); $i ++) { - ereg("^([\t >]*)([^\t >].*)?$", $lines[$i], $regs); - $CurrentSpaces = $regs[1]; - if (isset($regs[2])) { - $CurrentRest = $regs[2]; - } - - if ($i == 0) { - $PreviousSpaces = $CurrentSpaces; - $body = $lines[$i]; - } else if (($PreviousSpaces == $CurrentSpaces) // Do the beginnings match - && (strlen($lines[$i - 1]) > 65) // Over 65 characters long - && strlen($CurrentRest)) { // and there's a line to continue with - $body .= ' ' . $CurrentRest; - } else { - $body .= "\n" . $lines[$i]; - $PreviousSpaces = $CurrentSpaces; - } +function readShortMailboxName($haystack, $needle) { + + if ($needle == '') { + $elem = $haystack; + } else { + $parts = explode($needle, $haystack); + $elem = array_pop($parts); + while ($elem == '' && count($parts)) { + $elem = array_pop($parts); + } } - $body .= "\n"; + return( $elem ); } - /** * Returns an array of email addresses. * Be cautious of "user@host.com" */ function parseAddrs($text) { - if (trim($text) == "") + if (trim($text) == '') return array(); $text = str_replace(' ', '', $text); $text = ereg_replace('"[^"]*"', '', $text); @@ -175,8 +100,8 @@ function parseAddrs($text) { $text = str_replace(',', ';', $text); $array = explode(';', $text); for ($i = 0; $i < count ($array); $i++) { - $array[$i] = eregi_replace ("^.*[<]", '', $array[$i]); - $array[$i] = eregi_replace ("[>].*$", '', $array[$i]); + $array[$i] = eregi_replace ('^.*[<]', '', $array[$i]); + $array[$i] = eregi_replace ('[>].*$', '', $array[$i]); } return $array; } @@ -198,62 +123,24 @@ function getLineOfAddrs($array) { return( $to_line ); } -function translateText(&$body, $wrap_at, $charset) { - global $where, $what; // from searching - global $color; // color theme +function php_self () { + global $PHP_SELF, $HTTP_SERVER_VARS; - require_once('../functions/url_parser.php'); - - $body_ary = explode("\n", $body); - $PriorQuotes = 0; - for ($i=0; $i < count($body_ary); $i++) { - $line = $body_ary[$i]; - if (strlen($line) - 2 >= $wrap_at) { - sqWordWrap($line, $wrap_at); - } - $line = charset_decode($charset, $line); - $line = str_replace("\t", ' ', $line); - - parseUrl ($line); - - $Quotes = 0; - $pos = 0; - while (1) { - if ($line[$pos] == ' ') { - $pos ++; - } else if (strpos($line, '>', $pos) === $pos) { - $pos += 4; - $Quotes ++; - } else { - break; - } - } - - if ($Quotes > 1) { - if (! isset($color[14])) { - $color[14] = '#FF0000'; - } - $line = '' . $line . ''; - } elseif ($Quotes) { - if (! isset($color[13])) { - $color[13] = '#800000'; - } - $line = '' . $line . ''; - } - - $body_ary[$i] = $line; + if (isset($HTTP_SERVER_VARS['REQUEST_URI']) && !empty($HTTP_SERVER_VARS['REQUEST_URI']) ) { + return $HTTP_SERVER_VARS['REQUEST_URI']; } - $body = '
' . implode("\n", $body_ary) . '
'; -} -function find_mailbox_name ($mailbox) { - if (ereg(" *\"([^\r\n\"]*)\"[ \r\n]*$", $mailbox, $regs)) - return $regs[1]; - ereg(" *([^ \r\n\"]*)[ \r\n]*$",$mailbox,$regs); - return $regs[1]; - + if (isset($PHP_SELF) && !empty($PHP_SELF)) { + return $PHP_SELF; + } else if (isset($HTTP_SERVER_VARS['PHP_SELF']) && + !empty($HTTP_SERVER_VARS['PHP_SELF'])) { + return $HTTP_SERVER_VARS['PHP_SELF']; + } else { + return ''; + } } + /** * This determines the location to forward to relative to your server. * If this doesnt work correctly for you (although it should), you can @@ -266,10 +153,10 @@ function find_mailbox_name ($mailbox) { function get_location () { global $PHP_SELF, $SERVER_NAME, $HTTP_HOST, $SERVER_PORT, - $HTTP_SERVER_VARS; + $HTTP_SERVER_VARS, $imap_server_type; - /* Get the path. */ - $path = substr($PHP_SELF, 0, strrpos($PHP_SELF, '/')); + /* Get the path, handle virtual directories */ + $path = substr(php_self(), 0, strrpos(php_self(), '/')); /* Check if this is a HTTPS or regular HTTP request. */ $proto = 'http://'; @@ -287,13 +174,17 @@ function get_location () { $proto = 'https://'; } - // Get the hostname from the Host header or server config. + /* Get the hostname from the Host header or server config. */ $host = ''; if (isset($HTTP_HOST) && !empty($HTTP_HOST)) { $host = $HTTP_HOST; } else if (isset($SERVER_NAME) && !empty($SERVER_NAME)) { $host = $SERVER_NAME; + } else if (isset($HTTP_SERVER_VARS['SERVER_NAME']) && + !empty($HTTP_SERVER_VARS['SERVER_NAME'])) { + $host = $HTTP_SERVER_VARS['SERVER_NAME']; } + $port = ''; if (! strstr($host, ':')) { @@ -305,6 +196,14 @@ function get_location () { } } + /* this is a workaround for the weird macosx caching that + causes Apache to return 16080 as the port number, which causes + SM to bail */ + + if ($imap_server_type == 'macosx' && $port == ':16080') { + $port = ''; + } + /* Fallback is to omit the server name and use a relative */ /* URI, although this is not RFC 2616 compliant. */ return ($host ? $proto . $host . $port . $path : $path); @@ -343,8 +242,8 @@ function OneTimePadDecrypt ($string, $epad) { * better to get them long. Use md5() to lengthen smaller strings. */ function sq_mt_seed($Val) { - // if mt_getrandmax() does not return a 2^n - 1 number, - // this might not work well. This uses $Max as a bitmask. + /* if mt_getrandmax() does not return a 2^n - 1 number, + this might not work well. This uses $Max as a bitmask. */ $Max = mt_getrandmax(); if (! is_int($Val)) { @@ -399,7 +298,7 @@ function sq_mt_randomize() { /* getrusage */ if (function_exists('getrusage')) { - // Avoid warnings with Win32 + /* Avoid warnings with Win32 */ $dat = @getrusage(); if (isset($dat) && is_array($dat)) { $Str = ''; @@ -411,7 +310,7 @@ function sq_mt_randomize() { } } - // Apache-specific + /* Apache-specific */ sq_mt_seed(md5($UNIQUE_ID)); $randomized = 1; @@ -446,7 +345,7 @@ function sqCheckPHPVersion($major, $minor, $release) { $vmajor = strval($regs[1]); $vminor = strval($regs[2]); $vrel = $regs[3]; - if($vrel[0] == ".") { + if($vrel[0] == '.') { $vrel = strval(substr($vrel, 1)); } if($vrel[0] == 'b' || $vrel[0] == 'B') { @@ -465,13 +364,13 @@ function sqCheckPHPVersion($major, $minor, $release) { if ($vminor > $minor) { return true; } /* Major and minor is the same as the required one. Compare release */ - if ($vrel >= 0 && $release >= 0) { // Neither are beta + if ($vrel >= 0 && $release >= 0) { /* Neither are beta */ if($vrel < $release) return false; - } else if($vrel >= 0 && $release < 0) { // This is not beta, required is beta + } else if($vrel >= 0 && $release < 0) { /* This is not beta, required is beta */ return true; - } else if($vrel < 0 && $release >= 0){ // This is beta, require not beta + } else if($vrel < 0 && $release >= 0){ /* This is beta, require not beta */ return false; - } else { // Both are beta + } else { /* Both are beta */ if($vrel > $release) return false; } @@ -524,14 +423,15 @@ function GenerateRandomString($size, $chars, $flags = 0) { if (($size < 1) || (strlen($chars) < 1)) { return ''; } - - sq_mt_randomize(); // Initialize the random number generator - - $String = ""; + + sq_mt_randomize(); /* Initialize the random number generator */ + + $String = ''; + $j = strlen( $chars ) - 1; while (strlen($String) < $size) { - $String .= $chars[mt_rand(0, strlen($chars))]; + $String .= $chars{mt_rand(0, $j)}; } - + return $String; } @@ -553,7 +453,7 @@ function TrimArray(&$array) { $$k = substr($v, 1); } - /* Re-assign back to array. */ + /* Re-assign back to array. */ $array[$k] = $$k; } } @@ -573,9 +473,11 @@ function RemoveSlashes(&$array) { $$k = stripslashes($v); } - /* Re-assign back to the array. */ + /* Re-assign back to the array. */ $array[$k] = $$k; } } +$PHP_SELF = php_self(); + ?>