64ff243e2e37ca28910a18919b330e09dd9fd212
[mailer.git] / inc / functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/25/2003 *
4  * ===============                              Last change: 11/29/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : functions.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Many non-MySQL functions (also file access)      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Viele Nicht-MySQL-Funktionen (auch Dateizugriff) *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Check if our config file is writeable or not
41 function is_INCWritable($inc) {
42         $fp = @fopen(PATH."inc/".$inc.".php", 'a');
43         if ($inc == "dummy") {
44                 // Remove dummy file
45                 @fclose($fp);
46                 return @unlink(PATH."inc/dummy.php");
47         } else {
48                 // Close all other files
49                 return @fclose($fp);
50         }
51 }
52
53 // Open a table (you may want to add some header stuff here)
54 function OPEN_TABLE($PERCENT = "", $CLASS = "", $ALIGN="left", $VALIGN="", $td_only=false) {
55         global $table_cnt;
56         // Count tables so we can generate CSS classes for every table... :-)
57         if (empty($CLASS)) {
58                 // Class is empty so count one up and create a class
59                 $table_cnt++; $CLASS = "class".$table_cnt;
60         }
61         $OUT = "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\"";
62
63         // Shall I add the classes to TABLE and TD or only to TD?
64         if (!$td_only) $OUT .= " class=\"".$CLASS."\"";
65
66         // Width is given
67         if (!empty($PERCENT)) $OUT .= " width=\"".$PERCENT."\"";
68
69         // Horizonal align
70         if (!empty($ALIGN)) $OUT .=" align=\"".$ALIGN."\"";
71
72         // Vertical align is given
73         if (!empty($VALIGN))  $OUT .= " valign=\"".$VALIGN."\"";
74         $OUT .= ">\n<TR>\n<TD";
75         if (!empty($ALIGN)) $OUT .=" align=\"".$ALIGN."\"";
76         $OUT .= " class=\"".$CLASS."\">";
77         OUTPUT_HTML($OUT);
78 }
79
80 // Close a table (you may want to add some footer stuff here)
81 function CLOSE_TABLE($ADD="") {
82         OUTPUT_HTML("  </TD>\n</TR>");
83         if (!empty($ADD)) OUTPUT_HTML($ADD);
84         OUTPUT_HTML("</TABLE>");
85 }
86
87 // Output HTML code directly or "render" it. You addionally switch the new-line character off
88 function OUTPUT_HTML($HTML, $NEW_LINE = true) {
89         // Some global variables
90         global $OUTPUT, $footer, $CSS;
91
92         // Do we have HTML-Code here?
93         if (!empty($HTML)) {
94                 // Yes, so we handle it as you have configured
95                 switch (OUTPUT_MODE)
96                 {
97                 case "render":
98                         // That's why you don't need any \n at the end of your HTML code... :-)
99                         if (_OB_CACHING == "on") {
100                                 // Output into PHP's internal buffer
101                                 OUTPUT_RAW($HTML);
102
103                                 // That's why you don't need any \n at the end of your HTML code... :-)
104                                 if ($NEW_LINE) echo "\n";
105                         } else {
106                                 // Render mode for old or lame servers...
107                                 $OUTPUT .= $HTML;
108
109                                 // That's why you don't need any \n at the end of your HTML code... :-)
110                                 if ($NEW_LINE) $OUTPUT .= "\n";
111                         }
112                         break;
113
114                 case "direct":
115                         // If we are switching from render to direct output rendered code
116                         if ((!empty($OUTPUT)) && (_OB_CACHING != "on")) { OUTPUT_RAW($OUTPUT); $OUTPUT = ""; }
117
118                         // The same as above... ^
119                         OUTPUT_RAW($HTML);
120                         if ($NEW_LINE) echo "\n";
121                         break;
122
123                 default:
124                         // Huh, something goes wrong or maybe you have edited config.php ???
125                         die ("<STRONG>".FATAL_ERROR.":</STRONG> ".LANG_NO_RENDER_DIRECT);
126                         break;
127                 }
128         } elseif ((_OB_CACHING == "on") && ($footer == 1)) {
129                 // Output cached HTML code
130                 $OUTPUT = ob_get_contents();
131
132                 // Clear output buffer for later output
133                 ob_end_clean();
134
135                 if ((EXT_IS_ACTIVE("rewrite", true)) && (function_exists('REWRITE_LINKS')) && ($CSS != "1") && ($CSS != "-1")) {
136                         $OUTPUT = REWRITE_LINKS($OUTPUT);
137                 }
138
139                 // Compile and run finished rendered HTML code
140                 while (strpos($OUTPUT, '{!') > 0) {
141                         // Prepare the content and eval() it...
142                         $newContent = "";
143                         $eval = "\$newContent = \"" . COMPILE_CODE(addslashes($OUTPUT)) . "\";";
144                         @eval($eval);
145
146                         if (empty($newContent)) {
147                                 // Something went wrong!
148                                 die("Evaluation error:<pre>".htmlentities($eval)."</pre>");
149                         }
150                         $OUTPUT = $newContent;
151                 }
152
153                 // Output code here, DO NOT REMOVE! ;-)
154                 OUTPUT_RAW($OUTPUT);
155         } elseif ((OUTPUT_MODE == "render") && (!empty($OUTPUT))) {
156                 // Rewrite links when rewrite extension is active
157                 if ((EXT_IS_ACTIVE("rewrite", true)) && (function_exists('REWRITE_LINKS')) && ($CSS != "1") && ($CSS != "-1")) {
158                         $OUTPUT = REWRITE_LINKS($OUTPUT);
159                 }
160
161                 // Compile and run finished rendered HTML code
162                 while (strpos($OUTPUT, '{!') > 0) {
163                         $eval = "\$OUTPUT = \"" . COMPILE_CODE(addslashes($OUTPUT)) . "\";";
164                         eval($eval);
165                 }
166
167                 // Output code here, DO NOT REMOVE! ;-)
168                 OUTPUT_RAW($OUTPUT);
169         }
170 }
171
172 // Output the raw HTML code
173 function OUTPUT_RAW ($HTML) {
174         // Output stripped HTML code to avoid broken JavaScript code, etc.
175         echo stripslashes($HTML);
176
177         // Flush the output if only _OB_CACHING is not "on"
178         if (_OB_CACHING != "on") {
179                 // Flush it
180                 flush();
181         }
182 }
183
184 // Add a fatal error message to the queue array
185 function ADD_FATAL ($message, $extra="") {
186         global $FATAL;
187         if (empty($extra)) {
188                 // Regular text message to add to $FATAL
189                 $FATAL[] = $message;
190         } else {
191                 // $message is text with a mask plus extras to insert into the text
192                 $FATAL[] = sprintf($message, $extra);
193         }
194 }
195
196 // Load a template file and return it's content (only it's name; do not use ' or ")
197 function LOAD_TEMPLATE($template, $return=false, $content="") {
198         // Add more variables which you want to use in your template files
199         global $DATA, $_CONFIG, $username;
200
201         // Count the template load
202         if (!isset($_CONFIG['num_templates'])) $_CONFIG['num_templates'] = 0;
203         $_CONFIG['num_templates']++;
204
205         // Init some data
206         $ACTION = SQL_ESCAPE($GLOBALS['action']);
207         $WHAT = SQL_ESCAPE($GLOBALS['what']);
208         $ret = "";
209         if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = 0;
210         $REFID = $GLOBALS['refid'];
211
212         // DEPRECATED!!!
213         if ($template == "member_support_form") {
214                 // Support request of a member
215                 $result = SQL_QUERY_ESC("SELECT sex, surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
216                  array($GLOBALS['userid']), __FILE__, __LINE__);
217                 list($sex, $surname, $family) = SQL_FETCHROW($result);
218                 SQL_FREERESULT($result);
219                 $salut = TRANSLATE_SEX($sex);
220         }
221
222         // Generate date/time string
223         $date_time = MAKE_DATETIME(time(), "1");
224
225         // Base directory
226         $BASE = sprintf("%stemplates/%s/html/", PATH, GET_LANGUAGE());
227         $MODE = "";
228
229         // Check for admin/guest/member templates
230         if (strpos($template, "admin_") > -1) {
231                 // Admin template found
232                 $MODE = "admin/";
233         } elseif (strpos($template, "guest_") > -1) {
234                 // Guest template found
235                 $MODE = "guest/";
236         } elseif (strpos($template, "member_") > -1) {
237                 // Member template found
238                 $MODE = "member/";
239         } elseif (strpos($template, "install_") > -1) {
240                 // Installation template found
241                 $MODE = "install/";
242         } elseif (strpos($template, "ext_") > -1) {
243                 // Extension template found
244                 $MODE = "ext/";
245         } elseif (strpos($template, "la_") > -1) {
246                 // "Logical-area" template found
247                 $MODE = "la/";
248         } else {
249                 // Test for extension
250                 $test = substr($template, 0, strpos($template, "_"));
251                 if (EXT_IS_ACTIVE($test)) {
252                         // Set extra path to extension's name
253                         $MODE = $test."/";
254                 }
255         }
256
257         ////////////////////////
258         // Generate file name //
259         ////////////////////////
260         $file = $BASE.$MODE.$template.".tpl";
261
262         if ((!empty($GLOBALS['what'])) && ((strpos($template, "_header") > 0) || (strpos($template, "_footer") > 0)) && (($MODE == "guest/") || ($MODE == "member/") || ($MODE == "admin/"))) {
263                 // Select what depended header/footer template file for admin/guest/member area
264                 $file2 = sprintf("%s%s%s_%s.tpl",
265                         $BASE,
266                         $MODE,
267                         $template,
268                         SQL_ESCAPE($GLOBALS['what'])
269                 );
270
271                 // Probe for it...
272                 if (file_exists($file2)) $file = $file2;
273
274                 // Remove variable from memory
275                 unset($file2);
276         }
277
278         // Does the special template exists?
279         if ((!file_exists($file)) || (!is_readable($file))) {
280                 // Reset to default template
281                 $file = $BASE.$template.".tpl";
282         }
283
284         // Now does the final template exists?
285         if ((file_exists($file)) && (is_readable($file))) {
286                 // The local file does exists so we load it. :)
287                 $tmpl_file = implode("", file($file));
288
289                 // Replace ' to our own chars to preventing them being quoted
290                 while (strpos($tmpl_file, "\'") !== false) { $tmpl_file = str_replace("\'", '{QUOT}', $tmpl_file); }
291
292                 // Do we have to compile the code?
293                 if ((strpos($tmpl_file, "\$") !== false) || (strpos($tmpl_file, '{--') !== false) || (strpos($tmpl_file, '--}') > 0)) {
294                         // Okay, compile it!
295                         $tmpl_file = "\$ret=\"" . COMPILE_CODE(addslashes($tmpl_file)) . "\";";
296                         eval($tmpl_file);
297                 } else {
298                         // Simply return loaded code
299                         $ret = $tmpl_file;
300                 }
301
302                 // Add surrounding HTML comments to help finding bugs faster
303                 $ret = "<!-- Template ".$template." - Start -->\n".$ret."<!-- Template ".$template." - End -->\n";
304         } elseif ((IS_ADMIN()) || ((isBooleanConstantAndTrue('mxchange_installing')) && (!isBooleanConstantAndTrue('mxchange_installed')))) {
305                 // Only admins shall see this warning or when installation mode is active
306                 $ret = "<br /><SPAN class=\"guest_failed\">".TEMPLATE_404."</SPAN><br />
307 (".basename($file).")<br />
308 <br />
309 ".TEMPLATE_CONTENT."
310 <PRE>".print_r($content, true)."</PRE>
311 ".TEMPLATE_DATA."
312 <PRE>".print_r($DATA, true)."</PRE>
313 <br /><br />";
314         }
315
316         // Do we have some content to output or return?
317         if (!empty($ret)) {
318                 // Not empty so let's put it out! ;)
319                 if ($return) {
320                         // Return the HTML code
321                         return $ret;
322                 } else {
323                         // Output direct
324                         OUTPUT_HTML($ret);
325                 }
326         } elseif (isBooleanConstantAndTrue('DEBUG_MODE')) {
327                 // Warning, empty output!
328                 return "E:".$template."<br />\n";
329         }
330 }
331
332 // Send mail out to an email address
333 function SEND_EMAIL($TO, $SUBJECT, $MSG, $HTML='N', $FROM="") {
334         // Compile subject line (for POINTS constant etc.)
335         $eval = "\$SUBJECT = \"" . COMPILE_CODE(addslashes($SUBJECT)) . "\";";
336         eval($eval);
337         $SUBJECT = html_entity_decode($SUBJECT);
338
339         // Set from header
340         if (!eregi("@", $TO)) {
341                 // Value detected, load email from database
342                 if (EXT_IS_ACTIVE("msg")) {
343                         ADD_MESSAGE_TO_BOX($TO, $SUBJECT, $MSG, $HTML);
344                         return;
345                 } else {
346                         $result_email = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", array(bigintval($TO)), __FILE__, __LINE__);
347                         list($TO) = SQL_FETCHROW($result_email);
348                         SQL_FREERESULT($result_email);
349                 }
350         }
351
352         // Not in PHPMailer-Mode
353         if (!CHECK_PHPMAILER_USAGE()) {
354                 if (empty($FROM)) {
355                         // Load email header template
356                         $FROM = LOAD_EMAIL_TEMPLATE("header");
357                 } else {
358                         // Append header
359                         $FROM .= LOAD_EMAIL_TEMPLATE("header");
360                 }
361         } elseif (isBooleanConstantAndTrue('DEBUG_MODE')) {
362                 if (empty($FROM)) {
363                         // Load email header template
364                         $FROM = LOAD_EMAIL_TEMPLATE("header");
365                 } else {
366                         // Append header
367                         $FROM .= LOAD_EMAIL_TEMPLATE("header");
368                 }
369         }
370
371         // Fix HTML parameter (default is no!)
372         if (empty($HTML)) $HTML = "N";
373         if (isBooleanConstantAndTrue('DEBUG_MODE')) {
374                 // In debug mode we want to display the mail instead of sending it away so we can debug this part
375                 echo "<PRE>
376 ".htmlentities(trim($FROM))."
377 To      : ".$TO."
378 Subject : ".$SUBJECT."
379 Message : ".$MSG."
380 </PRE>\n";
381         } elseif (($HTML == "Y") && (EXT_IS_ACTIVE("html_mail", true))) {
382                 // Send mail as HTML away
383                 SEND_HTML_EMAIL($TO, $SUBJECT, $MSG, $FROM);
384         } elseif (!empty($TO)) {
385                 // Compile email
386                 $TO = COMPILE_CODE($TO);
387
388                 // Send Mail away
389                 SEND_RAW_EMAIL($TO, COMPILE_CODE($SUBJECT), COMPILE_CODE($MSG), $FROM);
390         } elseif ($HTML == "N") {
391                 // Problem found!
392                 SEND_RAW_EMAIL(WEBMASTER, COMPILE_CODE($SUBJECT), COMPILE_CODE($MSG), $FROM);
393         }
394 }
395
396 // Check if legacy or PHPMailer command
397 // @private
398 function CHECK_PHPMAILER_USAGE() {
399         return ((defined('SMTP_HOSTNAME')) && (defined('SMTP_USER')) && (defined('SMTP_PASSWORD')) && (SMTP_HOSTNAME != "") && (SMTP_USER != ""));
400 }
401
402 /*
403  * Send out a raw email with PHPMailer class or legacy mail() command
404  */
405 function SEND_RAW_EMAIL ($to, $subject, $msg, $from) {
406         // Shall we use PHPMailer class or legacy mode?
407         if (CHECK_PHPMAILER_USAGE()) {
408                 // Use PHPMailer class with SMTP enabled
409                 require_once(PATH."inc/phpmailer/class.phpmailer.php");
410                 require_once(PATH."inc/phpmailer/class.smtp.php");
411
412                 // get new instance
413                 $mail = new PHPMailer();
414                 $mail->PluginDir  = sprintf("%sinc/phpmailer/", PATH);
415
416                 $mail->IsSMTP();
417                 $mail->SMTPAuth   = true;
418                 $mail->Host       = SMTP_HOSTNAME;
419                 $mail->Port       = 25;
420                 $mail->Username   = SMTP_USER;
421                 $mail->Password   = SMTP_PASSWORD;
422                 if (empty($from)) {
423                         $mail->From = WEBMASTER;
424                 } else {
425                         $mail->From = $from;
426                 }
427                 $mail->FromName   = MAIN_TITLE;
428                 $mail->Subject    = $subject;
429                 if ((EXT_IS_ACTIVE("html_mail")) && (strip_tags($msg) != $msg)) {
430                         $mail->Body       = $msg;
431                         $mail->AltBody    = "Your mail program required HTML support to read this mail!";
432                         $mail->WordWrap   = 70;
433                         $mail->IsHTML(true);
434                 } else {
435                         $mail->Body       = $msg;
436                 }
437                 $mail->AddAddress($to, "");
438                 $mail->AddReplyTo(WEBMASTER,MAIN_TITLE);
439                 $mail->AddCustomHeader("Errors-To:".WEBMASTER);
440                 $mail->AddCustomHeader("X-Loop:".WEBMASTER);
441                 $mail->Send();
442         } else {
443                 // Use legacy mail() command
444                 @mail($to, $subject, $msg, $from);
445         }
446 }
447 //
448
449 // Generate a password in a specified length or use default password length
450 function GEN_PASS($LEN = 0) {
451         global $_CONFIG;
452         if ($LEN == 0) $LEN = $_CONFIG['pass_len'];
453
454         // Initialize array with all allowed chars
455         $ABC = explode(",", "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,0,1,2,3,4,5,6,7,8,9,-,+,_,/");
456
457         // Initialize randomizer
458         mt_srand((double) microtime() * 1000000);
459
460         // Start creating password
461         $PASS = "";
462         for ($i = 0; $i < $LEN; $i++) {
463                 $PASS .= $ABC[mt_rand(0, sizeof($ABC) -1)];
464         }
465
466         // When the size is below 40 we can also add additional security by scrambling it
467         if (strlen($PASS) <= 40) {
468                 // Also scramble the password
469                 $PASS = scrambleString($PASS);
470         }
471
472         // Return the password
473         return $PASS;
474 }
475 //
476 function MAKE_DATETIME($time, $mode="0")
477 {
478         if ($time == 0) {
479                 // Never happend
480                 return NEVER_HAPPENED;
481         } else {
482                 // Filter out numbers
483                 $time = bigintval($time);
484         }
485
486         switch (GET_LANGUAGE())
487         {
488         case "de": // German date / time format
489                 switch ($mode)
490                 {
491                         case "0": $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
492                         case "1": $ret = strtolower(date("d.m.Y - H:i", $time)); break;
493                         case "2": $ret = date("d.m.Y|H:i", $time); break;
494                         case "3": $ret = date("d.m.Y", $time); break;
495                 }
496                 break;
497
498         default:        // Default is the US date / time format!
499                 switch ($mode)
500                 {
501                         case "0": $ret = date("r", $time); break;
502                         case "1": $ret = date("Y-m-d - g:i A", $time); break;
503                         case "2": $ret = date("y-m-d|H:i", $time); break;
504                         case "3": $ret = date("y-m-d", $time); break;
505                 }
506         }
507         return $ret;
508 }
509
510 // Translates the american decimal dot into a german comma
511 function TRANSLATE_COMMA($dotted, $cut=true) {
512         global $_CONFIG;
513         // Default is 3 you can change this in admin area "Misc -> Misc Options"
514         if (empty($_CONFIG['max_comma'])) $_CONFIG['max_comma'] = "3";
515         if (!ereg("\.", $dotted)) $dotted .= ".".str_repeat("0", $_CONFIG['max_comma']);
516         if ($cut) {
517                 // Remove trailing zeros
518                 $dot = str_replace(".", "x", $dotted);
519                 while(substr($dot, -1, 1) == "0") {
520                         $dot = substr($dot, 0, -1);
521                 }
522
523                 if (substr($dot, -1, 1) == "x") {
524                         // Last char is the 'x'
525                         $dotted = substr($dot, 0, -1);
526                 } else {
527                         // Last char is a number
528                         $dotted = str_replace("x", ".", $dot);
529                 }
530         }
531
532         // Translate it now
533         switch (GET_LANGUAGE()) {
534         case "de":
535                 $pos = strpos($dotted, ".");
536                 if ($pos > 0) {
537                         if ($cut) {
538                                 // Cut x numbers behind comma
539                                 $dotted = str_replace(".", ",", substr($dotted, 0, ($pos + $_CONFIG['max_comma'] + 1)));
540                         } else {
541                                 // Replace comma with dot
542                                 $dotted = str_replace(".", ",", $dotted);
543                         }
544                 } elseif (!$cut) {
545                         if (empty($pos)) {
546                                 $dotted = "0,".str_repeat("0", $_CONFIG['max_comma']);
547                         } else {
548                                 $dotted .= ",".str_repeat("0", $_CONFIG['max_comma']);
549                         }
550                 }
551                 break;
552
553         default:
554                 if (!$cut) {
555                         if ($pos > 0) {
556                                 $dotted = substr($dotted, 0, ($pos + $_CONFIG['max_comma'] + 1));
557                         } else {
558                                 $dotted .= ".".str_repeat("0", $_CONFIG['max_comma']);
559                         }
560                 }
561                 break;
562         }
563         return $dotted;
564 }
565
566 //
567 function DEREFERER($URL) {
568         $URL = URL."/modules.php?module=loader&amp;url=".urlencode(base64_encode(gzcompress(COMPILE_CODE($URL))));
569         return $URL;
570 }
571
572 //
573 function TRANSLATE_SEX($sex) {
574         switch ($sex)
575         {
576                 case "M": $ret = SEX_M; break;
577                 case "F": $ret = SEX_F; break;
578                 case "C": $ret = SEX_C; break;
579                 default : $ret = $sex; break;
580         }
581         return $ret;
582 }
583 //
584 function GET_POOL_TYPE($PT) {
585         switch ($PT)
586         {
587                 case "TEMP"   : $ret = POOL_TEMP;    break;
588                 case "SEND"   : $ret = POOL_SEND;    break;
589                 case "NEW"    : $ret = POOL_NEW;     break;
590                 case "ADMIN"  : $ret = POOL_ADMIN;   break;
591                 case "ACTIVE" : $ret = POOL_ACTIVE;  break;
592                 case "DELETED": $ret = POOL_DELETED; break;
593                 default       : $ret = POOL_UNKNOWN." (".$PT.")"; break;
594         }
595         return $ret;
596 }
597 //
598 function FRAMETESTER($URL) {
599         // Prepare frametester URL
600         $frametesterUrl = sprintf("%s/modules.php?module=frametester&amp;url=%s",
601                 URL,
602                 urlencode(base64_encode(gzcompress(COMPILE_CODE($URL))))
603         );
604         return $frametesterUrl;
605 }
606 //
607 function SELECTION_COUNT($array) {
608         $ret = "0";
609         if (is_array($array)) {
610                 foreach ($array as $key => $sel) {
611                         if (!empty($sel)) $ret++;
612                 }
613         }
614         return $ret;
615 }
616 //
617 function IMG_CODE ($code, $type, $DATA, $uid) {
618         return "<IMG border=\"0\" alt=\"Code\" src=\"".URL."/mailid_top.php?uid=".$uid."&amp;".$type."=".$DATA."&amp;mode=img&amp;code=".$code."\">";
619 }
620 //
621 function TRANSLATE_STATUS($status) {
622         switch ($status)
623         {
624         case "UNCONFIRMED":
625                 $ret = ACCOUNT_UNCONFIRMED;
626                 break;
627
628         case "CONFIRMED":
629                 $ret = ACCOUNT_CONFIRMED;
630                 break;
631
632         case "LOCKED":
633                 $ret = ACCOUNT_LOCKED;
634                 break;
635
636         default:
637                 $ret = UNKNOWN_STATUS_1.$status.UNKNOWN_STATUS_2;
638                 break;
639         }
640         return $ret;
641 }
642 //
643 function GET_LANGUAGE() {
644         if (!empty($_GET['mx_lang'])) {
645                 // Accept only first 2 chars
646                 $lang = substr($_GET['mx_lang'], 0, 2);
647         } else {
648                 // Do nothing
649                 $lang = "";
650         }
651
652         // Set default return value to default language from config
653         $ret = DEFAULT_LANG;
654
655         // Check GET variable and cookie
656         if (!empty($lang)) {
657                 // Check if main language file does exist
658                 if (file_exists(PATH."inc/language/".$lang.".php")) {
659                         // Okay found, so let's update cookies
660                         SET_LANGUAGE($lang);
661                 }
662         } elseif (!isSessionVariableSet('mx_lang')) {
663                 // Return stored value from cookie
664                 $ret = get_session('mx_lang');
665
666                 // Fixes a warning before the session has the mx_lang constant
667                 if (empty($ret)) $ret = DEFAULT_LANG;
668         }
669         return $ret;
670 }
671 //
672 function SET_LANGUAGE($lang) {
673         global $_CONFIG;
674
675         // Accept only first 2 chars!
676         $lang = substr(SQL_ESCAPE(strip_tags($lang)), 0, 2);
677
678         // Set cookie
679         set_session("mx_lang", $lang);
680 }
681 //
682 function LOAD_EMAIL_TEMPLATE($template, $content="", $UID="0") {
683         global $DATA, $_CONFIG, $REPLACER;
684
685         // Keept for backward-compatiblity (please replace these variables against our new {--CONST--} syntax!)
686         $MAIN_TITLE = MAIN_TITLE; $URL = URL; $WEBMASTER = WEBMASTER;
687         $surname = ""; $family = ""; $nick = ""; $sex = "N";
688
689         // Prepare IP number and User Agent
690         $REMOTE_ADDR = getenv('REMOTE_ADDR');
691         $HTTP_USER_AGENT  = getenv('HTTP_USER_AGENT');
692
693         $ADMIN = MAIN_TITLE;
694         if (isSessionVariableSet('admin_login')) {
695                 // Load Admin data
696                 $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
697                         array(SQL_ESCAPE(get_session('admin_login'))), __FILE__, __LINE__);
698                 list($ADMIN) = SQL_FETCHROW($result);
699                 SQL_FREERESULT($result);
700         }
701
702         // Expiration in a nice output format
703         if ($_CONFIG['auto_purge'] == 0) {
704                 // Will never expire!
705                 $EXPIRATION = MAIL_WILL_NEVER_EXPIRE;
706         } elseif (function_exists('CREATE_FANCY_TIME')) {
707                 // Create nice date string
708                 $EXPIRATION = CREATE_FANCY_TIME($_CONFIG['auto_purge']);
709         } else {
710                 // Display days only
711                 $EXPIRATION = round($_CONFIG['auto_purge']/60/60/24)." "._DAYS;
712         }
713
714         // DEPRECATED switch!
715         switch ($template)
716         {
717         case "bonus-mail": // Load data for the bonus mail
718                 $BONUSID    = $DATA[0];
719                 $content    = $DATA[2];
720                 $points     = TRANSLATE_COMMA($DATA[4]);
721                 $TIME       = $DATA[5];
722                 $TARGET_URL = $DATA[8];
723                 $CATEGORY   = GET_CATEGORY($DATA[9]);
724                 $DATA[10]   = $UID;
725
726                 // Replace variables
727                 foreach ($REPLACER as $key=>$value)
728                 {
729                         if (isset($DATA[$key])) $content = str_replace($value, $DATA[$key], $content);
730                 }
731                 break;
732
733         case "order-admin":
734         case "order-member":
735                 $BLOCKS     = $_CONFIG['max_send'];
736                 $SUBJECT    = $DATA[0];
737                 $content    = $DATA[1];
738                 $PAYMENT    = GET_PAYMENT($DATA[3]);
739                 $TARGET_URL = $DATA[5];
740                 $CATEGORY   = GET_CATEGORY($DATA[6]);
741                 break;
742
743         case "order-reject":
744         case "order-deleted":
745         case "order-accept":
746                 $TARGET_URL = $DATA[0];
747                 $URL        = $DATA[0];
748                 $SUBJECT    = $DATA[1];
749                 break;
750
751         case "new-pass":
752                 $PASS       = $DATA[0];
753                 $REMOTE     = $DATA[1];
754                 break;
755
756         case "confirm-member":
757                 $points     = $_CONFIG['points_register'];
758                 break;
759
760         case "confirm-referral":
761                 $PERCENT    = $DATA[0];
762                 $LEVEL      = $DATA[1];
763                 $points     = $DATA[2];
764                 $REFID      = $DATA[3];
765                 break;
766
767         case "normal-mail":
768                 $SEND_UID   = $DATA[1];
769                 $CATEGORY   = GET_CATEGORY($DATA[9]);
770                 $TIME       = GET_PAY_POINTS($DATA[5], "time");
771                 $TARGET_URL = $DATA[7];
772                 $points     = TRANSLATE_COMMA(GET_PAY_POINTS($DATA[5], "payment"));
773                 // Warning! This ID has changed from 10 to 11!
774                 $MAILID     = $DATA[11];
775
776                 // Replace variables
777                 foreach ($REPLACER as $key=>$value)
778                 {
779                         if (isset($DATA[$key])) $content = str_replace($value, $DATA[$key], $content);
780                 }
781                 break;
782
783         case "done-member":
784         case "done-admin":
785                 $SEND_UID   = $DATA[1];
786                 $CATEGORY   = GET_CATEGORY($DATA[9]);
787                 $TARGET_URL = $DATA[7];
788                 break;
789
790         case "back-admin":
791         case "back-member":
792                 $points         = TRANSLATE_COMMA($DATA[10]);
793                 break;
794
795         case "add-points":
796                 if (isset($_POST['points'])) {
797                         $points         = bigintval($_POST['points']);
798                 } else {
799                         $points = __POINTS_VALUE;
800                 }
801                 break;
802
803         case "guest_request_confirm":
804                 $HASH       = $DATA[2];
805                 break;
806         }
807
808         // Load user's data
809         if ($UID > 0) {
810                 if (EXT_IS_ACTIVE("nickname")) {
811                         // Load nickname
812                         $result = SQL_QUERY_ESC("SELECT surname, family, sex, email, nickname FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
813                          array(bigintval($UID)), __FILE__, __LINE__);
814                         list($surname, $family, $sex, $email, $nick) = SQL_FETCHROW($result);
815                         SQL_FREERESULT($result);
816                 } else {
817                         // Load normal data
818                         $result = SQL_QUERY_ESC("SELECT surname, family, sex, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
819                          array(bigintval($UID)), __FILE__, __LINE__);
820                         list($surname, $family, $sex, $email) = SQL_FETCHROW($result);
821                         SQL_FREERESULT($result);
822                         $nick = "---";
823                 }
824         } else {
825                 // Neutral sex and email address is default
826                 $sex = "N";
827                 $email = WEBMASTER;
828         }
829
830         // Translate M to male or F to female
831         $salut = TRANSLATE_SEX($sex);
832
833         // Store email for some functions in global data array
834         $DATA['email'] = $email;
835
836         // Base directory
837         $BASE = sprintf("%stemplates/%s/emails/", PATH, GET_LANGUAGE());
838
839         // Check for admin/guest/member templates
840         if (strpos($template, "admin_") > -1) {
841                 // Admin template found
842                 $file = $BASE."admin/".$template.".tpl";
843         } elseif (strpos($template, "guest_") > -1) {
844                 // Guest template found
845                 $file = $BASE."guest/".$template.".tpl";
846         } elseif (strpos($template, "member_") > -1) {
847                 // Member template found
848                 $file = $BASE."member/".$template.".tpl";
849         } else {
850                 // Test for extension
851                 $test = substr($template, 0, strpos($template, "_"));
852                 if (EXT_IS_ACTIVE($test)) {
853                         // Set extra path to extension's name
854                         $file = $BASE.$test."/".$template.".tpl";
855                 } else {
856                         // No special filename
857                         $file = $BASE.$template.".tpl";
858                 }
859         }
860
861         // Does the special template exists?
862         if ((!@file_exists($file)) || (!is_readable($file))) {
863                 // Reset to default template
864                 $file = $BASE.$template.".tpl";
865         } // END - if
866
867         // Now does the final template exists?
868         if ((@file_exists($file)) && (is_readable($file))) {
869                 // The local file does exists so we load it. :)
870                 $tmpl_file = @implode("", @file($file));
871                 $tmpl_file = addslashes($tmpl_file);
872
873                 // Compile code
874                 $tmpl_file = COMPILE_CODE($tmpl_file);
875
876                 // Run code
877                 $tmpl_file = "\$content=\"".$tmpl_file."\";";
878                 eval($tmpl_file);
879
880                 // Replace HTML confirm chars
881                 $content = html_entity_decode($content);
882         } elseif (!empty($template)) {
883                 // Template file not found!
884                 $content = TEMPLATE_404.": ".$template."<br />
885 ".TEMPLATE_CONTENT."
886 <PRE>".print_r($content, true)."</PRE>
887 ".TEMPLATE_DATA."
888 <PRE>".print_r($DATA, true)."</PRE>
889 <br /><br />";
890
891                 // Debug mode not active? Then remove the HTML tags
892                 if (!DEBUG_MODE) $content = strip_tags($content);
893         } else {
894                 // No template name supplied!
895                 $content = NO_TEMPLATE_SUPPLIED;
896         }
897
898         // Return compiled content
899         return COMPILE_CODE($content);
900 }
901 //
902 function MAKE_TIME($H, $M, $S, $stamp) {
903         // Extract day, month and year from given timestamp
904         $DAY   = date("d", $stamp);
905         $MONTH = date("m", $stamp);
906         $YEAR  = date('Y', $stamp);
907
908         // Create timestamp for wished time which depends on extracted date
909         return mktime($H, $M, $S, $MONTH, $DAY, $YEAR);
910 }
911 //
912 function LOAD_URL($URL, $addUrlData=true) {
913         global $CSS, $_CONFIG, $link, $db, $footer;
914
915         // Check if http(s):// is there
916         if ((substr($URL, 0, 7) != "http://") && (substr($URL, 0, 8) != "https://")) {
917                 // Make all URLs full-qualified
918                 $URL = URL."/".$URL;
919         }
920
921         // Compile out URI codes
922         $URL = COMPILE_CODE($URL);
923
924         // Get output buffer
925         $OUTPUT = ob_get_contents();
926
927         // Clear it
928         ob_end_clean();
929
930         // Add some data to URL if cookies are not accepted
931         if (((!defined('__COOKIES')) || (!__COOKIES)) && ($addUrlData)) $URL = ADD_URL_DATA($URL);
932
933         // Probe for bot from search engine
934         if ((eregi("spider", getenv('HTTP_USER_AGENT'))) || (eregi("bot", getenv('HTTP_USER_AGENT'))) || (eregi("spider", getenv('HTTP_USER_AGENT')))) {
935                 // Search engine bot detected so let's rewrite many chars for the link
936                 $URL = htmlentities(strip_tags($URL), ENT_QUOTES);
937
938                 // Output new location link as anchor
939                 OUTPUT_HTML("<A href=\"".$URL."\">".$URL."</A>");
940         } elseif (!headers_sent()) {
941                 // Load URL when headers are not sent
942                 @header ("Location: ".str_replace("&amp;", "&", $URL));
943         } else {
944                 // Output error message
945                 include(PATH."inc/header.php");
946                 LOAD_TEMPLATE("redirect_url", false, str_replace("&amp;", "&", $URL));
947                 include(PATH."inc/footer.php");
948         }
949         exit();
950 }
951 //
952 function COMPILE_CODE($code, $simple = false, $constants = true, $full = true) {
953         global $SEC_CHARS, $URL_CHARS;
954         $ARRAY = $SEC_CHARS;
955
956         // Select smaller set of chars to replace when we e.g. want to compile URLs
957         if (!$full) $ARRAY = $URL_CHARS;
958
959         // Compile constants
960         if ($constants) {
961                 // BEFORE 0.2.1 : Language and data constants
962                 // WITH 0.2.1+  : Only language constants
963                 $code = str_replace('{--', '".', str_replace('--}', '."', $code));
964
965                 // BEFORE 0.2.1 : Not used
966                 // WITH 0.2.1+  : Data constants
967                 $code = str_replace('{!', '".', str_replace("!}", '."', $code));
968         }
969
970         // Compile QUOT and other non-HTML codes
971         foreach ($ARRAY['to'] as $k => $to) {
972                 // Do the reversed thing as in inc/libs/security_functions.php
973                 $code = str_replace($to, $ARRAY['from'][$k], $code);
974         }
975
976         // But shall I keep simple quotes for later use?
977         if ($simple) $code = str_replace("\'", '{QUOT}', $code);
978
979         // Find $content[bla][blub] entries
980         @preg_match_all('/\$(content|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
981
982         // Are some matches found?
983         if ((count($matches) > 0) && (count($matches[0]) > 0)) {
984                 // Replace all matches
985                 $matchesFound = array();
986                 foreach ($matches[0] as $key=>$match) {
987                         // Avoid replacing matches multiple times
988                         if (!isset($matchesFound[$match])) {
989                                 // Not yet replaced!
990                                 $code = str_replace($match, "\".".$match.".\"", $code);
991                                 $matchesFound[$match] = 1;
992                         }
993
994                         // Take all string elements
995                         if (("".bigintval($matches[4][$key])."" != $matches[4][$key]) && (!isset($matchesFound[$key."_".$matches[4][$key]]))) {
996                                 // Replace it in the code
997                                 $code = str_replace("[".$matches[4][$key]."]", "['".$matches[4][$key]."']", $code);
998                                 $matchesFound[$key."_".$matches[4][$key]] = 1;
999                         }
1000                 }
1001         }
1002
1003         // Return compiled code
1004         return $code;
1005 }
1006 //
1007 /************************************************************************
1008  *                                                                      *
1009  * Gaenderter Sortier-Algorythmus, $array wird nach dem Array (!)       *
1010  * $a_sort sortiert:                                                    *
1011  *                                                                      *
1012  * $array - Das 3-dimensionale Array, das paralell sortiert werden soll *
1013  * $a_sort - Array, das die Sortiereihenfolge der ersten Elementeben    *
1014  * $primary_key - Prim.rschl.ssel aus $a_sort, nach dem sortiert wird   *
1015  * $order - Sortiereihenfolge: -1 = A-Z, 0 = keine, 1 = Z-A             *
1016  * $nums - true = Als Zahlen sortieren, false = Als Zeichen sortieren   *
1017  *                                                                      *
1018  * $a_sort muss Elemente enthalten, deren Wert Schluessel von $array    *
1019  * sind... Klingt kompliziert, suchen Sie mal mein Beispiel, dann sehen *
1020  * Sie, dass es doch nicht so schwer ist! :-)                           *
1021  *                                                                      *
1022  ************************************************************************/
1023 function array_pk_sort(&$array, $a_sort, $primary_key = 0, $order = -1, $nums = false)
1024 {
1025         $dummy = $array;
1026         while ($primary_key < count($a_sort))
1027         {
1028                 foreach ($dummy[$a_sort[$primary_key]] as $key=>$value)
1029                 {
1030                         foreach ($dummy[$a_sort[$primary_key]] as $key2=>$value2)
1031                         {
1032                                 $match = false;
1033                                 if (!$nums)
1034                                 {
1035                                         // Sort byte-by-byte (also numbers will be interpreted as chars! E.g.: "9" > "10")
1036                                         if (($key != $key2) && (strcmp(strtolower($dummy[$a_sort[$primary_key]][$key]), strtolower($dummy[$a_sort[$primary_key]][$key2])) == $order)) $match = true;
1037                                 }
1038                                  elseif ($key != $key2)
1039                                 {
1040                                         // Sort numbers (E.g.: 9 < 10)
1041                                         if (($dummy[$a_sort[$primary_key]][$key] < $dummy[$a_sort[$primary_key]][$key2]) && ($order == -1)) $match = true;
1042                                         if (($dummy[$a_sort[$primary_key]][$key] > $dummy[$a_sort[$primary_key]][$key2]) && ($order == 1))  $match = true;
1043                                 }
1044                                 if ($match)
1045                                 {
1046                                         // We have found two different values, so let's sort whole array
1047                                         foreach ($dummy as $sort_key=>$sort_val)
1048                                         {
1049                                                 $t                       = $dummy[$sort_key][$key];
1050                                                 $dummy[$sort_key][$key]  = $dummy[$sort_key][$key2];
1051                                                 $dummy[$sort_key][$key2] = $t;
1052                                                 unset($t);
1053                                         }
1054                                 }
1055                         }
1056                 }
1057
1058                 // Count one up
1059                 $primary_key++;
1060         }
1061
1062         // Write back sorted array
1063         $array = $dummy;
1064 }
1065 //
1066 function ADD_SELECTION($type, $DEFAULT, $prefix="", $id="0")
1067 {
1068         global $MONTH_DESCR; $OUT = "";
1069         if ($type == "yn")
1070         {
1071                 // This is a yes/no selection only!
1072                 if ($id > 0) $prefix .= "[".$id."]";
1073                 $OUT .= "    <SELECT name=\"".$prefix."\" class=\"register_select\" size=\"1\">\n";
1074         }
1075          else
1076         {
1077                 // Begin with regular selection box here
1078                 if (!empty($prefix)) $prefix .= "_";
1079                 $type2 = $type;
1080                 if ($id > 0) $type2 .= "[".$id."]";
1081                 $OUT .= "    <SELECT name=\"".strtolower($prefix.$type2)."\" class=\"register_select\" size=\"1\">\n";
1082         }
1083         switch ($type)
1084         {
1085         case "day": // Day
1086                 for ($idx = 1; $idx < 32; $idx++)
1087                 {
1088                         $OUT .= "      <OPTION value=\"".$idx."\"";
1089                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1090                         $OUT .= ">".$idx."</OPTION>\n";
1091                 }
1092                 break;
1093
1094         case "month": // Month
1095                 foreach ($MONTH_DESCR as $month=>$descr)
1096                 {
1097                         $OUT .= "      <OPTION value=\"".$month."\"";
1098                         if ($DEFAULT == $month) $OUT .= " selected=\"selected\"";
1099                         $OUT .= ">".$descr."</OPTION>\n";
1100                 }
1101                 break;
1102
1103         case "year": // Year
1104                 // Get current year
1105                 $YEAR = date('Y', time());
1106
1107                 // Check if the default value is larger than minimum and bigger than actual year
1108                 if (($DEFAULT > 1930) && ($DEFAULT >= $YEAR))
1109                 {
1110                         for ($idx = $YEAR; $idx < ($YEAR + 11); $idx++)
1111                         {
1112                                 $OUT .= "      <OPTION value=\"".$idx."\"";
1113                                 if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1114                                 $OUT .= ">".$idx."</OPTION>\n";
1115                         }
1116                 }
1117                  elseif ($DEFAULT == -1)
1118                 {
1119                         // Current year minus 1
1120                         for ($idx = 2003; $idx <= ($YEAR + 1); $idx++)
1121                         {
1122                                 $OUT .= "      <OPTION value=\"".$idx."\">".$idx."</OPTION>\n";
1123                         }
1124                 }
1125                  else
1126                 {
1127                         // Get current year and subtract 16 (for erotic content)
1128                         $OUT .= "      <OPTION value=\"1929\">&lt;1930</OPTION>\n";
1129                         $YEAR = date('Y', time()) - 16;
1130                         for ($idx = 1930; $idx <= $YEAR; $idx++)
1131                         {
1132                                 $OUT .= "      <OPTION value=\"".$idx."\"";
1133                                 if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1134                                 $OUT .= ">".$idx."</OPTION>\n";
1135                         }
1136                 }
1137                 break;
1138
1139         case "sec":
1140         case "min":
1141                 for ($idx = 0; $idx < 60; $idx+=5)
1142                 {
1143                         if (strlen($idx) == 1) $idx = "0".$idx;
1144                         $OUT .= "      <OPTION value=\"".$idx."\"";
1145                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1146                         $OUT .= ">".$idx."</OPTION>\n";
1147                 }
1148                 break;
1149
1150         case "hour":
1151                 for ($idx = 0; $idx < 24; $idx++)
1152                 {
1153                         if (strlen($idx) == 1) $idx = "0".$idx;
1154                         $OUT .= "      <OPTION value=\"".$idx."\"";
1155                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1156                         $OUT .= ">".$idx."</OPTION>\n";
1157                 }
1158                 break;
1159
1160         case "yn":
1161                 $OUT .= "      <OPTION value=\"Y\"";
1162                 if ($DEFAULT == "Y") $OUT .= " selected=\"selected\"";
1163                 $OUT .= ">".YES."</OPTION>
1164                         <OPTION value=\"N\"";
1165                 if ($DEFAULT == "N") $OUT .= " selected=\"selected\"";
1166                 $OUT .= ">".NO."</OPTION>\n";
1167                 break;
1168         }
1169         $OUT .= "    </SELECT>\n";
1170         return $OUT;
1171 }
1172 //
1173 function TRANSLATE_YESNO($yn)
1174 {
1175         switch ($yn)
1176         {
1177                 case 'Y': $yn = YES; break;
1178                 case 'N': $yn = NO; break;
1179                 default : $yn = "??? (".$yn.")"; break;
1180         }
1181         return $yn;
1182 }
1183 //
1184 // Deprecated : $length
1185 // Optional   : $DATA
1186 //
1187 function GEN_RANDOM_CODE($length, $code, $uid, $DATA="") {
1188         global $_CONFIG;
1189
1190         // Fix missing _MAX constant
1191         if (!defined('_MAX')) define('_MAX', 15235);
1192
1193         // Build server string
1194         $server = $_SERVER['PHP_SELF'].":".getenv('HTTP_USER_AGENT').":".getenv('SERVER_SOFTWARE').":".getenv('REMOTE_ADDR').":".":".filemtime(PATH."inc/databases.php");
1195
1196         // Build key string
1197         $keys   = SITE_KEY.":".DATE_KEY;
1198         if (isset($_CONFIG['secret_key']))  $keys .= ":".$_CONFIG['secret_key'];
1199         if (isset($_CONFIG['file_hash']))   $keys .= ":".$_CONFIG['file_hash'];
1200         $keys .= ":".date("d-m-Y (l-F-T)", $_CONFIG['patch_ctime']);
1201         if (isset($_CONFIG['master_salt'])) $keys .= ":".$_CONFIG['master_salt'];
1202
1203         // Build string from misc data
1204         $data   = $code.":".$uid.":".$DATA;
1205
1206         // Add more additional data
1207         if (isSessionVariableSet('u_hash'))                     $data .= ":".get_session('u_hash');
1208         if (isset($GLOBALS['userid']))                          $data .= ":".$GLOBALS['userid'];
1209         if (isSessionVariableSet('lifetime'))           $data .= ":".get_session('lifetime');
1210         if (isSessionVariableSet('mxchange_theme'))     $data .= ":".get_session('mxchange_theme');
1211         if (isSessionVariableSet('mx_lang'))            $data .= ":".GET_LANGUAGE();
1212         if (isset($GLOBALS['refid']))                           $data .= ":".$GLOBALS['refid'];
1213
1214         // Calculate number for generating the code
1215         $a = $code + _ADD - 1;
1216
1217         if (isset($_CONFIG['master_hash'])) {
1218                 // Generate hash with master salt from modula of number with the prime number and other data
1219                 $saltedHash = generateHash(($a % _PRIME).":".$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a, $_CONFIG['master_salt']);
1220
1221                 // Create number from hash
1222                 $rcode = hexdec(substr($saltedHash, strlen($_CONFIG['master_salt']), 9)) / abs(_MAX - $a + sqrt(_ADD)) / pi();
1223         } else {
1224                 // Generate hash with "hash of site key" from modula of number with the prime number and other data
1225                 $saltedHash = generateHash(($a % _PRIME).":".$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a, substr(sha1(SITE_KEY), 0, 8));
1226
1227                 // Create number from hash
1228                 $rcode = hexdec(substr($saltedHash, 8, 9)) / abs(_MAX - $a + sqrt(_ADD)) / pi();
1229         }
1230
1231         // At least 10 numbers shall be secure enought!
1232         $len = $_CONFIG['code_length'];
1233         if ($len == 0) $len = 10;
1234
1235         // Cut off requested counts of number
1236         $return = substr(str_replace('.', "", $rcode), 0, $len);
1237
1238         // Done building code
1239         return $return;
1240 }
1241 // Does only allow numbers
1242 function bigintval($num, $castValue = true) {
1243         // Filter all numbers out
1244         $ret = preg_replace("/[^0123456789]/", "", $num);
1245
1246         // Return result
1247         return $ret;
1248 }
1249 // Insert the code in $img_code into jpeg or PNG image
1250 function GENERATE_IMAGE($img_code, $header=true) {
1251         global $_CONFIG;
1252         if ((strlen($img_code) > 6) || (empty($img_code)) || ($_CONFIG['code_length'] == 0))
1253         {
1254                 // Stop execution of function here because of over-sized code length
1255                 return;
1256         }
1257          elseif (!$header)
1258         {
1259                 // Return in an HTML code code
1260                 return "<IMG src=\"".URL."/img.php?code=".$img_code."\">\n";
1261         }
1262
1263         switch ($_CONFIG['img_type'])
1264         {
1265         case "jpg":
1266                 // Loads JPEG image
1267                 $img = sprintf("%s/theme/%s/images/code_bg.jpg", PATH, GET_CURR_THEME());
1268                 if ((file_exists($img)) && (is_readable($img))) {
1269                         // Okay, load image and hide all errors
1270                         $image = @imagecreatefromjpeg($img);
1271                 } else  {
1272                         // Exit function here
1273                         return;
1274                 }
1275                 break;
1276
1277         case "png":
1278                 // Loads PNG image
1279                 $img = sprintf("%s/theme/%s/images/code_bg.png", PATH, GET_CURR_THEME());
1280                 if ((file_exists($img)) && (is_readable($img))) {
1281                         // Okay, load image and hide all errors
1282                         $image = @imagecreatefrompng($img);
1283                 } else {
1284                         // Exit function here
1285                         return;
1286                 }
1287                 break;
1288         }
1289
1290         // Generate text color (red/green/blue; 0 = dark, 255 = bright)
1291         $text_color = imagecolorallocate($image, 0, 0, 0);
1292
1293         // Insert code into image
1294         imagestring($image, 5, 14, 2, $img_code, $text_color);
1295
1296         // Return to browser
1297         header ("Content-Type: image/".$_CONFIG['img_type']);
1298
1299         // Output image with matching image factory
1300         switch ($_CONFIG['img_type']) {
1301                 case "jpg": imagejpeg($image); break;
1302                 case "png": imagepng($image);  break;
1303         }
1304
1305         // Remove image from memory
1306         imagedestroy($image);
1307 }
1308 function CREATE_TIME_SELECTIONS($timestamp, $prefix="", $display="", $align="center", $return_array=false)
1309 {
1310         // Calculate 15-seconds timestamp (15-seconds-steps shall be fine ;) )
1311         $timestamp = round($timestamp / 15) * 15;
1312         // Do we have a leap year?
1313         $SWITCH = 0;
1314         $TEST = date('Y', time()) / 4;
1315         $M1 = date("m", time());
1316         $M2 = date("m", (time() + $timestamp));
1317         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1318         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($M2 > "02"))  $SWITCH = ONE_DAY;
1319         // First of all years...
1320         $Y = abs(floor($timestamp / (31536000 + $SWITCH)));
1321         // Next months...
1322         $M = abs(floor($timestamp / 2628000 - $Y * 12));
1323         // Next weeks
1324         $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / ONE_DAY) / 7) - ($M / 12 * (365 + $SWITCH / ONE_DAY) / 7)));
1325         // Next days...
1326         $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / ONE_DAY) - ($M / 12 * (365 + $SWITCH / ONE_DAY)) - $W * 7));
1327         // Next hours...
1328         $h = abs(floor($timestamp / 3600 - $Y * (365 + $SWITCH / ONE_DAY) * 24 - ($M / 12 * (365 + $SWITCH / ONE_DAY) * 24) - $W * 7 * 24 - $D * 24));
1329         // Next minutes..
1330         $m = abs(floor($timestamp / 60 - $Y * (365 + $SWITCH / ONE_DAY) * 24 * 60 - ($M / 12 * (365 + $SWITCH / ONE_DAY) * 24 * 60) - $W * 7 * 24 * 60 - $D * 24 * 60 - $h * 60));
1331         // And at last seconds...
1332         $s = abs(floor($timestamp - $Y * (365 + $SWITCH / ONE_DAY) * 24 * 3600 - ($M / 12 * (365 + $SWITCH / ONE_DAY) * 24 * 3600) - $W * 7 * 24 * 3600 - $D * 24 * 3600 - $h * 3600 - $m * 60));
1333         //
1334         // Now we convert them in seconds...
1335         //
1336         if ($return_array)
1337         {
1338                 // Just put all data in an array for later use
1339                 $OUT = array(
1340                         'YEARS'   => $Y,
1341                         'MONTHS'  => $M,
1342                         'WEEKS'   => $W,
1343                         'DAYS'    => $D,
1344                         'HOURS'   => $h,
1345                         'MINUTES' => $m,
1346                         'SECONDS' => $s
1347                 );
1348         }
1349          else
1350         {
1351                 // Generate table
1352                 $OUT  = "<DIV align=\"".$align."\">\n";
1353                 $OUT .= "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"admin_table dashed\">\n";
1354                 $OUT .= "<TR>\n";
1355                 if (ereg('Y', $display) || (empty($display)))
1356                 {
1357                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._YEARS."</STRONG></TD>\n";
1358                 }
1359                 if (ereg("M", $display) || (empty($display)))
1360                 {
1361                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._MONTHS."</STRONG></TD>\n";
1362                 }
1363                 if (ereg("W", $display) || (empty($display)))
1364                 {
1365                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._WEEKS."</STRONG></TD>\n";
1366                 }
1367                 if (ereg("D", $display) || (empty($display)))
1368                 {
1369                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._DAYS."</STRONG></TD>\n";
1370                 }
1371                 if (ereg("h", $display) || (empty($display)))
1372                 {
1373                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._HOURS."</STRONG></TD>\n";
1374                 }
1375                 if (ereg("m", $display) || (empty($display)))
1376                 {
1377                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._MINUTES."</STRONG></TD>\n";
1378                 }
1379                 if (ereg("s", $display) || (empty($display)))
1380                 {
1381                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._SECONDS."</STRONG></TD>\n";
1382                 }
1383                 $OUT .= "</TR>\n";
1384                 $OUT .= "<TR>\n";
1385                 if (ereg('Y', $display) || (empty($display)))
1386                 {
1387                         // Generate year selection
1388                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_ye\" size=\"1\">\n";
1389                         for ($idx = 0; $idx <= 10; $idx++)
1390                         {
1391                                 $OUT .= "    <OPTION class=\"mini_select\" value=\"".$idx."\"";
1392                                 if ($idx == $Y) $OUT .= " selected default";
1393                                 $OUT .= ">".$idx."</OPTION>\n";
1394                         }
1395                         $OUT .= "  </SELECT></TD>\n";
1396                 }
1397                  else
1398                 {
1399                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ye\" value=\"0\">\n";
1400                 }
1401                 if (ereg("M", $display) || (empty($display)))
1402                 {
1403                         // Generate month selection
1404                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_mo\" size=\"1\">\n";
1405                         for ($idx = 0; $idx <= 11; $idx++)
1406                         {
1407                                         $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1408                                 if ($idx == $M) $OUT .= " selected default";
1409                                 $OUT .= ">".$idx."</OPTION>\n";
1410                         }
1411                         $OUT .= "  </SELECT></TD>\n";
1412                 }
1413                  else
1414                 {
1415                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mo\" value=\"0\">\n";
1416                 }
1417                 if (ereg("W", $display) || (empty($display)))
1418                 {
1419                         // Generate week selection
1420                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_we\" size=\"1\">\n";
1421                         for ($idx = 0; $idx <= 4; $idx++)
1422                         {
1423                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1424                                 if ($idx == $W) $OUT .= " selected default";
1425                                 $OUT .= ">".$idx."</OPTION>\n";
1426                         }
1427                         $OUT .= "  </SELECT></TD>\n";
1428                 }
1429                  else
1430                 {
1431                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_we\" value=\"0\">\n";
1432                 }
1433                 if (ereg("D", $display) || (empty($display)))
1434                 {
1435                         // Generate day selection
1436                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_da\" size=\"1\">\n";
1437                         for ($idx = 0; $idx <= 31; $idx++)
1438                         {
1439                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1440                                 if ($idx == $D) $OUT .= " selected default";
1441                                 $OUT .= ">".$idx."</OPTION>\n";
1442                         }
1443                         $OUT .= "  </SELECT></TD>\n";
1444                 }
1445                  else
1446                 {
1447                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_da\" value=\"0\">\n";
1448                 }
1449                 if (ereg("h", $display) || (empty($display)))
1450                 {
1451                         // Generate hour selection
1452                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_ho\" size=\"1\">\n";
1453                         for ($idx = 0; $idx <= 23; $idx++)
1454                         {
1455                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1456                                 if ($idx == $h) $OUT .= " selected default";
1457                                 $OUT .= ">".$idx."</OPTION>\n";
1458                         }
1459                         $OUT .= "  </SELECT></TD>\n";
1460                 }
1461                  else
1462                 {
1463                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ho\" value=\"0\">\n";
1464                 }
1465                 if (ereg("m", $display) || (empty($display)))
1466                 {
1467                         // Generate minute selection
1468                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_mi\" size=\"1\">\n";
1469                         for ($idx = 0; $idx <= 59; $idx++)
1470                         {
1471                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1472                                 if ($idx == $m) $OUT .= " selected default";
1473                                 $OUT .= ">".$idx."</OPTION>\n";
1474                         }
1475                         $OUT .= "  </SELECT></TD>\n";
1476                 }
1477                  else
1478                 {
1479                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mi\" value=\"0\">\n";
1480                 }
1481                 if (ereg("s", $display) || (empty($display)))
1482                 {
1483                         // Generate second selection
1484                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_se\" size=\"1\">\n";
1485                         for ($idx = 0; $idx <= 45; $idx+=15)
1486                         {
1487                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1488                                 if ($idx == $s) $OUT .= " selected default";
1489                                 $OUT .= ">".$idx."</OPTION>\n";
1490                         }
1491                         $OUT .= "  </SELECT></TD>\n";
1492                 }
1493                  else
1494                 {
1495                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_se\" value=\"0\">\n";
1496                 }
1497                 $OUT .= "</TR>\n";
1498                 $OUT .= "</TABLE>\n";
1499                 $OUT .= "</DIV>\n";
1500                 // Return generated HTML code
1501         }
1502         return $OUT;
1503 }
1504 //
1505 function CREATE_TIMESTAMP_FROM_SELECTIONS($prefix, $POST) {
1506         $ret = "0";
1507         // Do we have a leap year?
1508         $SWITCH = 0;
1509         $TEST = date('Y', time()) / 4;
1510         $M1   = date("m", time());
1511         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1512         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($POST[$prefix."_mo"] > "02"))  $SWITCH = ONE_DAY;
1513         // First add years...
1514         $ret += $POST[$prefix."_ye"] * (31536000 + $SWITCH);
1515         // Next months...
1516         $ret += $POST[$prefix."_mo"] * 2628000;
1517         // Next weeks
1518         $ret += $POST[$prefix."_we"] * 604800;
1519         // Next days...
1520         $ret += $POST[$prefix."_da"] * 86400;
1521         // Next hours...
1522         $ret += $POST[$prefix."_ho"] * 3600;
1523         // Next minutes..
1524         $ret += $POST[$prefix."_mi"] * 60;
1525         // And at last seconds...
1526         $ret += $POST[$prefix."_se"];
1527         // Return calculated value
1528         return $ret;
1529 }
1530 // Sends out mail to all administrators
1531 // IMPORTANT: Please use SEND_ADMIN_NOTIFCATION() for now!
1532 function SEND_ADMIN_EMAILS_PRO($subj, $template, $content, $UID) {
1533         // Trim template name
1534         $template = trim($template);
1535
1536         // Load email template
1537         $msg = LOAD_EMAIL_TEMPLATE($template, $content, $UID);
1538
1539         if (GET_EXT_VERSION("admins") < "0.4.0") {
1540                 // Older version detected!
1541                 return SEND_ADMIN_EMAILS($subj, $msg);
1542         }
1543
1544         // Check which admin shall receive this mail
1545         $result = SQL_QUERY_ESC("SELECT DISTINCT admin_id FROM "._MYSQL_PREFIX."_admins_mails WHERE mail_template='%s' ORDER BY admin_id",
1546          array($template), __FILE__, __LINE__);
1547         if (SQL_NUMROWS($result) == 0) {
1548                 // Create new entry (to all admins)
1549                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_admins_mails (admin_id, mail_template) VALUES (0, '%s')",
1550                  array($template), __FILE__, __LINE__);
1551         } else {
1552                 // Load admin IDs...
1553                 $aids = array();
1554                 while(list($aid) = SQL_FETCHROW($result)) {
1555                         $aids[] = $aid;
1556                 }
1557
1558                 // Free memory
1559                 SQL_FREERESULT($result);
1560
1561                 // "implode" IDs and query string
1562                 $aid = implode(",", $aids);
1563                 if ($aid == "-1") {
1564                         // Add line to userlog
1565                         USERLOG_ADD_LINE($subj, $msg, $UID);
1566                         return;
1567                 } elseif ($aid == "0") {
1568                         // Select all email adresses
1569                         $result = SQL_QUERY("SELECT email FROM "._MYSQL_PREFIX."_admins ORDER BY id", __FILE__, __LINE__);
1570                 } else {
1571                         // If Admin-ID is not "to-all" select
1572                         $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id IN (%s) ORDER BY id", array($aid), __FILE__, __LINE__);
1573                 }
1574         }
1575
1576         // Load email addresses and send away
1577         while (list($email) = SQL_FETCHROW($result)) {
1578                 SEND_EMAIL($email, $subj, $msg);
1579         }
1580
1581         // Free memory
1582         SQL_FREERESULT($result);
1583 }
1584 //
1585 function CREATE_FANCY_TIME($stamp) {
1586         // Get data array with years/months/weeks/days/...
1587         $data = CREATE_TIME_SELECTIONS($stamp, "", "", "", true);
1588         $ret = "";
1589         foreach($data as $k=>$v) {
1590                 if ($v > 0) {
1591                         // Value is greater than 0 "eval" data to return string
1592                         $eval = "\$ret .= \", \".\$v.\" \"._".strtoupper($k).";";
1593                         eval($eval);
1594                         break;
1595                 }
1596         }
1597
1598         // Remove first "comma,null" string
1599         $ret = substr($ret, 2);
1600         return $ret;
1601 }
1602 //
1603 function ADD_EMAIL_NAV($PAGES, $offset, $show_form, $colspan, $return=false) {
1604         $SEP = ""; $TOP = "";
1605         if (!$show_form) {
1606                 $TOP = " top2";
1607                 $SEP = "<TR><TD colspan=\"".$colspan."\" class=\"seperator\">&nbsp;</TD></TR>";
1608         }
1609
1610         $NAV = "";
1611         for ($page = 1; $page <= $PAGES; $page++) {
1612                 // Is the page currently selected or shall we generate a link to it?
1613                 if (($page == $_GET['page']) || ((empty($_GET['page'])) && ($page == "1"))) {
1614                         // Is currently selected, so only highlight it
1615                         $NAV .= "<STRONG>-";
1616                 } else {
1617                         // Open anchor tag and add base URL
1618                         $NAV .= "<A href=\"".URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&amp;page=".$page."&amp;offset=".$offset;
1619
1620                         // Add userid when we shall show all mails from a single member
1621                         if ((isset($_GET['u_id'])) && (bigintval($_GET['u_id']) > 0)) $NAV .= "&amp;u_id=".bigintval($_GET['u_id']);
1622
1623                         // Close open anchor tag
1624                         $NAV .= "\">";
1625                 }
1626                 $NAV .= $page;
1627                 if (($page == $_GET['page']) || ((empty($_GET['page'])) && ($page == "1"))) {
1628                         // Is currently selected, so only highlight it
1629                         $NAV .= "-</STRONG>";
1630                 } else {
1631                         // Close anchor tag
1632                         $NAV .= "</A>";
1633                 }
1634
1635                 // Add seperator if we have not yet reached total pages
1636                 if ($page < $PAGES) $NAV .= "&nbsp;|&nbsp;";
1637         }
1638
1639         // Define constants only once
1640         if (!defined('__NAV_OUTPUT')) {
1641                 define('__NAV_OUTPUT' , $NAV);
1642                 define('__NAV_COLSPAN', $colspan);
1643                 define('__NAV_TOP'    , $TOP);
1644                 define('__NAV_SEP'    , $SEP);
1645         }
1646
1647         // Load navigation template
1648         $OUT = LOAD_TEMPLATE("admin_email_nav_row", true);
1649
1650         if ($return) {
1651                 // Return generated HTML-Code
1652                 return $OUT;
1653         } else {
1654                 // Output HTML-Code
1655                 OUTPUT_HTML($OUT);
1656         }
1657 }
1658
1659 //
1660 function MXCHANGE_OPEN ($script) {
1661         global $_CONFIG;
1662         // Default is not to use proxy
1663         $useProxy = true;
1664
1665         // Are proxy settins set?
1666         if ((!empty($_CONFIG['proxy_host'])) && ($_CONFIG['proxy_port'] > 0)) {
1667                 // Then use it
1668                 $useProxy = true;
1669         }
1670
1671         //* DEBUG */ print("SCRIPT=".$script."<br />\n");
1672         // Compile the script name
1673         $script = COMPILE_CODE($script);
1674         //* DEBUG */ print("SCRIPT=".$script."<br />\n");
1675
1676         // Use default SERVER_URL by default... ;) So?
1677         $url = SERVER_URL;
1678         if (substr($script, 0, 7) == "http://") {
1679                 // Use the hostname from script URL as new hostname
1680                 $url = substr($script, 7);
1681                 $extract = explode("/", $url);
1682                 $url = $extract[0];
1683                 // Done extracting the URL :)
1684         } // END - if
1685
1686         // Extract host name
1687         $host = str_replace("http://", "", $url);
1688         if (ereg("/", $host)) $host = substr($host, 0, strpos($host, "/"));
1689
1690         // Generate relative URL
1691         //* DEBUG */ print("SCRIPT=".$script."<br />\n");
1692         if (substr(strtolower($script), 0, 7) == "http://") {
1693                 // But only if http:// is in front!
1694                 $script = substr($script, (strlen($url) + 7));
1695         } elseif (substr(strtolower($script), 0, 8) == "https://") {
1696                 // Does this work?!
1697                 $script = substr($script, (strlen($url) + 8));
1698         }
1699
1700         //* DEBUG */ print("SCRIPT=".$script."<br />\n");
1701         if (substr($script, 0, 1) == "/") $script = substr($script, 1);
1702
1703         // Open connection
1704         //* DEBUG */ die("SCRIPT=".$script."<br />\n");
1705         if ($useProxy) {
1706                 $fp = @fsockopen(COMPILE_CODE($_CONFIG['proxy_host']), $_CONFIG['proxy_port'], $errno, $errdesc, 30);
1707         } else {
1708                 $fp = @fsockopen($host, 80, $errno, $errdesc, 30);
1709         }
1710
1711         // Is there a link?
1712         if (!is_resource($fp)) {
1713                 // Failed!
1714                 return array("", "", "");
1715         } // END - if
1716
1717         // Do we use proxy?
1718         if ($useProxy) {
1719                 // Generate CONNECT request header
1720                 $request  = "CONNECT ".$host.":80 HTTP/1.1\r\n";
1721                 $request .= "Host: ".$host."\r\n";
1722
1723                 // Use login data to proxy? (username at least!)
1724                 if (!empty($_CONFIG['proxy_username'])) {
1725                         // Add it as well
1726                         $encodedAuth = base64_encode(COMPILE_CODE($_CONFIG['proxy_username']).":".COMPILE_CODE($_CONFIG['proxy_password']));
1727                         $request .= "Proxy-Authorization: Basic ".$encodedAuth."\r\n";
1728                 } // END - if
1729
1730                 // Add last new-line
1731                 $request .= "\r\n";
1732                 //* DEBUG: */ print("<strong>Request:</strong><pre>".$request."</pre>");
1733
1734                 // Write request
1735                 fputs($fp, $request);
1736
1737                 // Got response?
1738                 if (feof($fp)) {
1739                         // No response received
1740                         return array("", "", "");
1741                 } // END - if
1742
1743                 // Read the first line
1744                 $resp = trim(fgets($fp, 10240));
1745                 $respArray = explode(" ", $resp);
1746                 if ((strtolower($respArray[0]) !== "http/1.0") || ($respArray[1] != "200")) {
1747                         // Invalid response!
1748                         return array("", "", "");
1749                 } // END - if
1750         } // END - if
1751         
1752         // Generate GET request header
1753         $request  = "GET /".trim($script)." HTTP/1.1\r\n";
1754         $request .= "Host: ".$host."\r\n";
1755         $request .= "Referer: ".URL."/admin.php\r\n";
1756         $request .= "User-Agent: ".TITLE."/".FULL_VERSION."\r\n";
1757         $request .= "Content-Type: text/plain\r\n";
1758         $request .= "Cache-Control: no-cache\r\n";
1759         $request .= "Connection: Close\r\n\r\n";
1760         //* DEBUG: */ print("<strong>Request:</strong><pre>".$request."</pre>");
1761
1762         // Initialize array
1763         $response = array();
1764
1765         // Write request
1766         fputs($fp, $request);
1767
1768         // Read response
1769         while(!feof($fp)) {
1770                 $response[] = trim(fgets($fp, 1024));
1771         } // END - while
1772
1773         // Close socket
1774         fclose($fp);
1775
1776         //* DEBUG: */ print("<strong>Response:</strong><pre>".print_r($response, true)."</pre>");
1777
1778         // Proxy agent found?
1779         if ((substr(strtolower($response[0]), 0, 11) == "proxy-agent") && ($useProxy)) {
1780                 // Proxy header detected, so remove two lines
1781                 array_shift($response);
1782                 array_shift($response);
1783         } // END - if
1784
1785         // Was the request successfull?
1786         if ((!eregi("200 OK", $response[0])) || (empty($response[0]))) {
1787                 // Not found / access forbidden
1788                 $response = array("", "", "");
1789         } // END - if
1790
1791         // Return response
1792         return $response;
1793 }
1794 // Taken from www.php.net eregi() user comments
1795 function VALIDATE_EMAIL($email) {
1796         // Compile email
1797         $email = COMPILE_CODE($email);
1798
1799         // Check first part of email address
1800         $first = "[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*";
1801
1802         //  Check domain
1803         $domain = "[a-z0-9-]+(\.[a-z0-9-]{2,5})+";
1804
1805         // Generate pattern
1806         $regex = "^".$first."@".$domain."$";
1807
1808         // Return check result
1809         return eregi($regex, $email);
1810 }
1811 // Function taken from user comments on www.php.net / function eregi()
1812 function VALIDATE_URL ($URL, $compile=true) {
1813         // Trim URL a little
1814         $URL = trim(urldecode($URL));
1815         //* DEBUG: */ echo $URL."<br />";
1816
1817         // Compile some chars out...
1818         if ($compile) $URL = COMPILE_CODE($URL, false, false, false);
1819         //* DEBUG: */ echo $URL."<br />";
1820
1821         // Check for the extension filter
1822         if (EXT_IS_ACTIVE("filter")) {
1823                 // Use the extension's filter set
1824                 return FILTER_VALIDATE_URL($URL, false);
1825         }
1826
1827         // If not installed, perform a simple test. Just make it sure there is always a http:// or
1828         // https:// in front of the URLs
1829         return (((substr($URL, 0, 7) == "http://") || (substr($URL, 0, 8) == "https://")) && (strlen($URL) >= 12));
1830 }
1831 //
1832 function MEMBER_ACTION_LINKS($uid, $status="") {
1833         // Define all main targets
1834         $TARGETS = array("del_user", "edit_user", "lock_user", "add_points", "sub_points");
1835
1836         // Begin of navigation links
1837         $eval = "\$OUT = \"[&nbsp;";
1838
1839         foreach ($TARGETS as $tar) {
1840                 $eval .= "<SPAN class=\\\"admin_user_link\\\"><A href=\\\"".URL."/modules.php?module=admin&amp;what=".$tar."&amp;u_id=".$uid."\\\" title=\\\"\".ADMIN_LINK_";
1841                 //* DEBUG: */ echo "*".$tar."/".$status."*<br />\n";
1842                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1843                         // Locked accounts shall be unlocked
1844                         $eval .= "UNLOCK_USER";
1845                 } else {
1846                         // All other status is fine
1847                         $eval .= strtoupper($tar);
1848                 }
1849                 $eval .= "_TITLE.\"\\\">\".ADMIN_";
1850                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1851                         // Locked accounts shall be unlocked
1852                         $eval .= "UNLOCK_USER";
1853                 } else {
1854                         // All other status is fine
1855                         $eval .= strtoupper($tar);
1856                 }
1857                 $eval .= ".\"</A></SPAN>&nbsp;|&nbsp;";
1858         }
1859
1860         // Finish navigation link
1861         $eval = substr($eval, 0, -7) . "]\";";
1862         eval($eval);
1863
1864         // Return string
1865         return $OUT;
1866 }
1867 // Function for backward-compatiblity
1868 function ADD_CATEGORY_TABLE ($MODE, $return=false) {
1869         // Load it from the register extension
1870         return REGISTER_ADD_CATEGORY_TABLE ($MODE, $return);
1871 }
1872 // Generate an email link
1873 function CREATE_EMAIL_LINK($email, $table="admins") {
1874         // Default email link (INSECURE! Spammer can read this by harvester programs)
1875         $EMAIL = "mailto:".$email;
1876
1877         // Check for several extensions
1878         if ((EXT_IS_ACTIVE("admins")) && ($table == "admins")) {
1879                 // Create email link for contacting admin in guest area
1880                 $EMAIL = ADMINS_CREATE_EMAIL_LINK($email);
1881         } elseif ((EXT_IS_ACTIVE("user", true)) && (GET_EXT_VERSION("user") >= "0.3.3") && ($table == "user_data")) {
1882                 // Create email link for contacting a member within admin area (or later in other areas, too?)
1883                 $EMAIL = USER_CREATE_EMAIL_LINK($email);
1884         } elseif ((EXT_IS_ACTIVE("sponsor")) && ($table == "sponsor_data")) {
1885                 // Create email link to contact sponsor within admin area (or like the link above?)
1886                 $EMAIL = SPONSOR_CREATE_EMAIL_LINK($email);
1887         }
1888
1889         // Shall I close the link when there is no admin?
1890         if ((!IS_ADMIN()) && ($EMAIL == $email)) $EMAIL = "#"; // Closed!
1891
1892         // Return email link
1893         return $EMAIL;
1894 }
1895 // Generate a hash for extra-security for all passwords
1896 function generateHash ($plainText, $salt = "") {
1897         global $_CONFIG, $_SERVER;
1898
1899         // Is the required extension "sql_patches" there and a salt is not given?
1900         if (((GET_EXT_VERSION("sql_patches") < "0.3.6") || (GET_EXT_VERSION("sql_patches") == "")) && (empty($salt))) {
1901                 // Extension sql_patches is missing/outdated so we return the plain text
1902                 return $plainText;
1903         } // END - if
1904
1905         // Do we miss an arry element here?
1906         if (!isset($_CONFIG['file_hash'])) {
1907                 // Stop here
1908                 print(__FUNCTION__.":<pre>");
1909                 debug_print_backtrace();
1910                 die("</pre>");
1911         } // END - if
1912
1913         // When the salt is empty build a new one, else use the first x configured characters as the salt
1914         if ($salt == "") {
1915                 // Build server string
1916                 $server = $_SERVER['PHP_SELF'].":".getenv('HTTP_USER_AGENT').":".getenv('SERVER_SOFTWARE').":".getenv('REMOTE_ADDR').":".":".filemtime(PATH."inc/databases.php");
1917
1918                 // Build key string
1919                 $keys   = SITE_KEY.":".DATE_KEY.":".$_CONFIG['secret_key'].":".$_CONFIG['file_hash'].":".date("d-m-Y (l-F-T)", $_CONFIG['patch_ctime']).":".$_CONFIG['master_salt'];
1920
1921                 // Additional data
1922                 $data = $plainText.":".uniqid(rand(), true).":".time();
1923
1924                 // Calculate number for generating the code
1925                 $a = time() + _ADD - 1;
1926
1927                 // Generate SHA1 sum from modula of number and the prime number
1928                 $sha1 = sha1(($a % _PRIME).$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a);
1929                 //* DEBUG: */ echo "SHA1=".$sha1." (".strlen($sha1).")<br>";
1930                 $sha1 = scrambleString($sha1);
1931                 //* DEBUG: */ echo "Scrambled=".$sha1." (".strlen($sha1).")<br>";
1932                 //* DEBUG: */ $sha1b = descrambleString($sha1);
1933                 //* DEBUG: */ echo "Descrambled=".$sha1b." (".strlen($sha1b).")<br>";
1934
1935                 // Generate the password salt string
1936                 $salt = substr($sha1, 0, $_CONFIG['salt_length']);
1937                 //* DEBUG: */ echo $salt." (".strlen($salt).")<br />";
1938         } else {
1939                 // Use given salt
1940                 $salt = substr($salt, 0, $_CONFIG['salt_length']);
1941                 //* DEBUG: */ echo "GIVEN={$salt}<br />\n";
1942         }
1943
1944         // Return hash
1945         return $salt . sha1($salt . $plainText);
1946 }
1947 //
1948 function scrambleString($str) {
1949         global $_CONFIG;
1950
1951         // Init
1952         $scrambled = "";
1953
1954         // Final check, in case of failture it will return unscrambled string
1955         if (strlen($str) > 40) {
1956                 // The string is to long
1957                 return $str;
1958         } elseif (strlen($str) == 40) {
1959                 // From database
1960                 $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
1961         } else {
1962                 // Generate new numbers
1963                 $scrambleNums = explode(":", genScrambleString(strlen($str)));
1964         }
1965
1966         // Scramble string here
1967         //* DEBUG: */ echo "***Original=".$str."***<br />";
1968         for ($idx = 0; $idx < strlen($str); $idx++) {
1969                 // Get char on scrambled position
1970                 $char = substr($str, $scrambleNums[$idx], 1);
1971
1972                 // Add it to final output string
1973                 $scrambled .= $char;
1974         }
1975
1976         // Return scrambled string
1977         //* DEBUG: */ echo "***Scrambled=".$scrambled."***<br />";
1978         return $scrambled;
1979 }
1980 //
1981 function descrambleString($str)
1982 {
1983         global $_CONFIG;
1984         // Scramble only 40 chars long strings
1985         if (strlen($str) != 40) return $str;
1986
1987         // Load numbers from config
1988         $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
1989
1990         // Validate numbers
1991         if (count($scrambleNums) != 40) return $str;
1992
1993         // Begin descrambling
1994         $orig = str_repeat(" ", 40);
1995         //* DEBUG: */ echo "+++Scrambled=".$str."+++<br />";
1996         for ($idx = 0; $idx < 40; $idx++)
1997         {
1998                 $char = substr($str, $idx, 1);
1999                 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
2000         }
2001
2002         // Return scrambled string
2003         //* DEBUG: */ echo "+++Original=".$orig."+++<br />";
2004         return $orig;
2005 }
2006 //
2007 function genScrambleString($len) {
2008         // Prepare randomizer and array for the numbers
2009         mt_srand((double) microtime() * 1000000);
2010         $scrambleNumbers = array();
2011
2012         // First we need to setup randomized numbers from 0 to 31
2013         for ($idx = 0; $idx < $len; $idx++) {
2014                 // Generate number
2015                 $rand = mt_rand(0, ($len -1));
2016
2017                 // Check for it by creating more numbers
2018                 while (array_key_exists($rand, $scrambleNumbers)) {
2019                         $rand = mt_rand(0, ($len -1));
2020                 }
2021
2022                 // Add number
2023                 $scrambleNumbers[$rand] = $rand;
2024         }
2025
2026         // So let's create the string for storing it in database
2027         $scrambleString = implode(":", $scrambleNumbers);
2028         return $scrambleString;
2029 }
2030 // Append data like session ID referral ID to the given URL which would
2031 // normally be stored in cookies
2032 function ADD_URL_DATA($URL)
2033 {
2034         global $_CONFIG;
2035         $ADD = "";
2036
2037         // Determine URL binder
2038         $BIND = "?";
2039         if (strpos($URL, "?") !== false) $BIND = "&";
2040
2041         if ((!defined('__COOKIES')) || ((!__COOKIES))) {
2042                 // Cookies are not accepted
2043                 if ((!empty($_GET['refid'])) && (strpos($URL, "refid=") == 0)) {
2044                         // Cookie found in URL
2045                         $ADD .= $BIND."refid=".bigintval($_GET['refid']);
2046                 } elseif ((GET_EXT_VERSION("sql_patches") != '') && ($_CONFIG['def_refid'] > 0)) {
2047                         // Not found! So let's set default here
2048                         $ADD .= $BIND."refid=".$_CONFIG['def_refid'];
2049                 }
2050
2051                 // Is there already added data? Then change the binder
2052                 if (!empty($ADD)) $BIND = "&";
2053
2054                 // Add session ID
2055                 if ((!empty($_GET['PHPSESSID'])) && (strpos($URL, "PHPSESSID=") == 0)) {
2056                         // Add session from URL
2057                         $ADD .= $BIND."PHPSESSID=".SQL_ESCAPE(strip_tags($_GET['PHPSESSID']));
2058                 } else {
2059                         // Add current session
2060                         $ADD .= $BIND."PHPSESSID=".session_id();
2061                 }
2062         }
2063
2064         // Add all together and return it
2065         return $URL.$ADD;
2066 }
2067 // Generate an PGP-like encrypted hash of given hash for e.g. cookies
2068 function generatePassString($passHash) {
2069         global $_CONFIG;
2070
2071         // Return vanilla password hash
2072         $ret = $passHash;
2073
2074         // Is a secret key and master salt already initialized?
2075         if ((!empty($_CONFIG['secret_key'])) && (!empty($_CONFIG['master_salt']))) {
2076                 // Only calculate when the secret key is generated
2077                 $newHash = ""; $start = 9;
2078                 for ($idx = 0; $idx < 10; $idx++) {
2079                         $part1 = hexdec(substr($passHash, $start, 4));
2080                         $part2 = hexdec(substr($_CONFIG['secret_key'], $start, 4));
2081                         $mod = dechex($idx);
2082                         if ($part1 > $part2) {
2083                                 $mod = dechex(sqrt(($part1 - $part2) * _PRIME / pi()));
2084                         } elseif ($part2 > $part1) {
2085                                 $mod = dechex(sqrt(($part2 - $part1) * _PRIME / pi()));
2086                         }
2087                         $mod = substr(round($mod), 0, 4);
2088                         $mod = str_repeat('0', 4-strlen($mod)).$mod;
2089                         //* DEBUG: */ echo "*".$start."=".$mod."*<br>";
2090                         $start += 4;
2091                         $newHash .= $mod;
2092                 } // END - for
2093
2094                 //* DEBUG: */ print($passHash."<br>".$newHash." (".strlen($newHash).")");
2095                 $ret = generateHash($newHash, $_CONFIG['master_salt']);
2096                 //* DEBUG: */ print($ret."<br />\n");
2097         } else {
2098                 // Hash it simple
2099                 //* DEBUG: */ echo "--".$passHash."--<br />\n";
2100                 $ret = md5($passHash);
2101                 //* DEBUG: */ echo "++".$ret."++<br />\n";
2102         }
2103
2104         // Return result
2105         return $ret;
2106 }
2107
2108 // Fix "deleted" cookies
2109 function FIX_DELETED_COOKIES ($cookies) {
2110         // Is this an array with entries?
2111         if ((is_array($cookies)) && (count($cookies) > 0)) {
2112                 // Then check all cookies if they are marked as deleted!
2113                 foreach ($cookies as $cookieName) {
2114                         // Is the cookie set to "deleted"?
2115                         if (get_session($cookieName) == "deleted") {
2116                                 set_session($cookieName, "");
2117                         }
2118                 }
2119         }
2120 }
2121
2122 // Output error messages in a fasioned way and die...
2123 function mxchange_die ($msg) {
2124         global $footer;
2125
2126         // Load the message template
2127         LOAD_TEMPLATE("admin_settings_saved", false, $msg);
2128
2129         // Load footer
2130         include(PATH."inc/footer.php");
2131
2132         // Exit explicitly
2133         exit;
2134 }
2135
2136 // Display parsing time and number of SQL queries in footer
2137 function DISPLAY_PARSING_TIME_FOOTER() {
2138         global $startTime, $_CONFIG;
2139         $endTime = microtime(true);
2140
2141         // Is the timer started?
2142         if (!isset($GLOBALS['startTime'])) {
2143                 // Abort here
2144                 return false;
2145         }
2146
2147         // "Explode" both times
2148         $start = explode(" ", $GLOBALS['startTime']);
2149         $end = explode(" ", $endTime);
2150         $runTime = $end[0] - $start[0];
2151         if ($runTime < 0) $runTime = 0;
2152         $runTime = TRANSLATE_COMMA($runTime);
2153
2154         // Prepare output
2155         $content = array(
2156                 'runtime'               => $runTime,
2157                 'numSQLs'               => ($_CONFIG['sql_count'] + 1),
2158                 'numTemplates'  => ($_CONFIG['num_templates'] + 1)
2159         );
2160
2161         // Load the template
2162         LOAD_TEMPLATE("show_timings", false, $content);
2163 }
2164
2165 // Unset/set session variables
2166 function set_session ($var, $value) {
2167         global $CSS;
2168
2169         // Abort in CSS mode here
2170         if ($CSS == 1) return true;
2171
2172         // Trim value and session variable
2173         $var = trim(SQL_ESCAPE($var)); $value = trim($value);
2174
2175         // Is the session variable set?
2176         if (("".$value."" == "") && (isSessionVariableSet($var))) {
2177                 // Remove the session
2178                 //* DEBUG: */ echo "UNSET:".$var."=".get_session($var)."<br />\n";
2179                 unset($_SESSION[$var]);
2180                 return session_unregister($var);
2181         } elseif (("".$value."" != '') && (!isSessionVariableSet($var))) {
2182                 // Set session
2183                 //* DEBUG: */ echo "SET:".$var."=".$value."<br />\n";
2184                 $_SESSION[$var] =  $value;
2185                 return session_register($var);
2186         } elseif (!empty($value)) {
2187                 // Update session
2188                 $_SESSION[$var] = $value;
2189         } else {
2190                 // Something bad happens!
2191                 return false; // Hope this doesn't make so much trouble???
2192         }
2193
2194         // Return always true if the session variable is already set.
2195         // Keept me busy for a longer while...
2196         //* DEBUG: */ echo "IGNORED:".$var."=".$value."<br />\n";
2197         return true;
2198 }
2199
2200 // Check wether a boolean constant is set
2201 // Taken from user comments in PHP documentation for function constant()
2202 function isBooleanConstantAndTrue($constname) { // : Boolean
2203         $res = false;
2204         if (defined($constname)) $res = (constant($constname) === true);
2205         return($res);
2206 }
2207
2208 // Check wether a session variable is set
2209 function isSessionVariableSet($var) {
2210         return (isset($_SESSION[$var]));
2211 }
2212 // Returns wether the value of the session variable or NULL if not set
2213 function get_session($var) {
2214         // Default is not found! ;-)
2215         $value = null;
2216
2217         // Is the variable there?
2218         if (isSessionVariableSet($var)) {
2219                 // Then  get it secured!
2220                 $value = SQL_ESCAPE($_SESSION[$var]);
2221         }
2222
2223         // Return the value
2224         return $value;
2225 }
2226 // Send notification to admin
2227 function SEND_ADMIN_NOTIFICATION($subject, $templateName, $content="", $uid="0") {
2228         if (GET_EXT_VERSION("admins") >= "0.4.1") {
2229                 // Send new way
2230                 SEND_ADMIN_EMAILS_PRO($subject, $templateName, $content, $uid);
2231         } else {
2232                 // Send outdated way
2233                 $msg = LOAD_EMAIL_TEMPLATE($templateName, $content, $uid);
2234                 SEND_ADMIN_EMAILS($subject, $msg);
2235         }
2236 }
2237 // Destroy user session
2238 function destroy_user_session () {
2239         // Remove all user data from session
2240         return ((set_session("userid", "")) && (set_session("u_hash", "")) && (set_session("lifetime", "")));
2241 }
2242 // Merges an array together but only if both are arrays
2243 function merge_array ($array1, $array2) {
2244         // Are both an array?
2245         if ((is_array($array1)) && (is_array($array2))) {
2246                 // Merge all together
2247                 return array_merge($array1, $array2);
2248         } elseif (is_array($array1)) {
2249                 // Return left array
2250                 return $array1;
2251         }
2252
2253         // Something wired happened here...
2254         print(__FUNCTION__.":<pre>");
2255         debug_print_backtrace();
2256         die("</pre>");
2257 }
2258 //
2259 //////////////////////////////////////////////////
2260 //                                              //
2261 // AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS //
2262 //                                              //
2263 //////////////////////////////////////////////////
2264 //
2265 if (!function_exists('html_entity_decode')) {
2266         // Taken from documentation on www.php.net
2267         function html_entity_decode($string) {
2268                 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
2269                 $trans_tbl = array_flip($trans_tbl);
2270                 return strtr($string, $trans_tbl);
2271         }
2272 }
2273
2274 //
2275 ?>