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