made message highlighting not case sensative
[squirrelmail.git] / functions / strings.php
CommitLineData
59177427 1<?php
7ce342dc 2
d068c0ec 3 $strings_php = true;
4
3302d0d4 5 //*************************************************************************
6 // Count the number of occurances of $needle are in $haystack.
7 //*************************************************************************
8 function countCharInString($haystack, $needle) {
9 $len = strlen($haystack);
10 for ($i = 0; $i < $len; $i++) {
11 if ($haystack[$i] == $needle)
12 $count++;
13 }
14 return $count;
15 }
16
17 //*************************************************************************
18 // Read from the back of $haystack until $needle is found, or the begining
19 // of the $haystack is reached.
20 //*************************************************************************
21 function readShortMailboxName($haystack, $needle) {
91f999f6 22 if (substr($haystack, -1) == $needle)
23 $haystack = substr($haystack, 0, strlen($haystack) - 1);
24
d29aac0e 25 if (strrpos($haystack, $needle)) {
d92b6f31 26 $pos = strrpos($haystack, $needle) + 1;
27 $data = substr($haystack, $pos, strlen($haystack));
28 } else {
29 $data = $haystack;
3302d0d4 30 }
d92b6f31 31 return $data;
3302d0d4 32 }
33
8beafbbc 34 // Searches for the next position in a string minus white space
35 function next_pos_minus_white ($haystack, $pos) {
36 while (substr($haystack, $pos, 1) == " " ||
37 substr($haystack, $pos, 1) == "\t" ||
38 substr($haystack, $pos, 1) == "\n" ||
39 substr($haystack, $pos, 1) == "\r") {
40 if ($pos >= strlen($haystack))
41 return -1;
42 $pos++;
43 }
44 return $pos;
45 }
46
8467bf00 47 // Wraps text at $wrap characters
d76f6440 48 function sqWordWrap($passed, $wrap) {
a8648d75 49 $passed = str_replace("&gt;", ">", $passed);
50 $passed = str_replace("&lt;", "<", $passed);
51
8467bf00 52 $words = explode(" ", trim($passed));
53 $i = 0;
54 $line_len = strlen($words[$i])+1;
55 $line = "";
d68a3926 56 if (count($words) > 1) {
d76f6440 57 while ($i < count($words)) {
d68a3926 58 while ($line_len < $wrap) {
59 $line = "$line$words[$i] ";
60 $i++;
61 $line_len = $line_len + strlen($words[$i])+1;
62 }
63 $line_len = strlen($words[$i])+1;
64 if ($line_len < $wrap) {
65 if ($i < count($words)) // don't <BR> the last line
66 $line = "$line\n";
67 } else {
68 $endline = $words[$i];
69 while ($line_len >= $wrap) {
70 $bigline = substr($endline, 0, $wrap);
71 $endline = substr($endline, $wrap, strlen($endline));
72 $line_len = strlen($endline);
73 $line = "$line$bigline<BR>";
74 }
75 $line = "$line$endline<BR>";
76 $i++;
b8ea4ed6 77 }
b8ea4ed6 78 }
d68a3926 79 } else {
80 $line = $words[0];
e550d551 81 }
a8648d75 82
83 $line = str_replace(">", "&gt;", $line);
84 $line = str_replace("<", "&lt;", $line);
8467bf00 85 return $line;
e550d551 86 }
40ee9452 87
88 /** Returns an array of email addresses **/
89 function parseAddrs($text) {
7831268e 90 if (trim($text) == "") {
91 return;
92 }
40ee9452 93 $text = str_replace(" ", "", $text);
cf8758c7 94 $text = ereg_replace( '"[^"]*"', "", $text);
40ee9452 95 $text = str_replace(",", ";", $text);
96 $array = explode(";", $text);
af9404d7 97 for ($i = 0; $i < count ($array); $i++) {
98 $array[$i] = eregi_replace ("^.*\<", "", $array[$i]);
99 $array[$i] = eregi_replace ("\>.*$", "", $array[$i]);
100 }
40ee9452 101 return $array;
102 }
103
104 /** Returns a line of comma separated email addresses from an array **/
105 function getLineOfAddrs($array) {
b676ba7e 106 if (is_array($array)) {
107 $to_line = implode(", ", $array);
108 $to_line = trim(ereg_replace(",,+", ",", $to_line));
109 } else {
110 $to_line = "";
40ee9452 111 }
112 return $to_line;
113 }
7ce342dc 114
17ce8467 115 function translateText($body, $wrap_at, $charset) {
9297917e 116 global $where, $what; // from searching
117
8442ac08 118 if (!isset($url_parser_php)) {
119 include "../functions/url_parser.php";
120 }
121
a8648d75 122 $body_ary = explode("\n", $body);
8442ac08 123 for ($i=0; $i < count($body_ary); $i++) {
a8648d75 124 $line = $body_ary[$i];
17ce8467 125 $line = charset_decode($charset, $line);
8442ac08 126
a37f3771 127 if (strlen($line) - 2 >= $wrap_at) {
d76f6440 128 $line = sqWordWrap($line, $wrap_at);
a37f3771 129 }
130
a8648d75 131 $line = str_replace(" ", "&nbsp;", $line);
132 $line = str_replace("\t", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", $line);
133 $line = nl2br($line);
134
8442ac08 135 $line = parseEmail ($line);
136 $line = parseUrl ($line);
137
138 $line = "^^$line"; // gotta do this because if not, strpos() returns 0
139 // which in PHP is the same as false. Now it returns 2
a8648d75 140 if (strpos(trim(str_replace("&nbsp;", "", $line)), "&gt;&gt;") == 2) {
8442ac08 141 $line = substr($line, 2);
142 $line = "<FONT COLOR=FF0000>$line</FONT>\n";
a8648d75 143 } else if (strpos(trim(str_replace("&nbsp;", "", $line)), "&gt;") == 2) {
8442ac08 144 $line = substr($line, 2);
145 $line = "<FONT COLOR=800000>$line</FONT>\n";
a8648d75 146 } else {
8442ac08 147 $line = substr($line, 2);
148 }
149
150 $body_ary[$i] = "<tt>$line</tt><br>";
a8648d75 151 }
8442ac08 152 $body = implode("\n", $body_ary);
153
154 return $body;
78509c54 155 }
156
7ce342dc 157 /* SquirrelMail version number -- DO NOT CHANGE */
cf59dc94 158 $version = "0.5pre1";
d29aac0e 159
160
161 function find_mailbox_name ($mailbox) {
162 $mailbox = trim($mailbox);
163 if (substr($mailbox, strlen($mailbox)-1, strlen($mailbox)) == "\"") {
164 $mailbox = substr($mailbox, 0, strlen($mailbox) - 1);
165 $pos = strrpos ($mailbox, "\"")+1;
166 $box = substr($mailbox, $pos);
167 } else {
168 $box = substr($mailbox, strrpos($mailbox, " ")+1, strlen($mailbox));
169 }
170 return $box;
171 }
172
173 function replace_spaces ($string) {
174 return str_replace(" ", "&nbsp;", $string);
175 }
176
177 function replace_escaped_spaces ($string) {
178 return str_replace("&nbsp;", " ", $string);
179 }
1195c340 180
181 function get_location () {
182 # This determines the location to forward to relative
7e343a7d 183 # to your server. If this doesnt work correctly for
1195c340 184 # you (although it should), you can remove all this
185 # code except the last two lines, and change the header()
186 # function to look something like this, customized to
187 # the location of SquirrelMail on your server:
188 #
189 # http://www.myhost.com/squirrelmail/src/login.php
190
191 global $PHP_SELF, $SERVER_NAME, $HTTPS, $HTTP_HOST;
192
193 // Get the path
194 $path = substr($PHP_SELF, 0, strrpos($PHP_SELF, '/'));
195
196 // Check if this is a HTTPS or regular HTTP request
197 $proto = "http://";
198 if(isset($HTTPS) && $HTTPS == 'on' ) {
199 $proto = "https://";
200 }
201
202 // Get the hostname from the Host header or server config.
203 // Fallback is to omit the server name and use a relative URI,
204 // although this is not RFC 2616 compliant.
205 if(isset($HTTP_HOST) && !empty($HTTP_HOST)) {
206 $location = $proto . $HTTP_HOST . $path;
207 } else if(isset($SERVER_NAME) && !empty($SERVER_NAME)) {
208 $location = $proto . $SERVER_NAME . $path;
209 } else {
210 $location = $path;
211 }
212 return $location;
213 }
3302d0d4 214?>