Tweaked wrapping a little more.
[squirrelmail.git] / functions / strings.php
1 <?php
2
3 /**
4 * strings.php
5 *
6 * Copyright (c) 1999-2004 The SquirrelMail Project Team
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 * @version $Id$
13 * @package squirrelmail
14 */
15
16 /**
17 * SquirrelMail version number -- DO NOT CHANGE
18 */
19 global $version;
20 $version = '1.5.1 [CVS]';
21
22 /**
23 * SquirrelMail internal version number -- DO NOT CHANGE
24 * $sm_internal_version = array (release, major, minor)
25 */
26 global $SQM_INTERNAL_VERSION;
27 $SQM_INTERNAL_VERSION = array(1,5,1);
28
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 */
34 require_once(SM_PATH . 'functions/global.php');
35
36 /**
37 * Appends citation markers to the string.
38 * Also appends a trailing space.
39 *
40 * @author Justus Pendleton
41 *
42 * @param string str The string to append to
43 * @param int citeLevel the number of markers to append
44 * @return null
45 */
46 function sqMakeCite (&$str, $citeLevel) {
47 for ($i = 0; $i < $citeLevel; $i++) {
48 $str .= '>';
49 }
50 if ($citeLevel != 0) {
51 $str .= ' ';
52 }
53 }
54
55 /**
56 * Create a newline in the string, adding citation
57 * markers to the newline as necessary.
58 *
59 * @author Justus Pendleton
60 *
61 * @param string str the string to make a newline in
62 * @param int citeLevel the citation level the newline is at
63 * @param int column starting column of the newline
64 * @return null
65 */
66 function sqMakeNewLine (&$str, $citeLevel, &$column) {
67 $str .= "\n";
68 $column = 0;
69 if ($citeLevel > 0) {
70 sqMakeCite ($str, $citeLevel);
71 $column = $citeLevel + 1;
72 } else {
73 $column = 0;
74 }
75 }
76
77 /**
78 * Checks for spaces in strings - only used if PHP doesn't have native ctype support
79 *
80 * @author Tomas Kuliavas
81 *
82 * You might be able to rewrite the function by adding short evaluation form.
83 *
84 * possible problems:
85 * - iso-2022-xx charsets - hex 20 might be part of other symbol. I might
86 * be wrong. 0x20 is not used in iso-2022-jp. I haven't checked iso-2022-kr
87 * and iso-2022-cn mappings.
88 *
89 * - no-break space (&nbsp;) - it is 8bit symbol, that depends on charset.
90 * there are at least three different charset groups that have nbsp in
91 * different places.
92 *
93 * I don't see any charset/nbsp options in php ctype either.
94 *
95 * @param string $string tested string
96 * @return bool true when only whitespace symbols are present in test string
97 */
98 function sm_ctype_space($string) {
99 if ( preg_match('/^[\x09-\x0D]|^\x20/', $string) || $string=='') {
100 return true;
101 } else {
102 return false;
103 }
104 }
105
106 /**
107 * Wraps text at $wrap characters. While sqWordWrap takes
108 * a single line of text and wraps it, this function works
109 * on the entire corpus at once, this allows it to be a little
110 * bit smarter and when and how to wrap.
111 *
112 * @author Justus Pendleton
113 *
114 * @param string body the entire body of text
115 * @param int wrap the maximum line length
116 * @return string the wrapped text
117 */
118 function &sqBodyWrap (&$body, $wrap) {
119 //check for ctype support, and fake it if it doesn't exist
120 if (!function_exists('ctype_space')) {
121 function ctype_space ($string) {
122 return sm_ctype_space($string);
123 }
124 }
125
126 // the newly wrapped text
127 $outString = '';
128 // current column since the last newline in the outstring
129 $outStringCol = 0;
130 $length = strlen($body);
131 // where we are in the original string
132 $pos = 0;
133 // the number of >>> citation markers we are currently at
134 $citeLevel = 0;
135
136 // the main loop, whenever we start a newline of input text
137 // we start from here
138 while ($pos < $length) {
139 // we're at the beginning of a line, get the new cite level
140 $newCiteLevel = 0;
141
142 while (($pos < $length) && ($body{$pos} == '>')) {
143 $newCiteLevel++;
144 $pos++;
145
146 // skip over any spaces interleaved among the cite markers
147 while (($pos < $length) && ($body{$pos} == ' ')) {
148
149 $pos++;
150
151 }
152 if ($pos >= $length) {
153 break;
154 }
155 }
156
157 // special case: if this is a blank line then maintain it
158 // (i.e. try to preserve original paragraph breaks)
159 // unless they occur at the very beginning of the text
160 if (($body{$pos} == "\n" ) && (strlen($outString) != 0)) {
161 $outStringLast = $outString{strlen($outString) - 1};
162 if ($outStringLast != "\n") {
163 $outString .= "\n";
164 }
165 sqMakeCite ($outString, $newCiteLevel);
166 $outString .= "\n";
167 $pos++;
168 $outStringCol = 0;
169 continue;
170 }
171
172 // if the cite level has changed, then start a new line
173 // with the new cite level.
174 if (($citeLevel != $newCiteLevel) && ($pos > ($newCiteLevel + 1)) && ($outStringCol != 0)) {
175 sqMakeNewLine ($outString, 0, $outStringCol);
176 }
177
178 $citeLevel = $newCiteLevel;
179
180 // prepend the quote level if necessary
181 if ($outStringCol == 0) {
182 sqMakeCite ($outString, $citeLevel);
183 // if we added a citation then move the column
184 // out by citelevel + 1 (the cite markers + the space)
185 $outStringCol = $citeLevel + ($citeLevel ? 1 : 0);
186 } else if ($outStringCol > $citeLevel) {
187 // not a cite and we're not at the beginning of a line
188 // in the output. add a space to separate the new text
189 // from previous text.
190 $outString .= ' ';
191 $outStringCol++;
192 }
193
194 // find the next newline -- we don't want to go further than that
195 $nextNewline = strpos ($body, "\n", $pos);
196 if ($nextNewline === FALSE) {
197 $nextNewline = $length;
198 }
199
200 // Don't wrap unquoted lines at all. For now the textarea
201 // will work fine for this. Maybe revisit this later though
202 // (for completeness more than anything else, I think)
203 if ($citeLevel == 0) {
204 $outString .= substr ($body, $pos, ($nextNewline - $pos));
205 $outStringCol = $nextNewline - $pos;
206 if ($nextNewline != $length) {
207 sqMakeNewLine ($outString, 0, $outStringCol);
208 }
209 $pos = $nextNewline + 1;
210 continue;
211 }
212 /**
213 * Set this to false to stop appending short strings to previous lines
214 */
215 $smartwrap = true;
216
217 // inner loop, (obviously) handles wrapping up to
218 // the next newline
219 while ($pos < $nextNewline) {
220 // skip over initial spaces
221 while (($pos < $nextNewline) && (ctype_space ($body{$pos}))) {
222 $pos++;
223 }
224
225
226 // if this is a short line then just append it and continue outer loop
227 if (($outStringCol + $nextNewline - $pos) <= ($wrap - $citeLevel - 1) ) {
228 // if this is the final line in the input string then include
229 // any trailing newlines
230 // echo substr($body,$pos,$wrap). "<br />";
231 if (($nextNewline + 1 == $length) && ($body{$nextNewline} == "\n")) {
232 $nextNewline++;
233 }
234
235 // trim trailing spaces
236 $lastRealChar = $nextNewline;
237 while (($lastRealChar > $pos && $lastRealChar < $length) && (ctype_space ($body{$lastRealChar}))) {
238 $lastRealChar--;
239 }
240
241 // decide if appending the short string is what we want
242 if (($nextNewline < $length && $body{$nextNewline} == "\n") &&
243 isset($lastRealChar)) {
244
245 //check the first word:
246 $mypos = $nextNewline+1;
247 while (($mypos < $length) && ($body{$mypos} == '>')) {
248 $mypos++;
249 // skip over any spaces interleaved among the cite markers
250 while (($mypos < $length) && ($body{$mypos} == ' ')) {
251 $mypos++;
252 }
253 }
254 /*
255 $ldnspacecnt = 0;
256 if ($mypos == $nextNewline+1) {
257 while (($mypos < $length) && ($body{$mypos} == ' ')) {
258 $ldnspacecnt++;
259 }
260 }
261 */
262
263 $firstword = substr($body,$mypos,strpos($body,' ',$mypos) - $mypos);
264
265 //if ($dowrap || $ldnspacecnt > 1 || ($firstword && (
266 if (!$smartwrap || $firstword && (
267 $firstword{0} == '-' ||
268 $firstword{0} == '+' ||
269 $firstword{0} == '*' ||
270 $firstword{0} == strtoupper($firstword{0}) ||
271 strpos($firstword,':'))) {
272 $outString .= substr($body,$pos,($lastRealChar - $pos+1));
273 $outStringCol += ($lastRealChar - $pos);
274 sqMakeNewLine($outString,$citeLevel,$outStringCol);
275 $nextNewline++;
276 $pos = $nextNewline;
277 $outStringCol--;
278 continue;
279 }
280
281 }
282
283 $outString .= substr ($body, $pos, ($lastRealChar - $pos + 1));
284 $outStringCol += ($lastRealChar - $pos);
285 $pos = $nextNewline + 1;
286 continue;
287 }
288
289 $eol = $pos + $wrap - $citeLevel - $outStringCol;
290 // eol is the tentative end of line.
291 // look backwards for there for a whitespace to break at.
292 // if it's already less than our current position then
293 // our current line is already too long, break immediately
294 // and restart outer loop
295 if ($eol <= $pos) {
296 sqMakeNewLine ($outString, $citeLevel, $outStringCol);
297 continue;
298 }
299
300 // start looking backwards for whitespace to break at.
301 $breakPoint = $eol;
302 while (($breakPoint > $pos) && (! ctype_space ($body{$breakPoint}))) {
303 $breakPoint--;
304 }
305
306 // if we didn't find a breakpoint by looking backward then we
307 // need to figure out what to do about that
308 if ($breakPoint == $pos) {
309 // if we are not at the beginning then end this line
310 // and start a new loop
311 if ($outStringCol > ($citeLevel + 1)) {
312 sqMakeNewLine ($outString, $citeLevel, $outStringCol);
313 continue;
314 } else {
315 // just hard break here. most likely we are breaking
316 // a really long URL. could also try searching
317 // forward for a break point, which is what Mozilla
318 // does. don't bother for now.
319 $breakPoint = $eol;
320 }
321 }
322
323 // special case: maybe we should have wrapped last
324 // time. if the first breakpoint here makes the
325 // current line too long and there is already text on
326 // the current line, break and loop again if at
327 // beginning of current line, don't force break
328 $SLOP = 6;
329 if ((($outStringCol + ($breakPoint - $pos)) > ($wrap + $SLOP)) && ($outStringCol > ($citeLevel + 1))) {
330 sqMakeNewLine ($outString, $citeLevel, $outStringCol);
331 continue;
332 }
333
334 // skip newlines or whitespace at the beginning of the string
335 $substring = substr ($body, $pos, ($breakPoint - $pos));
336 $substring = rtrim ($substring); // do rtrim and ctype_space have the same ideas about whitespace?
337 $outString .= $substring;
338 $outStringCol += strlen ($substring);
339 // advance past the whitespace which caused the wrap
340 $pos = $breakPoint;
341 while (($pos < $length) && (ctype_space ($body{$pos}))) {
342 $pos++;
343 }
344 if ($pos < $length) {
345 sqMakeNewLine ($outString, $citeLevel, $outStringCol);
346 }
347 }
348 }
349
350 return $outString;
351 }
352
353 /**
354 * Wraps text at $wrap characters
355 *
356 * Has a problem with special HTML characters, so call this before
357 * you do character translation.
358 *
359 * Specifically, &#039 comes up as 5 characters instead of 1.
360 * This should not add newlines to the end of lines.
361 *
362 * @param string line the line of text to wrap, by ref
363 * @param int wrap the maximum line lenth
364 * @return void
365 */
366 function sqWordWrap(&$line, $wrap) {
367 global $languages, $squirrelmail_language;
368
369 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
370 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
371 if (mb_detect_encoding($line) != 'ASCII') {
372 $line = $languages[$squirrelmail_language]['XTRA_CODE']('wordwrap', $line, $wrap);
373 return;
374 }
375 }
376
377 ereg("^([\t >]*)([^\t >].*)?$", $line, $regs);
378 $beginning_spaces = $regs[1];
379 if (isset($regs[2])) {
380 $words = explode(' ', $regs[2]);
381 } else {
382 $words = '';
383 }
384
385 $i = 0;
386 $line = $beginning_spaces;
387
388 while ($i < count($words)) {
389 /* Force one word to be on a line (minimum) */
390 $line .= $words[$i];
391 $line_len = strlen($beginning_spaces) + strlen($words[$i]) + 2;
392 if (isset($words[$i + 1]))
393 $line_len += strlen($words[$i + 1]);
394 $i ++;
395
396 /* Add more words (as long as they fit) */
397 while ($line_len < $wrap && $i < count($words)) {
398 $line .= ' ' . $words[$i];
399 $i++;
400 if (isset($words[$i]))
401 $line_len += strlen($words[$i]) + 1;
402 else
403 $line_len += 1;
404 }
405
406 /* Skip spaces if they are the first thing on a continued line */
407 while (!isset($words[$i]) && $i < count($words)) {
408 $i ++;
409 }
410
411 /* Go to the next line if we have more to process */
412 if ($i < count($words)) {
413 $line .= "\n";
414 }
415 }
416 }
417
418 /**
419 * Does the opposite of sqWordWrap()
420 * @param string body the text to un-wordwrap
421 * @return void
422 */
423 function sqUnWordWrap(&$body) {
424 global $squirrelmail_language;
425
426 if ($squirrelmail_language == 'ja_JP') {
427 return;
428 }
429
430 $lines = explode("\n", $body);
431 $body = '';
432 $PreviousSpaces = '';
433 $cnt = count($lines);
434 for ($i = 0; $i < $cnt; $i ++) {
435 preg_match("/^([\t >]*)([^\t >].*)?$/", $lines[$i], $regs);
436 $CurrentSpaces = $regs[1];
437 if (isset($regs[2])) {
438 $CurrentRest = $regs[2];
439 } else {
440 $CurrentRest = '';
441 }
442
443 if ($i == 0) {
444 $PreviousSpaces = $CurrentSpaces;
445 $body = $lines[$i];
446 } else if (($PreviousSpaces == $CurrentSpaces) /* Do the beginnings match */
447 && (strlen($lines[$i - 1]) > 65) /* Over 65 characters long */
448 && strlen($CurrentRest)) { /* and there's a line to continue with */
449 $body .= ' ' . $CurrentRest;
450 } else {
451 $body .= "\n" . $lines[$i];
452 $PreviousSpaces = $CurrentSpaces;
453 }
454 }
455 $body .= "\n";
456 }
457
458 /**
459 * If $haystack is a full mailbox name and $needle is the mailbox
460 * separator character, returns the last part of the mailbox name.
461 *
462 * @param string haystack full mailbox name to search
463 * @param string needle the mailbox separator character
464 * @return string the last part of the mailbox name
465 */
466 function readShortMailboxName($haystack, $needle) {
467
468 if ($needle == '') {
469 $elem = $haystack;
470 } else {
471 $parts = explode($needle, $haystack);
472 $elem = array_pop($parts);
473 while ($elem == '' && count($parts)) {
474 $elem = array_pop($parts);
475 }
476 }
477 return( $elem );
478 }
479
480 /**
481 * php_self
482 *
483 * Creates an URL for the page calling this function, using either the PHP global
484 * REQUEST_URI, or the PHP global PHP_SELF with QUERY_STRING added.
485 *
486 * @return string the complete url for this page
487 */
488 function php_self () {
489 if ( sqgetGlobalVar('REQUEST_URI', $req_uri, SQ_SERVER) && !empty($req_uri) ) {
490 return $req_uri;
491 }
492
493 if ( sqgetGlobalVar('PHP_SELF', $php_self, SQ_SERVER) && !empty($php_self) ) {
494
495 // need to add query string to end of PHP_SELF to match REQUEST_URI
496 //
497 if ( sqgetGlobalVar('QUERY_STRING', $query_string, SQ_SERVER) && !empty($query_string) ) {
498 $php_self .= '?' . $query_string;
499 }
500
501 return $php_self;
502 }
503
504 return '';
505 }
506
507
508 /**
509 * get_location
510 *
511 * Determines the location to forward to, relative to your server.
512 * This is used in HTTP Location: redirects.
513 * If this doesnt work correctly for you (although it should), you can
514 * remove all this code except the last two lines, and have it return
515 * the right URL for your site, something like:
516 *
517 * http://www.example.com/squirrelmail/
518 *
519 * @return string the base url for this SquirrelMail installation
520 */
521 function get_location () {
522
523 global $imap_server_type;
524
525 /* Get the path, handle virtual directories */
526 if(strpos(php_self(), '?')) {
527 $path = substr(php_self(), 0, strpos(php_self(), '?'));
528 } else {
529 $path = php_self();
530 }
531 $path = substr($path, 0, strrpos($path, '/'));
532 if ( sqgetGlobalVar('sq_base_url', $full_url, SQ_SESSION) ) {
533 return $full_url . $path;
534 }
535
536 /* Check if this is a HTTPS or regular HTTP request. */
537 $proto = 'http://';
538
539 /*
540 * If you have 'SSLOptions +StdEnvVars' in your apache config
541 * OR if you have HTTPS=on in your HTTP_SERVER_VARS
542 * OR if you are on port 443
543 */
544 $getEnvVar = getenv('HTTPS');
545 if ((isset($getEnvVar) && !strcasecmp($getEnvVar, 'on')) ||
546 (sqgetGlobalVar('HTTPS', $https_on, SQ_SERVER) && !strcasecmp($https_on, 'on')) ||
547 (sqgetGlobalVar('SERVER_PORT', $server_port, SQ_SERVER) && $server_port == 443)) {
548 $proto = 'https://';
549 }
550
551 /* Get the hostname from the Host header or server config. */
552 if ( !sqgetGlobalVar('HTTP_HOST', $host, SQ_SERVER) || empty($host) ) {
553 if ( !sqgetGlobalVar('SERVER_NAME', $host, SQ_SERVER) || empty($host) ) {
554 $host = '';
555 }
556 }
557
558 $port = '';
559 if (! strstr($host, ':')) {
560 if (sqgetGlobalVar('SERVER_PORT', $server_port, SQ_SERVER)) {
561 if (($server_port != 80 && $proto == 'http://') ||
562 ($server_port != 443 && $proto == 'https://')) {
563 $port = sprintf(':%d', $server_port);
564 }
565 }
566 }
567
568 /* this is a workaround for the weird macosx caching that
569 causes Apache to return 16080 as the port number, which causes
570 SM to bail */
571
572 if ($imap_server_type == 'macosx' && $port == ':16080') {
573 $port = '';
574 }
575
576 /* Fallback is to omit the server name and use a relative */
577 /* URI, although this is not RFC 2616 compliant. */
578 $full_url = ($host ? $proto . $host . $port : '');
579 sqsession_register($full_url, 'sq_base_url');
580 return $full_url . $path;
581 }
582
583
584 /**
585 * Encrypts password
586 *
587 * These functions are used to encrypt the password before it is
588 * stored in a cookie. The encryption key is generated by
589 * OneTimePadCreate();
590 *
591 * @param string string the (password)string to encrypt
592 * @param string epad the encryption key
593 * @return string the base64-encoded encrypted password
594 */
595 function OneTimePadEncrypt ($string, $epad) {
596 $pad = base64_decode($epad);
597 $encrypted = '';
598 for ($i = 0; $i < strlen ($string); $i++) {
599 $encrypted .= chr (ord($string[$i]) ^ ord($pad[$i]));
600 }
601
602 return base64_encode($encrypted);
603 }
604
605 /**
606 * Decrypts a password from the cookie
607 *
608 * Decrypts a password from the cookie, encrypted by OneTimePadEncrypt.
609 * This uses the encryption key that is stored in the session.
610 *
611 * @param string string the string to decrypt
612 * @param string epad the encryption key from the session
613 * @return string the decrypted password
614 */
615 function OneTimePadDecrypt ($string, $epad) {
616 $pad = base64_decode($epad);
617 $encrypted = base64_decode ($string);
618 $decrypted = '';
619 for ($i = 0; $i < strlen ($encrypted); $i++) {
620 $decrypted .= chr (ord($encrypted[$i]) ^ ord($pad[$i]));
621 }
622
623 return $decrypted;
624 }
625
626
627 /**
628 * Randomizes the mt_rand() function.
629 *
630 * Toss this in strings or integers and it will seed the generator
631 * appropriately. With strings, it is better to get them long.
632 * Use md5() to lengthen smaller strings.
633 *
634 * @param mixed val a value to seed the random number generator
635 * @return void
636 */
637 function sq_mt_seed($Val) {
638 /* if mt_getrandmax() does not return a 2^n - 1 number,
639 this might not work well. This uses $Max as a bitmask. */
640 $Max = mt_getrandmax();
641
642 if (! is_int($Val)) {
643 $Val = crc32($Val);
644 }
645
646 if ($Val < 0) {
647 $Val *= -1;
648 }
649
650 if ($Val = 0) {
651 return;
652 }
653
654 mt_srand(($Val ^ mt_rand(0, $Max)) & $Max);
655 }
656
657
658 /**
659 * Init random number generator
660 *
661 * This function initializes the random number generator fairly well.
662 * It also only initializes it once, so you don't accidentally get
663 * the same 'random' numbers twice in one session.
664 *
665 * @return void
666 */
667 function sq_mt_randomize() {
668 static $randomized;
669
670 if ($randomized) {
671 return;
672 }
673
674 /* Global. */
675 sqgetGlobalVar('REMOTE_PORT', $remote_port, SQ_SERVER);
676 sqgetGlobalVar('REMOTE_ADDR', $remote_addr, SQ_SERVER);
677 sq_mt_seed((int)((double) microtime() * 1000000));
678 sq_mt_seed(md5($remote_port . $remote_addr . getmypid()));
679
680 /* getrusage */
681 if (function_exists('getrusage')) {
682 /* Avoid warnings with Win32 */
683 $dat = @getrusage();
684 if (isset($dat) && is_array($dat)) {
685 $Str = '';
686 foreach ($dat as $k => $v)
687 {
688 $Str .= $k . $v;
689 }
690 sq_mt_seed(md5($Str));
691 }
692 }
693
694 if(sqgetGlobalVar('UNIQUE_ID', $unique_id, SQ_SERVER)) {
695 sq_mt_seed(md5($unique_id));
696 }
697
698 $randomized = 1;
699 }
700
701 /**
702 * Creates encryption key
703 *
704 * Creates an encryption key for encrypting the password stored in the cookie.
705 * The encryption key itself is stored in the session.
706 *
707 * @param int length optional, length of the string to generate
708 * @return string the encryption key
709 */
710 function OneTimePadCreate ($length=100) {
711 sq_mt_randomize();
712
713 $pad = '';
714 for ($i = 0; $i < $length; $i++) {
715 $pad .= chr(mt_rand(0,255));
716 }
717
718 return base64_encode($pad);
719 }
720
721 /**
722 * Returns a string showing the size of the message/attachment.
723 *
724 * @param int bytes the filesize in bytes
725 * @return string the filesize in human readable format
726 */
727 function show_readable_size($bytes) {
728 $bytes /= 1024;
729 $type = 'k';
730
731 if ($bytes / 1024 > 1) {
732 $bytes /= 1024;
733 $type = 'M';
734 }
735
736 if ($bytes < 10) {
737 $bytes *= 10;
738 settype($bytes, 'integer');
739 $bytes /= 10;
740 } else {
741 settype($bytes, 'integer');
742 }
743
744 return $bytes . '<small>&nbsp;' . $type . '</small>';
745 }
746
747 /**
748 * Generates a random string from the caracter set you pass in
749 *
750 * @param int size the size of the string to generate
751 * @param string chars a string containing the characters to use
752 * @param int flags a flag to add a specific set to the characters to use:
753 * Flags:
754 * 1 = add lowercase a-z to $chars
755 * 2 = add uppercase A-Z to $chars
756 * 4 = add numbers 0-9 to $chars
757 * @return string the random string
758 */
759 function GenerateRandomString($size, $chars, $flags = 0) {
760 if ($flags & 0x1) {
761 $chars .= 'abcdefghijklmnopqrstuvwxyz';
762 }
763 if ($flags & 0x2) {
764 $chars .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
765 }
766 if ($flags & 0x4) {
767 $chars .= '0123456789';
768 }
769
770 if (($size < 1) || (strlen($chars) < 1)) {
771 return '';
772 }
773
774 sq_mt_randomize(); /* Initialize the random number generator */
775
776 $String = '';
777 $j = strlen( $chars ) - 1;
778 while (strlen($String) < $size) {
779 $String .= $chars{mt_rand(0, $j)};
780 }
781
782 return $String;
783 }
784
785 /**
786 * Escapes special characters for use in IMAP commands.
787 *
788 * @param string the string to escape
789 * @return string the escaped string
790 */
791 function quoteimap($str) {
792 return preg_replace("/([\"\\\\])/", "\\\\$1", $str);
793 }
794
795 /**
796 * Trims array
797 *
798 * Trims every element in the array, ie. remove the first char of each element
799 * @param array array the array to trim
800 */
801 function TrimArray(&$array) {
802 foreach ($array as $k => $v) {
803 global $$k;
804 if (is_array($$k)) {
805 foreach ($$k as $k2 => $v2) {
806 $$k[$k2] = substr($v2, 1);
807 }
808 } else {
809 $$k = substr($v, 1);
810 }
811
812 /* Re-assign back to array. */
813 $array[$k] = $$k;
814 }
815 }
816
817 /**
818 * Create compose link
819 *
820 * Returns a link to the compose-page, taking in consideration
821 * the compose_in_new and javascript settings.
822 * @param string url the URL to the compose page
823 * @param string text the link text, default "Compose"
824 * @return string a link to the compose page
825 */
826 function makeComposeLink($url, $text = null, $target='')
827 {
828 global $compose_new_win,$javascript_on;
829
830 if(!$text) {
831 $text = _("Compose");
832 }
833
834
835 // if not using "compose in new window", make
836 // regular link and be done with it
837 if($compose_new_win != '1') {
838 return makeInternalLink($url, $text, $target);
839 }
840
841
842 // build the compose in new window link...
843
844
845 // if javascript is on, use onClick event to handle it
846 if($javascript_on) {
847 sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION);
848 return '<a href="javascript:void(0)" onclick="comp_in_new(\''.$base_uri.$url.'\')">'. $text.'</a>';
849 }
850
851
852 // otherwise, just open new window using regular HTML
853 return makeInternalLink($url, $text, '_blank');
854
855 }
856
857 /**
858 * Print variable
859 *
860 * sm_print_r($some_variable, [$some_other_variable [, ...]]);
861 *
862 * Debugging function - does the same as print_r, but makes sure special
863 * characters are converted to htmlentities first. This will allow
864 * values like <some@email.address> to be displayed.
865 * The output is wrapped in <<pre>> and <</pre>> tags.
866 *
867 * @return void
868 */
869 function sm_print_r() {
870 ob_start(); // Buffer output
871 foreach(func_get_args() as $var) {
872 print_r($var);
873 echo "\n";
874 }
875 $buffer = ob_get_contents(); // Grab the print_r output
876 ob_end_clean(); // Silently discard the output & stop buffering
877 print '<pre>';
878 print htmlentities($buffer);
879 print '</pre>';
880 }
881
882 /**
883 * version of fwrite which checks for failure
884 */
885 function sq_fwrite($fp, $string) {
886 // write to file
887 $count = @fwrite($fp,$string);
888 // the number of bytes written should be the length of the string
889 if($count != strlen($string)) {
890 return FALSE;
891 }
892
893 return $count;
894 }
895
896 /**
897 * sq_get_html_translation_table
898 *
899 * Returns the translation table used by sq_htmlentities()
900 *
901 * @param integer $table html translation table. Possible values (without quotes):
902 * <ul>
903 * <li>HTML_ENTITIES - full html entities table defined by charset</li>
904 * <li>HTML_SPECIALCHARS - html special characters table</li>
905 * </ul>
906 * @param integer $quote_style quote encoding style. Possible values (without quotes):
907 * <ul>
908 * <li>ENT_COMPAT - (default) encode double quotes</li>
909 * <li>ENT_NOQUOTES - don't encode double or single quotes</li>
910 * <li>ENT_QUOTES - encode double and single quotes</li>
911 * </ul>
912 * @param string $charset charset used for encoding. default to us-ascii, 'auto' uses $default_charset global value.
913 * @return array html translation array
914 */
915 function sq_get_html_translation_table($table,$quote_style=ENT_COMPAT,$charset='us-ascii') {
916 global $default_charset;
917
918 if ($table == HTML_SPECIALCHARS) $charset='us-ascii';
919
920 // Start array with ampersand
921 $sq_html_ent_table = array( "&" => '&amp;' );
922
923 // < and >
924 $sq_html_ent_table = array_merge($sq_html_ent_table,
925 array("<" => '&lt;',
926 ">" => '&gt;')
927 );
928 // double quotes
929 if ($quote_style == ENT_COMPAT)
930 $sq_html_ent_table = array_merge($sq_html_ent_table,
931 array("\"" => '&quot;')
932 );
933
934 // double and single quotes
935 if ($quote_style == ENT_QUOTES)
936 $sq_html_ent_table = array_merge($sq_html_ent_table,
937 array("\"" => '&quot;',
938 "'" => '&#39;')
939 );
940
941 if ($charset=='auto') $charset=$default_charset;
942
943 // add entities that depend on charset
944 switch($charset){
945 case 'iso-8859-1':
946 include_once(SM_PATH . 'functions/htmlentities/iso-8859-1.php');
947 break;
948 case 'utf-8':
949 include_once(SM_PATH . 'functions/htmlentities/utf-8.php');
950 break;
951 case 'us-ascii':
952 default:
953 break;
954 }
955 // return table
956 return $sq_html_ent_table;
957 }
958
959 /**
960 * sq_htmlentities
961 *
962 * Convert all applicable characters to HTML entities.
963 * Minimal php requirement - v.4.0.5
964 *
965 * @param string $string string that has to be sanitized
966 * @param integer $quote_style quote encoding style. Possible values (without quotes):
967 * <ul>
968 * <li>ENT_COMPAT - (default) encode double quotes</li>
969 * <li>ENT_NOQUOTES - don't encode double or single quotes</li>
970 * <li>ENT_QUOTES - encode double and single quotes</li>
971 * </ul>
972 * @param string $charset charset used for encoding. defaults to 'us-ascii', 'auto' uses $default_charset global value.
973 * @return string sanitized string
974 */
975 function sq_htmlentities($string,$quote_style=ENT_COMPAT,$charset='us-ascii') {
976 // get translation table
977 $sq_html_ent_table=sq_get_html_translation_table(HTML_ENTITIES,$quote_style,$charset);
978 // convert characters
979 return str_replace(array_keys($sq_html_ent_table),array_values($sq_html_ent_table),$string);
980 }
981
982 $PHP_SELF = php_self();
983 ?>