XHTML fixes
[squirrelmail.git] / functions / url_parser.php
CommitLineData
59177427 1<?php
43fcef5c 2
35586184 3/**
4 * url_parser.php
5 *
82d304a0 6 * Copyright (c) 1999-2004 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 *
31841a9e 12 * @version $Id$
d6c32258 13 * @package squirrelmail
35586184 14 */
43fcef5c 15
d6c32258 16/**
17 * Undocumented - complain, then patch.
18 */
35586184 19function replaceBlock (&$in, $replace, $start, $end) {
20 $begin = substr($in,0,$start);
21 $end = substr($in,$end,strlen($in)-$end);
22 $in = $begin.$replace.$end;
23}
43fcef5c 24
01d27858 25/* Having this defined in just one spot could help when changes need
26 * to be made to the pattern
27 * Make sure that the expression is evaluated case insensitively
7e235a1a 28 *
ff18cccd 29 * RFC2822 (and RFC822) defines the left side of an email address as (roughly):
30 * 1*atext *("." 1*atext)
31 * where atext is: a-zA-Z0-9!#$%&'*+-/=?^_`{|}~
32 *
01d27858 33 * Here's pretty sophisticated IP matching:
34 * $IPMatch = '(2[0-5][0-9]|1?[0-9]{1,2})';
35 * $IPMatch = '\[?' . $IPMatch . '(\.' . $IPMatch . '){3}\]?';
36 */
37/* Here's enough: */
38global $IP_RegExp_Match, $Host_RegExp_Match, $Email_RegExp_Match;
39$IP_RegExp_Match = '\\[?[0-9]{1,3}(\\.[0-9]{1,3}){3}\\]?';
7e235a1a 40$Host_RegExp_Match = '(' . $IP_RegExp_Match .
01d27858 41 '|[0-9a-z]([-.]?[0-9a-z])*\\.[a-z][a-z]+)';
ff18cccd 42$atext = '([a-z0-9!#$&%*+/=?^_`{|}~-]|&amp;)';
43$dot_atom = $atext . '+(\.' . $atext . '+)*';
44$Email_RegExp_Match = $dot_atom . '(%' . $Host_RegExp_Match . ')?@' .
45 $Host_RegExp_Match;
7e235a1a 46
8b096f0a 47/**
48 * Parses a body and converts all found email addresses to clickable links.
49 *
50 * @param string body the body to process, by ref
51 * @return int the number of unique addresses found
52 */
01d27858 53function parseEmail (&$body) {
d62c4938 54 global $color, $Email_RegExp_Match;
cf0d436a 55 $sbody = $body;
56 $addresses = array();
57
58 /* Find all the email addresses in the body */
59 while(eregi($Email_RegExp_Match, $sbody, $regs)) {
ff18cccd 60 $addresses[$regs[0]] = strtr($regs[0], array('&amp;' => '&'));
cf0d436a 61 $start = strpos($sbody, $regs[0]) + strlen($regs[0]);
62 $sbody = substr($sbody, $start);
63 }
64 /* Replace each email address with a compose URL */
ff18cccd 65 foreach ($addresses as $text => $email) {
66 $comp_uri = makeComposeLink('src/compose.php?send_to='.urlencode($email), $text);
67 $body = str_replace($text, $comp_uri, $body);
7e235a1a 68 }
cf0d436a 69 /* Return number of unique addresses found */
70 return count($addresses);
01d27858 71}
43fcef5c 72
43fcef5c 73
01d27858 74/* We don't want to re-initialize this stuff for every line. Save work
75 * and just do it once here.
76 */
77global $url_parser_url_tokens;
78$url_parser_url_tokens = array(
79 'http://',
80 'https://',
81 'ftp://',
82 'telnet:', // Special case -- doesn't need the slashes
7efaee4f 83 'mailto:', // Special case -- doesn't use the slashes
01d27858 84 'gopher://',
85 'news://');
8f7163e7 86
01d27858 87global $url_parser_poss_ends;
88$url_parser_poss_ends = array(' ', "\n", "\r", '<', '>', ".\r", ".\n",
89 '.&nbsp;', '&nbsp;', ')', '(', '&quot;', '&lt;', '&gt;', '.<',
90 ']', '[', '{', '}', "\240", ', ', '. ', ",\n", ",\r");
8f7163e7 91
20a60f89 92
7efaee4f 93/**
94 * rfc 2368 (mailto URL) preg_match() regexp
99554426 95 * @link http://www.ietf.org/rfc/rfc2368.txt
7efaee4f 96 * @global string MailTo_PReg_Match the encapsulated regexp for preg_match()
97 */
98global $MailTo_PReg_Match;
99$Mailto_Email_RegExp = '[0-9a-z%]([-_.+%]?[0-9a-z])*(%' . $Host_RegExp_Match . ')?@' . $Host_RegExp_Match;
100$MailTo_PReg_Match = '/((?:' . $Mailto_Email_RegExp . ')*)((?:\?(?:to|cc|bcc|subject|body)=[^\s\?&=,()]+)?(?:&amp;(?:to|cc|bcc|subject|body)=[^\s\?&=,()]+)*)/i';
101
8b096f0a 102/**
103 * Parses a body and converts all found URLs to clickable links.
104 *
105 * @param string body the body to process, by ref
106 * @return void
107 */
01d27858 108function parseUrl (&$body) {
99554426 109 global $url_parser_poss_ends, $url_parser_url_tokens;
cf0d436a 110 $start = 0;
111 $blength = strlen($body);
cf0d436a 112
7efaee4f 113 while ($start < $blength) {
8f7163e7 114 $target_token = '';
0d3ff000 115 $target_pos = $blength;
cf0d436a 116
01d27858 117 /* Find the first token to replace */
118 foreach ($url_parser_url_tokens as $the_token) {
119 $pos = strpos(strtolower($body), $the_token, $start);
6f1450f4 120 if (is_int($pos) && $pos < $target_pos) {
cf0d436a 121 $target_pos = $pos;
01d27858 122 $target_token = $the_token;
123 }
8f7163e7 124 }
cf0d436a 125
01d27858 126 /* Look for email addresses between $start and $target_pos */
cf0d436a 127 $check_str = substr($body, $start, $target_pos-$start);
128
01d27858 129 if (parseEmail($check_str)) {
130 replaceBlock($body, $check_str, $start, $target_pos);
cf0d436a 131 $blength = strlen($body);
01d27858 132 $target_pos = strlen($check_str) + $start;
8f7163e7 133 }
e2ef6f4b 134
01d27858 135 /* If there was a token to replace, replace it */
7efaee4f 136 if ($target_token == 'mailto:') { // rfc 2368 (mailto URL)
99554426 137 $target_pos += 7; //skip mailto:
7efaee4f 138 $end = $blength;
139
140 $mailto = substr($body, $target_pos, $end-$target_pos);
141
142 global $MailTo_PReg_Match;
99554426 143 if ((preg_match($MailTo_PReg_Match, $mailto, $regs)) && ($regs[0] != '')) {
7efaee4f 144 //sm_print_r($regs);
145 $mailto_before = $target_token . $regs[0];
146 $mailto_params = $regs[10];
147 if ($regs[1]) { //if there is an email addr before '?', we need to merge it with the params
148 $to = 'to=' . $regs[1];
149 if (strpos($mailto_params, 'to=') > -1) //already a 'to='
150 $mailto_params = str_replace('to=', $to . '%2C%20', $mailto_params);
151 else {
152 if ($mailto_params) //already some params, append to them
99554426 153 $mailto_params .= '&amp;' . $to;
7efaee4f 154 else
99554426 155 $mailto_params .= '?' . $to;
7efaee4f 156 }
157 }
158 $url_str = str_replace(array('to=', 'cc=', 'bcc='), array('send_to=', 'send_to_cc=', 'send_to_bcc='), $mailto_params);
159 $comp_uri = makeComposeLink('src/compose.php' . $url_str, $mailto_before);
99554426 160 replaceBlock($body, $comp_uri, $target_pos - 7, $target_pos + strlen($regs[0]));
161 $target_pos += strlen($comp_uri) - 7;
7efaee4f 162 }
163 }
164 else
01d27858 165 if ($target_token != '') {
166 /* Find the end of the URL */
cf0d436a 167 $end = $blength;
168 foreach ($url_parser_poss_ends as $val) {
169 $enda = strpos($body, $val, $target_pos);
01d27858 170 if (is_int($enda) && $enda < $end) {
171 $end = $enda;
172 }
173 }
cf0d436a 174
01d27858 175 /* Extract URL */
176 $url = substr($body, $target_pos, $end-$target_pos);
cf0d436a 177
01d27858 178 /* Needed since lines are not passed with \n or \r */
179 while ( ereg("[,\.]$", $url) ) {
180 $url = substr( $url, 0, -1 );
181 $end--;
182 }
1b3324b3 183
01d27858 184 /* Replace URL with HyperLinked Url, requires 1 char in link */
185 if ($url != '' && $url != $target_token) {
186 $url_str = "<a href=\"$url\" target=\"_blank\">$url</a>";
187 replaceBlock($body,$url_str,$target_pos,$end);
188 $target_pos += strlen($url_str);
cf0d436a 189 }
190 else {
191 // Not quite a valid link, skip ahead to next chance
192 $target_pos += strlen($target_token);
01d27858 193 }
8f7163e7 194 }
cf0d436a 195
01d27858 196 /* Move forward */
cf0d436a 197 $start = $target_pos;
198 $blength = strlen($body);
01d27858 199 }
200}
43fcef5c 201?>