Optimization:
[squirrelmail.git] / functions / strings.php
CommitLineData
59177427 1<?php
7350889b 2
e080b080 3/**
35586184 4 * strings.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This code provides various string manipulation functions that are
10 * used by the rest of the Squirrelmail code.
11 *
12 * $Id$
13 */
9374671f 14
35586184 15/**
16 * SquirrelMail version number -- DO NOT CHANGE
17 */
18global $version;
03ffa719 19$version = '1.2.6 [cvs]';
d068c0ec 20
66239b65 21/**
22 * If $haystack is a full mailbox name and $needle is the mailbox
23 * separator character, returns the last part of the mailbox name.
24 */
25function readShortMailboxName($haystack, $needle) {
97b1248c 26
66239b65 27 if ($needle == '') {
97b1248c 28 $elem = $haystack;
29 } else {
30 $parts = explode($needle, $haystack);
31 $elem = array_pop($parts);
32 while ($elem == '' && count($parts)) {
33 $elem = array_pop($parts);
34 }
66239b65 35 }
97b1248c 36 return( $elem );
66239b65 37}
3302d0d4 38
66239b65 39/**
40 * Wraps text at $wrap characters
41 *
42 * Has a problem with special HTML characters, so call this before
43 * you do character translation.
44 *
45 * Specifically, &#039 comes up as 5 characters instead of 1.
46 * This should not add newlines to the end of lines.
47 */
48function sqWordWrap(&$line, $wrap) {
49 ereg("^([\t >]*)([^\t >].*)?$", $line, $regs);
50 $beginning_spaces = $regs[1];
51 if (isset($regs[2])) {
52 $words = explode(' ', $regs[2]);
53 } else {
4deb32f1 54 $words = '';
66239b65 55 }
56
57 $i = 0;
58 $line = $beginning_spaces;
59
60 while ($i < count($words)) {
4deb32f1 61 /* Force one word to be on a line (minimum) */
66239b65 62 $line .= $words[$i];
63 $line_len = strlen($beginning_spaces) + strlen($words[$i]) + 2;
64 if (isset($words[$i + 1]))
65 $line_len += strlen($words[$i + 1]);
66 $i ++;
67
4deb32f1 68 /* Add more words (as long as they fit) */
66239b65 69 while ($line_len < $wrap && $i < count($words)) {
bcad90fe 70 $line .= ' ' . $words[$i];
71 $i++;
66239b65 72 if (isset($words[$i]))
48f8ce2f 73 $line_len += strlen($words[$i]) + 1;
66239b65 74 else
75 $line_len += 1;
76 }
77
4deb32f1 78 /* Skip spaces if they are the first thing on a continued line */
66239b65 79 while (!isset($words[$i]) && $i < count($words)) {
bcad90fe 80 $i ++;
66239b65 81 }
82
4deb32f1 83 /* Go to the next line if we have more to process */
66239b65 84 if ($i < count($words)) {
5be8bbd8 85 $line .= "\n" . $beginning_spaces;
66239b65 86 }
87 }
88}
9374671f 89
23d6bd09 90
66239b65 91/**
92 * Does the opposite of sqWordWrap()
93 */
94function sqUnWordWrap(&$body) {
95 $lines = explode("\n", $body);
4deb32f1 96 $body = '';
97 $PreviousSpaces = '';
66239b65 98 for ($i = 0; $i < count($lines); $i ++) {
99 ereg("^([\t >]*)([^\t >].*)?$", $lines[$i], $regs);
100 $CurrentSpaces = $regs[1];
101 if (isset($regs[2])) {
102 $CurrentRest = $regs[2];
103 }
104
105 if ($i == 0) {
106 $PreviousSpaces = $CurrentSpaces;
107 $body = $lines[$i];
4deb32f1 108 } else if (($PreviousSpaces == $CurrentSpaces) /* Do the beginnings match */
109 && (strlen($lines[$i - 1]) > 65) /* Over 65 characters long */
110 && strlen($CurrentRest)) { /* and there's a line to continue with */
66239b65 111 $body .= ' ' . $CurrentRest;
112 } else {
113 $body .= "\n" . $lines[$i];
114 $PreviousSpaces = $CurrentSpaces;
115 }
116 }
117 $body .= "\n";
118}
9374671f 119
40ee9452 120
66239b65 121/**
122 * Returns an array of email addresses.
123 * Be cautious of "user@host.com"
124 */
125function parseAddrs($text) {
4deb32f1 126 if (trim($text) == '')
66239b65 127 return array();
128 $text = str_replace(' ', '', $text);
129 $text = ereg_replace('"[^"]*"', '', $text);
130 $text = ereg_replace('\\([^\\)]*\\)', '', $text);
131 $text = str_replace(',', ';', $text);
132 $array = explode(';', $text);
133 for ($i = 0; $i < count ($array); $i++) {
4deb32f1 134 $array[$i] = eregi_replace ('^.*[<]', '', $array[$i]);
135 $array[$i] = eregi_replace ('[>].*$', '', $array[$i]);
66239b65 136 }
137 return $array;
138}
40ee9452 139
66239b65 140/**
141 * Returns a line of comma separated email addresses from an array.
142 */
143function getLineOfAddrs($array) {
144 if (is_array($array)) {
8a549df2 145 $to_line = implode(', ', $array);
d46b103b 146 $to_line = ereg_replace(', (, )+', ', ', $to_line);
147 $to_line = trim(ereg_replace('^, ', '', $to_line));
148 if( substr( $to_line, -1 ) == ',' )
149 $to_line = substr( $to_line, 0, -1 );
66239b65 150 } else {
8a549df2 151 $to_line = '';
66239b65 152 }
153
154 return( $to_line );
155}
156
157function translateText(&$body, $wrap_at, $charset) {
4deb32f1 158 global $where, $what; /* from searching */
159 global $color; /* color theme */
7e235a1a 160
66239b65 161 require_once('../functions/url_parser.php');
7e235a1a 162
66239b65 163 $body_ary = explode("\n", $body);
164 $PriorQuotes = 0;
165 for ($i=0; $i < count($body_ary); $i++) {
166 $line = $body_ary[$i];
167 if (strlen($line) - 2 >= $wrap_at) {
9374671f 168 sqWordWrap($line, $wrap_at);
66239b65 169 }
170 $line = charset_decode($charset, $line);
171 $line = str_replace("\t", ' ', $line);
88cb1b4d 172
66239b65 173 parseUrl ($line);
88cb1b4d 174
66239b65 175 $Quotes = 0;
176 $pos = 0;
7e235a1a 177 $j = strlen( $line );
88cb1b4d 178
b74e088a 179 while ( $pos < $j ) {
66239b65 180 if ($line[$pos] == ' ') {
8ceb637a 181 $pos ++;
66239b65 182 } else if (strpos($line, '&gt;', $pos) === $pos) {
9eea179c 183 $pos += 4;
184 $Quotes ++;
66239b65 185 } else {
186 break;
187 }
188 }
189
190 if ($Quotes > 1) {
191 if (! isset($color[14])) {
192 $color[14] = '#FF0000';
23d6bd09 193 }
0391864c 194 $line = '<FONT COLOR="' . $color[14] . '">' . $line . '</FONT>';
66239b65 195 } elseif ($Quotes) {
196 if (! isset($color[13])) {
197 $color[13] = '#800000';
23d6bd09 198 }
24194051 199 $line = '<FONT COLOR="' . $color[13] . '">' . $line . '</FONT>';
66239b65 200 }
201
202 $body_ary[$i] = $line;
203 }
204 $body = '<pre>' . implode("\n", $body_ary) . '</pre>';
205}
9374671f 206
66239b65 207function find_mailbox_name ($mailbox) {
208 if (ereg(" *\"([^\r\n\"]*)\"[ \r\n]*$", $mailbox, $regs))
209 return $regs[1];
210 ereg(" *([^ \r\n\"]*)[ \r\n]*$",$mailbox,$regs);
211 return $regs[1];
212
213}
23d6bd09 214
43fdb2a4 215function php_self () {
216 global $PHP_SELF, $HTTP_SERVER_VARS;
217
4deb32f1 218 if (isset($HTTP_SERVER_VARS['REQUEST_URI']) && !empty($HTTP_SERVER_VARS['REQUEST_URI']) ) {
219 return $HTTP_SERVER_VARS['REQUEST_URI'];
220 }
221
43fdb2a4 222 if (isset($PHP_SELF) && !empty($PHP_SELF)) {
223 return $PHP_SELF;
224 } else if (isset($HTTP_SERVER_VARS['PHP_SELF']) &&
225 !empty($HTTP_SERVER_VARS['PHP_SELF'])) {
226 return $HTTP_SERVER_VARS['PHP_SELF'];
227 } else {
228 return '';
229 }
230}
231
232
66239b65 233/**
234 * This determines the location to forward to relative to your server.
235 * If this doesnt work correctly for you (although it should), you can
236 * remove all this code except the last two lines, and change the header()
237 * function to look something like this, customized to the location of
238 * SquirrelMail on your server:
239 *
240 * http://www.myhost.com/squirrelmail/src/login.php
241 */
242function get_location () {
243
244 global $PHP_SELF, $SERVER_NAME, $HTTP_HOST, $SERVER_PORT,
245 $HTTP_SERVER_VARS;
246
4deb32f1 247 /* Get the path, handle virtual directories */
248 $path = substr(php_self(), 0, strrpos(php_self(), '/'));
66239b65 249
250 /* Check if this is a HTTPS or regular HTTP request. */
251 $proto = 'http://';
252
253 /*
254 * If you have 'SSLOptions +StdEnvVars' in your apache config
255 * OR if you have HTTPS in your HTTP_SERVER_VARS
256 * OR if you are on port 443
257 */
258 $getEnvVar = getenv('HTTPS');
259 if ((isset($getEnvVar) && !strcasecmp($getEnvVar, 'on')) ||
260 (isset($HTTP_SERVER_VARS['HTTPS'])) ||
261 (isset($HTTP_SERVER_VARS['SERVER_PORT']) &&
262 $HTTP_SERVER_VARS['SERVER_PORT'] == 443)) {
8a549df2 263 $proto = 'https://';
66239b65 264 }
265
4deb32f1 266 /* Get the hostname from the Host header or server config. */
66239b65 267 $host = '';
268 if (isset($HTTP_HOST) && !empty($HTTP_HOST)) {
269 $host = $HTTP_HOST;
270 } else if (isset($SERVER_NAME) && !empty($SERVER_NAME)) {
271 $host = $SERVER_NAME;
4dc9a365 272 } else if (isset($HTTP_SERVER_VARS['SERVER_NAME']) &&
273 !empty($HTTP_SERVER_VARS['SERVER_NAME'])) {
274 $host = $HTTP_SERVER_VARS['SERVER_NAME'];
66239b65 275 }
4dc9a365 276
66239b65 277
278 $port = '';
279 if (! strstr($host, ':')) {
280 if (isset($SERVER_PORT)) {
281 if (($SERVER_PORT != 80 && $proto == 'http://')
282 || ($SERVER_PORT != 443 && $proto == 'https://')) {
283 $port = sprintf(':%d', $SERVER_PORT);
284 }
285 }
286 }
287
288 /* Fallback is to omit the server name and use a relative */
289 /* URI, although this is not RFC 2616 compliant. */
290 return ($host ? $proto . $host . $port . $path : $path);
291}
dcaf2a49 292
9374671f 293
66239b65 294/**
295 * These functions are used to encrypt the passowrd before it is
296 * stored in a cookie.
297 */
298function OneTimePadEncrypt ($string, $epad) {
299 $pad = base64_decode($epad);
300 $encrypted = '';
301 for ($i = 0; $i < strlen ($string); $i++) {
302 $encrypted .= chr (ord($string[$i]) ^ ord($pad[$i]));
303 }
304
305 return base64_encode($encrypted);
306}
307
308function OneTimePadDecrypt ($string, $epad) {
309 $pad = base64_decode($epad);
310 $encrypted = base64_decode ($string);
311 $decrypted = '';
312 for ($i = 0; $i < strlen ($encrypted); $i++) {
313 $decrypted .= chr (ord($encrypted[$i]) ^ ord($pad[$i]));
314 }
315
316 return $decrypted;
317}
9374671f 318
9374671f 319
66239b65 320/**
321 * Randomize the mt_rand() function. Toss this in strings or integers
322 * and it will seed the generator appropriately. With strings, it is
323 * better to get them long. Use md5() to lengthen smaller strings.
324 */
325function sq_mt_seed($Val) {
4deb32f1 326 /* if mt_getrandmax() does not return a 2^n - 1 number,
327 this might not work well. This uses $Max as a bitmask. */
66239b65 328 $Max = mt_getrandmax();
329
330 if (! is_int($Val)) {
331 if (function_exists('crc32')) {
332 $Val = crc32($Val);
333 } else {
334 $Str = $Val;
335 $Pos = 0;
336 $Val = 0;
337 $Mask = $Max / 2;
338 $HighBit = $Max ^ $Mask;
339 while ($Pos < strlen($Str)) {
340 if ($Val & $HighBit) {
341 $Val = (($Val & $Mask) << 1) + 1;
342 } else {
343 $Val = ($Val & $Mask) << 1;
344 }
345 $Val ^= $Str[$Pos];
346 $Pos ++;
347 }
348 }
349 }
350
351 if ($Val < 0) {
352 $Val *= -1;
353 }
354
355 if ($Val = 0) {
356 return;
357 }
358
359 mt_srand(($Val ^ mt_rand(0, $Max)) & $Max);
360}
9374671f 361
9374671f 362
66239b65 363/**
364 * This function initializes the random number generator fairly well.
365 * It also only initializes it once, so you don't accidentally get
366 * the same 'random' numbers twice in one session.
367 */
368function sq_mt_randomize() {
369 global $REMOTE_PORT, $REMOTE_ADDR, $UNIQUE_ID;
370 static $randomized;
371
372 if ($randomized) {
373 return;
374 }
375
376 /* Global. */
377 sq_mt_seed((int)((double) microtime() * 1000000));
378 sq_mt_seed(md5($REMOTE_PORT . $REMOTE_ADDR . getmypid()));
379
380 /* getrusage */
381 if (function_exists('getrusage')) {
4deb32f1 382 /* Avoid warnings with Win32 */
66239b65 383 $dat = @getrusage();
384 if (isset($dat) && is_array($dat)) {
821a8e9c 385 $Str = '';
386 foreach ($dat as $k => $v)
66239b65 387 {
388 $Str .= $k . $v;
389 }
821a8e9c 390 sq_mt_seed(md5($Str));
66239b65 391 }
392 }
393
4deb32f1 394 /* Apache-specific */
66239b65 395 sq_mt_seed(md5($UNIQUE_ID));
396
397 $randomized = 1;
398}
399
400function OneTimePadCreate ($length=100) {
401 sq_mt_randomize();
402
403 $pad = '';
404 for ($i = 0; $i < $length; $i++) {
405 $pad .= chr(mt_rand(0,255));
406 }
407
408 return base64_encode($pad);
409}
9374671f 410
66239b65 411/**
412 * Check if we have a required PHP-version. Return TRUE if we do,
413 * or FALSE if we don't.
414 *
415 * To check for 4.0.1, use sqCheckPHPVersion(4,0,1)
416 * To check for 4.0b3, use sqCheckPHPVersion(4,0,-3)
417 *
418 * Does not handle betas like 4.0.1b1 or development versions
419 */
420function sqCheckPHPVersion($major, $minor, $release) {
421
422 $ver = phpversion();
423 eregi('^([0-9]+)\\.([0-9]+)(.*)', $ver, $regs);
424
425 /* Parse the version string. */
426 $vmajor = strval($regs[1]);
427 $vminor = strval($regs[2]);
428 $vrel = $regs[3];
4deb32f1 429 if($vrel[0] == '.') {
66239b65 430 $vrel = strval(substr($vrel, 1));
431 }
432 if($vrel[0] == 'b' || $vrel[0] == 'B') {
433 $vrel = - strval(substr($vrel, 1));
434 }
435 if($vrel[0] == 'r' || $vrel[0] == 'R') {
436 $vrel = - strval(substr($vrel, 2))/10;
437 }
438
439 /* Compare major version. */
440 if ($vmajor < $major) { return false; }
441 if ($vmajor > $major) { return true; }
442
443 /* Major is the same. Compare minor. */
444 if ($vminor < $minor) { return false; }
445 if ($vminor > $minor) { return true; }
446
447 /* Major and minor is the same as the required one. Compare release */
4deb32f1 448 if ($vrel >= 0 && $release >= 0) { /* Neither are beta */
66239b65 449 if($vrel < $release) return false;
4deb32f1 450 } else if($vrel >= 0 && $release < 0) { /* This is not beta, required is beta */
66239b65 451 return true;
4deb32f1 452 } else if($vrel < 0 && $release >= 0){ /* This is beta, require not beta */
66239b65 453 return false;
4deb32f1 454 } else { /* Both are beta */
66239b65 455 if($vrel > $release) return false;
456 }
457
458 return true;
459}
9374671f 460
66239b65 461/**
462 * Returns a string showing the size of the message/attachment.
463 */
464function show_readable_size($bytes) {
465 $bytes /= 1024;
466 $type = 'k';
467
468 if ($bytes / 1024 > 1) {
469 $bytes /= 1024;
470 $type = 'm';
471 }
472
473 if ($bytes < 10) {
474 $bytes *= 10;
475 settype($bytes, 'integer');
476 $bytes /= 10;
477 } else {
478 settype($bytes, 'integer');
479 }
480
481 return $bytes . '<small>&nbsp;' . $type . '</small>';
482}
9374671f 483
66239b65 484/**
485 * Generates a random string from the caracter set you pass in
486 *
487 * Flags:
488 * 1 = add lowercase a-z to $chars
489 * 2 = add uppercase A-Z to $chars
490 * 4 = add numbers 0-9 to $chars
491 */
9374671f 492
66239b65 493function GenerateRandomString($size, $chars, $flags = 0) {
494 if ($flags & 0x1) {
495 $chars .= 'abcdefghijklmnopqrstuvwxyz';
496 }
497 if ($flags & 0x2) {
498 $chars .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
499 }
500 if ($flags & 0x4) {
501 $chars .= '0123456789';
502 }
503
504 if (($size < 1) || (strlen($chars) < 1)) {
505 return '';
506 }
ff4f08ff 507
4deb32f1 508 sq_mt_randomize(); /* Initialize the random number generator */
ff4f08ff 509
4deb32f1 510 $String = '';
ff4f08ff 511 $j = strlen( $chars ) - 1;
66239b65 512 while (strlen($String) < $size) {
ff4f08ff 513 $String .= $chars{mt_rand(0, $j)};
66239b65 514 }
ff4f08ff 515
66239b65 516 return $String;
517}
9374671f 518
66239b65 519function quoteIMAP($str) {
520 return ereg_replace('(["\\])', '\\\\1', $str);
521}
1899535f 522
66239b65 523/**
524 * Trims every element in the array
525 */
526function TrimArray(&$array) {
527 foreach ($array as $k => $v) {
528 global $$k;
529 if (is_array($$k)) {
530 foreach ($$k as $k2 => $v2) {
531 $$k[$k2] = substr($v2, 1);
23d6bd09 532 }
66239b65 533 } else {
534 $$k = substr($v, 1);
23d6bd09 535 }
66239b65 536
4deb32f1 537 /* Re-assign back to array. */
66239b65 538 $array[$k] = $$k;
539 }
540}
23d6bd09 541
66239b65 542/**
543 * Removes slashes from every element in the array
544 */
545function RemoveSlashes(&$array) {
546 foreach ($array as $k => $v) {
547 global $$k;
548 if (is_array($$k)) {
549 foreach ($$k as $k2 => $v2) {
550 $newArray[stripslashes($k2)] = stripslashes($v2);
551 }
552 $$k = $newArray;
553 } else {
554 $$k = stripslashes($v);
23d6bd09 555 }
66239b65 556
4deb32f1 557 /* Re-assign back to the array. */
66239b65 558 $array[$k] = $$k;
23d6bd09 559 }
66239b65 560}
23d6bd09 561
43fdb2a4 562$PHP_SELF = php_self();
563
97b1248c 564?>