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