Some language strings fixed, renamed. Copyright notice updated
[mailer.git] / inc / libs / html_mail_functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/25/2004 *
4  * ===================                          Last change: 04/29/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : html_mail_functions.php                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Functions for the HTML extension                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Funktionen fuer die HTML-Erweiterung             *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 //
44 function addValidHtmlTags() {
45         $OUT = '';
46         if (!is_array($GLOBALS['html_tags'])) return "";
47         foreach ($GLOBALS['html_tags'] as $tag) {
48                 $OUT .= ", ".strtoupper($tag);
49         }
50         $OUT = substr($OUT, 2);
51         return $OUT;
52 }
53
54 //
55 function checkHtmlTags ($html) {
56         $test = stripslashes($html);
57         while (isInString('<', $test) && isInString('>', $test)) {
58                 $check = strtolower(substr($test, strpos($test, '<') + 1, strpos($test, '>') - strpos($test, '<') - 1));
59                 $check = str_replace('/', '', $check);
60                 if (!in_array($check, $GLOBALS['html_tags'])) {
61                         // Invalid tag found!
62                         return '';
63                 }
64                 $test = substr($test, strpos($test, '>') + 1);
65         }
66         // Return tested code
67         return $html;
68 }
69
70 //
71 function insertUrlsIntoHtml ($text) {
72         $test = $text;
73
74         // First replace URLs...
75         while (isInString('http://', $test)) {
76                 $check = substr($test, strpos($test, 'http://')); $check2 = $check;
77
78                 // See ext-html.php if you want to add more URL ends...
79                 foreach ($GLOBALS['url_ends'] as $end) {
80                         if (isInString($end, $check)) $check = substr($check, 0, strpos($check, $end));
81                 } // END - foreach
82
83                 // Now replace the URL against anchor container and pray...
84                 $text = substr($text, 0, strpos($text, $check2)) . '<a href="' . generateDerefererUrl($check) . '" target="_blank">' . $check . '</a>' . substr($text, strpos($text, $check2) + strlen($check));
85
86                 // Finally remove the url from testing string (or we have a loop and maybe server overload!)
87                 $test = substr($test, strpos($test, $check) + strlen($check));
88         } // END - while
89
90         // Now do the (nearly) same thing with email addresses
91         // but now we have the problem that email addresses didn't have
92         // a start mark like http:// and our templates are lame didn't have
93         // a mailto: ... :-(
94         $test = $text;
95
96         // ... what will the email address be out the @... ;-)
97         $PARTS = array();
98         while (isInString('@', $test)) {
99                 $pos = strpos($test, '@');
100                 $test2 = substr($test, 0, $pos);
101
102                 // First check backwards
103                 $idx = $pos - 1;
104                 while ($idx > 0) {
105                         $check = substr($test2, $idx, 1);
106                         if (!in_array($check, $GLOBALS['valid_email_chars'])) {
107                                 // Char found so we end here
108                                 break;
109                         } // END - if
110                         $idx--;
111                 } // END - while
112
113                 if ($idx > 0) {
114                         // Starting mark is found
115                         $check2 = substr($test, 0, ($idx + 1));
116                         $test = substr($test, ($idx + 1));
117                 } // END - if
118
119                 // And now go forward...
120                 $idx = '0';
121                 while ($idx < strlen($test)) {
122                         $check = substr($test, $idx, 1);
123                         if ((!in_array($check, $GLOBALS['valid_email_chars'])) && ($check != '@')) {
124                                 // Char found so end here again
125                                 break;
126                         } // END - if
127                         $idx++;
128                 } // END - while
129
130                 if ($idx > 0) {
131                         // Maybe this is the email address?
132                         $check = substr($test, 0, $idx);
133                 } // END - if
134
135                 // Now replace the email against anchor with mailto and pray...
136                 $PARTS[] = $check2 . '<a href="' . generateEmailLink($check, 'user_data') . '">' . $check . '</a>';
137
138                 // Remove email from testing string (see above why...)
139                 $test = substr($test, strlen($check));
140         }
141
142         // Now put all parts together
143         $text = ''; $PARTS[] = $test;
144         foreach ($PARTS as $part) {
145                 $text .= $part;
146         } // END - foreach
147
148         // Replace new-lines agains <br />-s and finally compile possible own HTML tags out...
149         return preCompileCode(str_replace("\n", "<br />\n", $text));
150 }
151
152 // [EOF]
153 ?>