phpdocumentor basic preparation, continued
[squirrelmail.git] / functions / strings.php
CommitLineData
59177427 1<?php
7350889b 2
f1ca21bd 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$
d6c32258 13 * @package squirrelmail
35586184 14 */
9374671f 15
35586184 16/**
17 * SquirrelMail version number -- DO NOT CHANGE
18 */
19global $version;
87d8c725 20$version = '1.5.0 [CVS]';
d068c0ec 21
f1ca21bd 22/**
97bdc607 23 * SquirrelMail internal version number -- DO NOT CHANGE
24 * $sm_internal_version = array (release, major, minor)
25 */
0567e4d5 26global $SQM_INTERNAL_VERSION;
87d8c725 27$SQM_INTERNAL_VERSION = array(1,5,0);
28
87d8c725 29/**
30 * There can be a circular issue with includes, where the $version string is
31 * referenced by the include of global.php, etc. before it's defined.
32 * For that reason, bring in global.php AFTER we define the version strings.
33 */
34require_once(SM_PATH . 'functions/global.php');
97bdc607 35
5cc0b70e 36/**
37 * Wraps text at $wrap characters
38 *
39 * Has a problem with special HTML characters, so call this before
40 * you do character translation.
41 *
42 * Specifically, &#039 comes up as 5 characters instead of 1.
43 * This should not add newlines to the end of lines.
44 */
45function sqWordWrap(&$line, $wrap) {
e842b215 46 global $languages, $squirrelmail_language;
47
48 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
49 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
50 if (mb_detect_encoding($line) != 'ASCII') {
51 $line = $languages[$squirrelmail_language]['XTRA_CODE']('wordwrap', $line, $wrap);
52 return;
53 }
54 }
55
5cc0b70e 56 ereg("^([\t >]*)([^\t >].*)?$", $line, $regs);
57 $beginning_spaces = $regs[1];
58 if (isset($regs[2])) {
59 $words = explode(' ', $regs[2]);
60 } else {
61 $words = '';
62 }
f1ca21bd 63
5cc0b70e 64 $i = 0;
65 $line = $beginning_spaces;
f1ca21bd 66
5cc0b70e 67 while ($i < count($words)) {
68 /* Force one word to be on a line (minimum) */
69 $line .= $words[$i];
70 $line_len = strlen($beginning_spaces) + strlen($words[$i]) + 2;
71 if (isset($words[$i + 1]))
72 $line_len += strlen($words[$i + 1]);
73 $i ++;
f1ca21bd 74
5cc0b70e 75 /* Add more words (as long as they fit) */
76 while ($line_len < $wrap && $i < count($words)) {
77 $line .= ' ' . $words[$i];
78 $i++;
79 if (isset($words[$i]))
80 $line_len += strlen($words[$i]) + 1;
81 else
82 $line_len += 1;
83 }
f1ca21bd 84
5cc0b70e 85 /* Skip spaces if they are the first thing on a continued line */
86 while (!isset($words[$i]) && $i < count($words)) {
87 $i ++;
88 }
f1ca21bd 89
5cc0b70e 90 /* Go to the next line if we have more to process */
91 if ($i < count($words)) {
e0858036 92 $line .= "\n";
5cc0b70e 93 }
94 }
95}
96
341abbd6 97/**
98 * Does the opposite of sqWordWrap()
99 */
100function sqUnWordWrap(&$body) {
e842b215 101 global $squirrelmail_language;
f1ca21bd 102
e842b215 103 if ($squirrelmail_language == 'ja_JP') {
104 return;
105 }
106
341abbd6 107 $lines = explode("\n", $body);
108 $body = '';
109 $PreviousSpaces = '';
110 $cnt = count($lines);
111 for ($i = 0; $i < $cnt; $i ++) {
112 preg_match("/^([\t >]*)([^\t >].*)?$/", $lines[$i], $regs);
113 $CurrentSpaces = $regs[1];
114 if (isset($regs[2])) {
115 $CurrentRest = $regs[2];
1e4a4feb 116 } else {
f1ca21bd 117 $CurrentRest = '';
118 }
119
341abbd6 120 if ($i == 0) {
121 $PreviousSpaces = $CurrentSpaces;
122 $body = $lines[$i];
123 } else if (($PreviousSpaces == $CurrentSpaces) /* Do the beginnings match */
124 && (strlen($lines[$i - 1]) > 65) /* Over 65 characters long */
125 && strlen($CurrentRest)) { /* and there's a line to continue with */
126 $body .= ' ' . $CurrentRest;
127 } else {
128 $body .= "\n" . $lines[$i];
129 $PreviousSpaces = $CurrentSpaces;
130 }
131 }
132 $body .= "\n";
133}
134
66239b65 135/**
136 * If $haystack is a full mailbox name and $needle is the mailbox
137 * separator character, returns the last part of the mailbox name.
138 */
139function readShortMailboxName($haystack, $needle) {
97b1248c 140
66239b65 141 if ($needle == '') {
97b1248c 142 $elem = $haystack;
143 } else {
f1ca21bd 144 $parts = explode($needle, $haystack);
145 $elem = array_pop($parts);
146 while ($elem == '' && count($parts)) {
147 $elem = array_pop($parts);
148 }
66239b65 149 }
97b1248c 150 return( $elem );
66239b65 151}
3302d0d4 152
43fdb2a4 153function php_self () {
961ca3d8 154 if ( sqgetGlobalVar('REQUEST_URI', $req_uri, SQ_SERVER) && !empty($req_uri) ) {
155 return $req_uri;
43fdb2a4 156 }
f1ca21bd 157
961ca3d8 158 if ( sqgetGlobalVar('PHP_SELF', $php_self, SQ_SERVER) && !empty($php_self) ) {
f72f61d8 159
160 // need to add query string to end of PHP_SELF to match REQUEST_URI
161 //
162 if ( sqgetGlobalVar('QUERY_STRING', $query_string, SQ_SERVER) && !empty($query_string) ) {
163 $php_self .= '?' . $query_string;
164 }
165
961ca3d8 166 return $php_self;
f1ca21bd 167 }
168
961ca3d8 169 return '';
43fdb2a4 170}
171
172
66239b65 173/**
174 * This determines the location to forward to relative to your server.
175 * If this doesnt work correctly for you (although it should), you can
176 * remove all this code except the last two lines, and change the header()
177 * function to look something like this, customized to the location of
178 * SquirrelMail on your server:
179 *
180 * http://www.myhost.com/squirrelmail/src/login.php
181 */
182function get_location () {
f1ca21bd 183
961ca3d8 184 global $imap_server_type;
238703be 185
4deb32f1 186 /* Get the path, handle virtual directories */
f1ca21bd 187 if(strpos(php_self(), '?')) {
188 $path = substr(php_self(), 0, strpos(php_self(), '?'));
189 } else {
190 $path = php_self();
191 }
192 $path = substr($path, 0, strrpos($path, '/'));
238703be 193 if ( sqgetGlobalVar('sq_base_url', $full_url, SQ_SESSION) ) {
194 return $full_url . $path;
195 }
196
66239b65 197 /* Check if this is a HTTPS or regular HTTP request. */
198 $proto = 'http://';
f1ca21bd 199
66239b65 200 /*
201 * If you have 'SSLOptions +StdEnvVars' in your apache config
44827b4d 202 * OR if you have HTTPS=on in your HTTP_SERVER_VARS
66239b65 203 * OR if you are on port 443
204 */
205 $getEnvVar = getenv('HTTPS');
206 if ((isset($getEnvVar) && !strcasecmp($getEnvVar, 'on')) ||
961ca3d8 207 (sqgetGlobalVar('HTTPS', $https_on, SQ_SERVER) && !strcasecmp($https_on, 'on')) ||
208 (sqgetGlobalVar('SERVER_PORT', $server_port, SQ_SERVER) && $server_port == 443)) {
8a549df2 209 $proto = 'https://';
66239b65 210 }
f1ca21bd 211
4deb32f1 212 /* Get the hostname from the Host header or server config. */
961ca3d8 213 if ( !sqgetGlobalVar('HTTP_HOST', $host, SQ_SERVER) || empty($host) ) {
214 if ( !sqgetGlobalVar('SERVER_NAME', $host, SQ_SERVER) || empty($host) ) {
215 $host = '';
216 }
66239b65 217 }
f1ca21bd 218
66239b65 219 $port = '';
220 if (! strstr($host, ':')) {
961ca3d8 221 if (sqgetGlobalVar('SERVER_PORT', $server_port, SQ_SERVER)) {
f1ca21bd 222 if (($server_port != 80 && $proto == 'http://') ||
961ca3d8 223 ($server_port != 443 && $proto == 'https://')) {
224 $port = sprintf(':%d', $server_port);
66239b65 225 }
226 }
227 }
f1ca21bd 228
8de7f698 229 /* this is a workaround for the weird macosx caching that
230 causes Apache to return 16080 as the port number, which causes
231 SM to bail */
f1ca21bd 232
8de7f698 233 if ($imap_server_type == 'macosx' && $port == ':16080') {
234 $port = '';
235 }
f1ca21bd 236
238703be 237 /* Fallback is to omit the server name and use a relative */
238 /* URI, although this is not RFC 2616 compliant. */
239 $full_url = ($host ? $proto . $host . $port : '');
240 sqsession_register($full_url, 'sq_base_url');
241 return $full_url . $path;
66239b65 242}
dcaf2a49 243
9374671f 244
66239b65 245/**
246 * These functions are used to encrypt the passowrd before it is
247 * stored in a cookie.
248 */
249function OneTimePadEncrypt ($string, $epad) {
250 $pad = base64_decode($epad);
251 $encrypted = '';
252 for ($i = 0; $i < strlen ($string); $i++) {
253 $encrypted .= chr (ord($string[$i]) ^ ord($pad[$i]));
254 }
f1ca21bd 255
66239b65 256 return base64_encode($encrypted);
257}
258
259function OneTimePadDecrypt ($string, $epad) {
260 $pad = base64_decode($epad);
261 $encrypted = base64_decode ($string);
262 $decrypted = '';
263 for ($i = 0; $i < strlen ($encrypted); $i++) {
264 $decrypted .= chr (ord($encrypted[$i]) ^ ord($pad[$i]));
265 }
f1ca21bd 266
66239b65 267 return $decrypted;
268}
9374671f 269
9374671f 270
66239b65 271/**
272 * Randomize the mt_rand() function. Toss this in strings or integers
273 * and it will seed the generator appropriately. With strings, it is
274 * better to get them long. Use md5() to lengthen smaller strings.
275 */
276function sq_mt_seed($Val) {
4deb32f1 277 /* if mt_getrandmax() does not return a 2^n - 1 number,
278 this might not work well. This uses $Max as a bitmask. */
66239b65 279 $Max = mt_getrandmax();
f1ca21bd 280
66239b65 281 if (! is_int($Val)) {
66239b65 282 $Val = crc32($Val);
66239b65 283 }
f1ca21bd 284
66239b65 285 if ($Val < 0) {
286 $Val *= -1;
287 }
f1ca21bd 288
66239b65 289 if ($Val = 0) {
290 return;
291 }
f1ca21bd 292
66239b65 293 mt_srand(($Val ^ mt_rand(0, $Max)) & $Max);
294}
9374671f 295
9374671f 296
66239b65 297/**
298 * This function initializes the random number generator fairly well.
299 * It also only initializes it once, so you don't accidentally get
300 * the same 'random' numbers twice in one session.
301 */
302function sq_mt_randomize() {
66239b65 303 static $randomized;
f1ca21bd 304
66239b65 305 if ($randomized) {
306 return;
307 }
f1ca21bd 308
66239b65 309 /* Global. */
961ca3d8 310 sqgetGlobalVar('REMOTE_PORT', $remote_port, SQ_SERVER);
311 sqgetGlobalVar('REMOTE_ADDR', $remote_addr, SQ_SERVER);
66239b65 312 sq_mt_seed((int)((double) microtime() * 1000000));
961ca3d8 313 sq_mt_seed(md5($remote_port . $remote_addr . getmypid()));
f1ca21bd 314
66239b65 315 /* getrusage */
316 if (function_exists('getrusage')) {
4deb32f1 317 /* Avoid warnings with Win32 */
66239b65 318 $dat = @getrusage();
319 if (isset($dat) && is_array($dat)) {
821a8e9c 320 $Str = '';
321 foreach ($dat as $k => $v)
66239b65 322 {
323 $Str .= $k . $v;
324 }
821a8e9c 325 sq_mt_seed(md5($Str));
66239b65 326 }
327 }
f1ca21bd 328
961ca3d8 329 if(sqgetGlobalVar('UNIQUE_ID', $unique_id, SQ_SERVER)) {
330 sq_mt_seed(md5($unique_id));
0b97a708 331 }
f1ca21bd 332
66239b65 333 $randomized = 1;
334}
335
336function OneTimePadCreate ($length=100) {
337 sq_mt_randomize();
f1ca21bd 338
66239b65 339 $pad = '';
340 for ($i = 0; $i < $length; $i++) {
341 $pad .= chr(mt_rand(0,255));
342 }
f1ca21bd 343
66239b65 344 return base64_encode($pad);
345}
9374671f 346
66239b65 347/**
348 * Returns a string showing the size of the message/attachment.
349 */
350function show_readable_size($bytes) {
351 $bytes /= 1024;
352 $type = 'k';
f1ca21bd 353
66239b65 354 if ($bytes / 1024 > 1) {
355 $bytes /= 1024;
e5f1e71c 356 $type = 'M';
66239b65 357 }
f1ca21bd 358
66239b65 359 if ($bytes < 10) {
360 $bytes *= 10;
361 settype($bytes, 'integer');
362 $bytes /= 10;
363 } else {
364 settype($bytes, 'integer');
365 }
f1ca21bd 366
66239b65 367 return $bytes . '<small>&nbsp;' . $type . '</small>';
368}
9374671f 369
66239b65 370/**
371 * Generates a random string from the caracter set you pass in
372 *
373 * Flags:
374 * 1 = add lowercase a-z to $chars
375 * 2 = add uppercase A-Z to $chars
376 * 4 = add numbers 0-9 to $chars
377 */
9374671f 378
66239b65 379function GenerateRandomString($size, $chars, $flags = 0) {
380 if ($flags & 0x1) {
381 $chars .= 'abcdefghijklmnopqrstuvwxyz';
382 }
383 if ($flags & 0x2) {
384 $chars .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
385 }
386 if ($flags & 0x4) {
387 $chars .= '0123456789';
388 }
f1ca21bd 389
66239b65 390 if (($size < 1) || (strlen($chars) < 1)) {
391 return '';
392 }
ff4f08ff 393
4deb32f1 394 sq_mt_randomize(); /* Initialize the random number generator */
ff4f08ff 395
4deb32f1 396 $String = '';
ff4f08ff 397 $j = strlen( $chars ) - 1;
66239b65 398 while (strlen($String) < $size) {
ff4f08ff 399 $String .= $chars{mt_rand(0, $j)};
66239b65 400 }
ff4f08ff 401
66239b65 402 return $String;
403}
9374671f 404
fbb76d0e 405function quoteimap($str) {
66239b65 406 return ereg_replace('(["\\])', '\\\\1', $str);
407}
1899535f 408
66239b65 409/**
410 * Trims every element in the array
411 */
412function TrimArray(&$array) {
413 foreach ($array as $k => $v) {
414 global $$k;
415 if (is_array($$k)) {
416 foreach ($$k as $k2 => $v2) {
417 $$k[$k2] = substr($v2, 1);
23d6bd09 418 }
66239b65 419 } else {
420 $$k = substr($v, 1);
23d6bd09 421 }
f1ca21bd 422
4deb32f1 423 /* Re-assign back to array. */
66239b65 424 $array[$k] = $$k;
425 }
f1ca21bd 426}
23d6bd09 427
f72f61d8 428// Returns a link to the compose-page, taking in
429// consideration the compose_in_new and javascript
430// settings.
431//
d62c4938 432function makeComposeLink($url, $text = null)
433{
434 global $compose_new_win,$javascript_on;
435
436 if(!$text) {
437 $text = _("Compose");
438 }
439
f72f61d8 440
441 // if not using "compose in new window", make
442 // regular link and be done with it
443 //
d62c4938 444 if($compose_new_win != '1') {
445 return makeInternalLink($url, $text, 'right');
446 }
447
f72f61d8 448
449 //
450 // build the compose in new window link...
451 //
452
453
454 // if javascript is on, use onClick event to handle it
455 //
d62c4938 456 if($javascript_on) {
457 sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION);
458 return '<a href="javascript:void(0)" onclick="comp_in_new(\''.$base_uri.$url.'\')">'. $text.'</a>';
459 }
460
f72f61d8 461
462 // otherwise, just open new window using regular HTML
463 //
d62c4938 464 return makeInternalLink($url, $text, '_blank');
f72f61d8 465
d62c4938 466}
467
f1ca21bd 468/**
7fe09a30 469* sm_print_r($some_variable, [$some_other_variable [, ...]]);
50cc40fe 470* Debugging function - does the same as print_r, but makes sure special
471* characters are converted to htmlentities first. This will allow
472* values like <some@email.address> to be displayed.
473* The output is wrapped in <pre> and </pre> tags.
474*/
7fe09a30 475function sm_print_r() {
50cc40fe 476 ob_start(); // Buffer output
7fe09a30 477 foreach(func_get_args() as $var) {
478 print_r($var);
479 echo "\n";
480 }
50cc40fe 481 $buffer = ob_get_contents(); // Grab the print_r output
482 ob_end_clean(); // Silently discard the output & stop buffering
f1ca21bd 483 print '<pre>';
50cc40fe 484 print htmlentities($buffer);
f1ca21bd 485 print '</pre>';
50cc40fe 486}
487
43fdb2a4 488$PHP_SELF = php_self();
ef1932a4 489?>