d5a4f20347509cd0f2b2833ad90ad51290228827
[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 (!defined('__SECURITY')) {
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         // Generate FQFN
43         $fqfn = sprintf("%sinc/%s.php", PATH, $inc);
44
45         // Abort by simple test
46         if ((FILE_READABLE($fqfn)) && (!is_writeable($fqfn))) {
47                 return false;
48         } // END - if
49
50         // Test if we can append data
51         $fp = @fopen($fqfn, 'a');
52         if ($inc == "dummy") {
53                 // Remove dummy file
54                 @fclose($fp);
55                 return @unlink($fqfn);
56         } else {
57                 // Close all other files
58                 return @fclose($fp);
59         }
60 }
61
62 // Open a table (you may want to add some header stuff here)
63 function OPEN_TABLE($PERCENT = "", $CLASS = "", $ALIGN="left", $VALIGN="", $td_only=false) {
64         global $table_cnt;
65
66         // Count tables so we can generate CSS classes for every table... :-)
67         if (empty($CLASS)) {
68                 // Class is empty so count one up and create a class
69                 $table_cnt++; $CLASS = "class".$table_cnt;
70         }
71         $OUT = "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\"";
72
73         // Shall I add the classes to TABLE and TD or only to TD?
74         if (!$td_only) $OUT .= " class=\"".$CLASS."\"";
75
76         // Width is given
77         if (!empty($PERCENT)) $OUT .= " width=\"".$PERCENT."\"";
78
79         // Horizonal align
80         if (!empty($ALIGN)) $OUT .=" align=\"".$ALIGN."\"";
81
82         // Vertical align is given
83         if (!empty($VALIGN))  $OUT .= " valign=\"".$VALIGN."\"";
84         $OUT .= ">\n<TR>\n<TD";
85         if (!empty($ALIGN)) $OUT .=" align=\"".$ALIGN."\"";
86         $OUT .= " class=\"".$CLASS."\">";
87         OUTPUT_HTML($OUT);
88 }
89
90 // Close a table (you may want to add some footer stuff here)
91 function CLOSE_TABLE($ADD="") {
92         OUTPUT_HTML("  </TD>\n</TR>");
93         if (!empty($ADD)) OUTPUT_HTML($ADD);
94         OUTPUT_HTML("</TABLE>");
95 }
96
97 // Output HTML code directly or "render" it. You addionally switch the new-line character off
98 function OUTPUT_HTML($HTML, $NEW_LINE = true) {
99         // Some global variables
100         global $OUTPUT, $footer, $CSS;
101
102         // Do we have HTML-Code here?
103         if (!empty($HTML)) {
104                 // Yes, so we handle it as you have configured
105                 switch (OUTPUT_MODE)
106                 {
107                 case "render":
108                         // That's why you don't need any \n at the end of your HTML code... :-)
109                         if (_OB_CACHING == "on") {
110                                 // Output into PHP's internal buffer
111                                 OUTPUT_RAW($HTML);
112
113                                 // That's why you don't need any \n at the end of your HTML code... :-)
114                                 if ($NEW_LINE) echo "\n";
115                         } else {
116                                 // Render mode for old or lame servers...
117                                 $OUTPUT .= $HTML;
118
119                                 // That's why you don't need any \n at the end of your HTML code... :-)
120                                 if ($NEW_LINE) $OUTPUT .= "\n";
121                         }
122                         break;
123
124                 case "direct":
125                         // If we are switching from render to direct output rendered code
126                         if ((!empty($OUTPUT)) && (_OB_CACHING != "on")) { OUTPUT_RAW($OUTPUT); $OUTPUT = ""; }
127
128                         // The same as above... ^
129                         OUTPUT_RAW($HTML);
130                         if ($NEW_LINE) echo "\n";
131                         break;
132
133                 default:
134                         // Huh, something goes wrong or maybe you have edited config.php ???
135                         DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid renderer %s detected.", OUTPUT_MODE));
136                         MXCHANGE_DIE("<STRONG>".FATAL_ERROR.":</STRONG> ".LANG_NO_RENDER_DIRECT);
137                         break;
138                 }
139         } elseif ((_OB_CACHING == "on") && ($footer == 1)) {
140                 // Output cached HTML code
141                 $OUTPUT = ob_get_contents();
142
143                 // Clear output buffer for later output
144                 ob_end_clean();
145
146                 // Send HTTP header
147                 header("HTTP/1.1 200");
148
149                 // Used later
150                 $now = gmdate('D, d M Y H:i:s') . ' GMT';
151
152                 // General headers for no caching
153                 header("Expired: " . $now); // RFC2616 - Section 14.21
154                 header("Last-Modified: " . $now);
155                 header("Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0"); // HTTP/1.1
156                 header("Pragma: no-cache"); // HTTP/1.0
157                 header("Connection: Close");
158
159                 // Extension "rewrite" installed?
160                 if ((EXT_IS_ACTIVE("rewrite")) && (function_exists('REWRITE_LINKS')) && ($CSS != "1") && ($CSS != "-1")) {
161                         $OUTPUT = REWRITE_LINKS($OUTPUT);
162                 } // END - if
163
164                 // Compile and run finished rendered HTML code
165                 while (strpos($OUTPUT, '{!') > 0) {
166                         // Prepare the content and eval() it...
167                         $newContent = "";
168                         $eval = "\$newContent = \"".COMPILE_CODE(addslashes($OUTPUT))."\";";
169                         @eval($eval);
170
171                         // Was that eval okay?
172                         if (empty($newContent)) {
173                                 // Something went wrong!
174                                 die("Evaluation error:<pre>".htmlentities($eval)."</pre>");
175                         } // END - if
176                         $OUTPUT = $newContent;
177                 } // END - while
178
179                 // Output code here, DO NOT REMOVE! ;-)
180                 OUTPUT_RAW($OUTPUT);
181         } elseif ((OUTPUT_MODE == "render") && (!empty($OUTPUT))) {
182                 // Rewrite links when rewrite extension is active
183                 if ((EXT_IS_ACTIVE("rewrite")) && (function_exists('REWRITE_LINKS')) && ($CSS != "1") && ($CSS != "-1")) {
184                         $OUTPUT = REWRITE_LINKS($OUTPUT);
185                 } // END - if
186
187                 // Compile and run finished rendered HTML code
188                 while (strpos($OUTPUT, '{!') > 0) {
189                         $eval = "\$OUTPUT = \"".COMPILE_CODE(addslashes($OUTPUT))."\";";
190                         eval($eval);
191                 } // END - while
192
193                 // Output code here, DO NOT REMOVE! ;-)
194                 OUTPUT_RAW($OUTPUT);
195         }
196 }
197
198 // Output the raw HTML code
199 function OUTPUT_RAW ($HTML) {
200         // Output stripped HTML code to avoid broken JavaScript code, etc.
201         echo stripslashes(stripslashes($HTML));
202
203         // Flush the output if only _OB_CACHING is not "on"
204         if (_OB_CACHING != "on") {
205                 // Flush it
206                 flush();
207         } // END - if
208 }
209
210 // Add a fatal error message to the queue array
211 function ADD_FATAL ($message, $extra="") {
212         global $FATAL;
213
214         if (empty($extra)) {
215                 // Regular text message to add to $FATAL
216                 $FATAL[] = $message;
217         } else {
218                 // $message is text with a mask plus extras to insert into the text
219                 $message = sprintf($message, $extra);
220                 $FATAL[] = $message;
221         }
222
223         // Log fatal messages away
224         DEBUG_LOG(__FUNCTION__, __LINE__, " message={$message}");
225 }
226
227 // Load a template file and return it's content (only it's name; do not use ' or ")
228 function LOAD_TEMPLATE($template, $return=false, $content=array()) {
229         // Add more variables which you want to use in your template files
230         global $DATA, $_CONFIG, $username;
231
232         // Make all template names lowercase
233         $template = strtolower($template);
234
235         // Count the template load
236         if (!isset($_CONFIG['num_templates'])) $_CONFIG['num_templates'] = 0;
237         $_CONFIG['num_templates']++;
238
239         // Init some data
240         $ret = "";
241         if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = 0;
242
243         // @DEPRECATED Try to rewrite the if() condition
244         if ($template == "member_support_form") {
245                 // Support request of a member
246                 $result = SQL_QUERY_ESC("SELECT userid, gender, surname, family, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
247                         array($GLOBALS['userid']), __FILE__, __LINE__);
248
249                 // Is content an array?
250                 if (is_array($content)) {
251                         // Merge data
252                         $content = array_merge($content, SQL_FETCHARRAY($result));
253
254                         // Translate gender
255                         $content['gender'] = TRANSLATE_GENDER($content['gender']);
256                 } else {
257                         // DEPRECATED: Load data in direct variables
258                         list($gender, $surname, $family, $email) = SQL_FETCHROW($result);
259
260                         // Translate gender
261                         $gender = TRANSLATE_GENDER($gender);
262                         DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("DEPRECATION-WARNING: content is not array (%s).", gettype($content)));
263                 }
264
265                 // Free result
266                 SQL_FREERESULT($result);
267         } // END - if
268
269         // Generate date/time string
270         $date_time = MAKE_DATETIME(time(), "1");
271
272         // Base directory
273         $BASE = sprintf("%stemplates/%s/html/", PATH, GET_LANGUAGE());
274         $MODE = "";
275
276         // Check for admin/guest/member templates
277         if (strpos($template, "admin_") > -1) {
278                 // Admin template found
279                 $MODE = "admin/";
280         } elseif (strpos($template, "guest_") > -1) {
281                 // Guest template found
282                 $MODE = "guest/";
283         } elseif (strpos($template, "member_") > -1) {
284                 // Member template found
285                 $MODE = "member/";
286         } elseif (strpos($template, "install_") > -1) {
287                 // Installation template found
288                 $MODE = "install/";
289         } elseif (strpos($template, "ext_") > -1) {
290                 // Extension template found
291                 $MODE = "ext/";
292         } elseif (strpos($template, "la_") > -1) {
293                 // "Logical-area" template found
294                 $MODE = "la/";
295         } else {
296                 // Test for extension
297                 $test = substr($template, 0, strpos($template, "_"));
298                 if (EXT_IS_ACTIVE($test)) {
299                         // Set extra path to extension's name
300                         $MODE = $test."/";
301                 }
302         }
303
304         ////////////////////////
305         // Generate file name //
306         ////////////////////////
307         $file = $BASE.$MODE.$template.".tpl";
308
309         if ((!empty($GLOBALS['what'])) && ((strpos($template, "_header") > 0) || (strpos($template, "_footer") > 0)) && (($MODE == "guest/") || ($MODE == "member/") || ($MODE == "admin/"))) {
310                 // Select what depended header/footer template file for admin/guest/member area
311                 $file2 = sprintf("%s%s%s_%s.tpl",
312                         $BASE,
313                         $MODE,
314                         $template,
315                         SQL_ESCAPE($GLOBALS['what'])
316                 );
317
318                 // Probe for it...
319                 if (FILE_READABLE($file2)) $file = $file2;
320
321                 // Remove variable from memory
322                 unset($file2);
323         }
324
325         // Does the special template exists?
326         if (!FILE_READABLE($file)) {
327                 // Reset to default template
328                 $file = $BASE.$template.".tpl";
329         } // END - if
330
331         // Now does the final template exists?
332         if (FILE_READABLE($file)) {
333                 // The local file does exists so we load it. :)
334                 $tmpl_file = implode("", file($file));
335
336                 // Replace ' to our own chars to preventing them being quoted
337                 while (strpos($tmpl_file, "\'") !== false) { $tmpl_file = str_replace("\'", '{QUOT}', $tmpl_file); }
338
339                 // Do we have to compile the code?
340                 $ret = "";
341                 if ((strpos($tmpl_file, "\$") !== false) || (strpos($tmpl_file, '{--') !== false) || (strpos($tmpl_file, '--}') > 0)) {
342                         // Okay, compile it!
343                         $tmpl_file = "\$ret=\"".COMPILE_CODE(addslashes($tmpl_file))."\";";
344                         eval($tmpl_file);
345                 } else {
346                         // Simply return loaded code
347                         $ret = $tmpl_file;
348                 }
349
350                 // Add surrounding HTML comments to help finding bugs faster
351                 $ret = "<!-- Template ".$template." - Start -->\n".$ret."<!-- Template ".$template." - End -->\n";
352         } elseif ((IS_ADMIN()) || ((isBooleanConstantAndTrue('mxchange_installing')) && (!isBooleanConstantAndTrue('mxchange_installed')))) {
353                 // Only admins shall see this warning or when installation mode is active
354                 $ret = "<br /><SPAN class=\"guest_failed\">".TEMPLATE_404."</SPAN><br />
355 (".basename($file).")<br />
356 <br />
357 ".TEMPLATE_CONTENT."
358 <pre>".print_r($content, true)."</pre>
359 ".TEMPLATE_DATA."
360 <pre>".print_r($DATA, true)."</pre>
361 <br /><br />";
362         }
363
364         // Remove content and data
365         unset($content);
366         unset($DATA);
367
368         // Do we have some content to output or return?
369         if (!empty($ret)) {
370                 // Not empty so let's put it out! ;)
371                 if ($return) {
372                         // Return the HTML code
373                         return $ret;
374                 } else {
375                         // Output direct
376                         OUTPUT_HTML($ret);
377                 }
378         } elseif (isBooleanConstantAndTrue('DEBUG_MODE')) {
379                 // Warning, empty output!
380                 return "E:".$template."<br />\n";
381         }
382 }
383
384 // Send mail out to an email address
385 function SEND_EMAIL($TO, $SUBJECT, $MSG, $HTML = "N", $FROM = "") {
386         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$TO},SUBJECT={$SUBJECT}<br />\n";
387
388         // Compile subject line (for POINTS constant etc.)
389         $eval = "\$SUBJECT = html_entity_decode(\"".COMPILE_CODE(addslashes($SUBJECT))."\");";
390         eval($eval);
391
392         // Set from header
393         if ((!eregi("@", $TO)) && ($TO > 0)) {
394                 // Value detected, is the message extension installed?
395                 if (EXT_IS_ACTIVE("msg")) {
396                         ADD_MESSAGE_TO_BOX($TO, $SUBJECT, $MSG, $HTML);
397                         return;
398                 } else {
399                         // Load email address
400                         $result_email = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", array(bigintval($TO)), __FILE__, __LINE__);
401                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):numRows=".SQL_NUMROWS($result_email)."<br />\n";
402
403                         // Does the user exist?
404                         if (SQL_NUMROWS($result_email)) {
405                                 // Load email address
406                                 list($TO) = SQL_FETCHROW($result_email);
407                         } else {
408                                 // Set webmaster
409                                 $TO = WEBMASTER;
410                         }
411
412                         // Free result
413                         SQL_FREERESULT($result_email);
414                 }
415         } elseif ("$TO" == "0") {
416                 // Is the webmaster!
417                 $TO = WEBMASTER;
418         }
419         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$TO}<br />\n";
420
421         // Check for PHPMailer or debug-mode
422         if (!CHECK_PHPMAILER_USAGE()) {
423                 // Not in PHPMailer-Mode
424                 if (empty($FROM)) {
425                         // Load email header template
426                         $FROM = LOAD_EMAIL_TEMPLATE("header");
427                 } else {
428                         // Append header
429                         $FROM .= LOAD_EMAIL_TEMPLATE("header");
430                 }
431         } elseif (isBooleanConstantAndTrue('DEBUG_MODE')) {
432                 if (empty($FROM)) {
433                         // Load email header template
434                         $FROM = LOAD_EMAIL_TEMPLATE("header");
435                 } else {
436                         // Append header
437                         $FROM .= LOAD_EMAIL_TEMPLATE("header");
438                 }
439         }
440
441         // Compile "TO"
442         $eval = "\$TO = \"".COMPILE_CODE(addslashes($TO))."\";";
443         eval($eval);
444
445         // Compile "MSG"
446         $eval = "\$MSG = \"".COMPILE_CODE(addslashes($MSG))."\";";
447         eval($eval);
448
449         // Fix HTML parameter (default is no!)
450         if (empty($HTML)) $HTML = "N";
451         if (isBooleanConstantAndTrue('DEBUG_MODE')) {
452                 // In debug mode we want to display the mail instead of sending it away so we can debug this part
453                 echo "<pre>
454 ".htmlentities(trim($FROM))."
455 To      : ".$TO."
456 Subject : ".$SUBJECT."
457 Message : ".$MSG."
458 </pre>\n";
459
460                 // Log the mail away
461                 if (defined('DEBUG_MAIL')) DEBUG_LOG(__FUNCTION__, __LINE__, "to={$TO},subject={$SUBJECT},msg={$MSG}");
462         } elseif (($HTML == "Y") && (EXT_IS_ACTIVE("html_mail"))) {
463                 // Send mail as HTML away
464                 SEND_HTML_EMAIL($TO, $SUBJECT, $MSG, $FROM);
465         } elseif (!empty($TO)) {
466                 // Send Mail away
467                 SEND_RAW_EMAIL($TO, $SUBJECT, $MSG, $FROM);
468         } elseif ($HTML == "N") {
469                 // Problem found!
470                 SEND_RAW_EMAIL(WEBMASTER, "[PROBLEM:]".$SUBJECT, $MSG, $FROM);
471         }
472 }
473
474 // Check if legacy or PHPMailer command
475 // @private
476 function CHECK_PHPMAILER_USAGE() {
477         return ((defined('SMTP_HOSTNAME')) && (defined('SMTP_USER')) && (defined('SMTP_PASSWORD')) && (SMTP_HOSTNAME != "") && (SMTP_USER != ""));
478 }
479
480 /*
481  * Send out a raw email with PHPMailer class or legacy mail() command
482  */
483 function SEND_RAW_EMAIL ($to, $subject, $msg, $from) {
484         // Shall we use PHPMailer class or legacy mode?
485         if (CHECK_PHPMAILER_USAGE()) {
486                 // Use PHPMailer class with SMTP enabled
487                 require_once(PATH."inc/phpmailer/class.phpmailer.php");
488                 require_once(PATH."inc/phpmailer/class.smtp.php");
489
490                 // get new instance
491                 $mail = new PHPMailer();
492                 $mail->PluginDir  = sprintf("%sinc/phpmailer/", PATH);
493
494                 $mail->IsSMTP();
495                 $mail->SMTPAuth   = true;
496                 $mail->Host       = SMTP_HOSTNAME;
497                 $mail->Port       = 25;
498                 $mail->Username   = SMTP_USER;
499                 $mail->Password   = SMTP_PASSWORD;
500                 if (empty($from)) {
501                         $mail->From = WEBMASTER;
502                 } else {
503                         $mail->From = $from;
504                 }
505                 $mail->FromName   = MAIN_TITLE;
506                 $mail->Subject    = $subject;
507                 if ((EXT_IS_ACTIVE("html_mail")) && (strip_tags($msg) != $msg)) {
508                         $mail->Body       = $msg;
509                         $mail->AltBody    = "Your mail program required HTML support to read this mail!";
510                         $mail->WordWrap   = 70;
511                         $mail->IsHTML(true);
512                 } else {
513                         $mail->Body       = html_entity_decode($msg);
514                 }
515                 $mail->AddAddress($to, "");
516                 $mail->AddReplyTo(WEBMASTER,MAIN_TITLE);
517                 $mail->AddCustomHeader("Errors-To:".WEBMASTER);
518                 $mail->AddCustomHeader("X-Loop:".WEBMASTER);
519                 $mail->Send();
520         } else {
521                 // Use legacy mail() command
522                 @mail($to, $subject, html_entity_decode($msg), $from);
523         }
524 }
525 //
526
527 // Generate a password in a specified length or use default password length
528 function GEN_PASS($LEN = 0) {
529         global $_CONFIG;
530         if ($LEN == 0) $LEN = $_CONFIG['pass_len'];
531
532         // Initialize array with all allowed chars
533         $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,-,+,_,/");
534
535         // Initialize randomizer
536         mt_srand((double) microtime() * 1000000);
537
538         // Start creating password
539         $PASS = "";
540         for ($i = 0; $i < $LEN; $i++) {
541                 $PASS .= $ABC[mt_rand(0, sizeof($ABC) -1)];
542         } // END - for
543
544         // When the size is below 40 we can also add additional security by scrambling it
545         if (strlen($PASS) <= 40) {
546                 // Also scramble the password
547                 $PASS = scrambleString($PASS);
548         } // END - if
549
550         // Return the password
551         return $PASS;
552 }
553 //
554 function MAKE_DATETIME ($time, $mode="0")
555 {
556         if ($time == 0) {
557                 // Never happend
558                 return NEVER_HAPPENED;
559         } else {
560                 // Filter out numbers
561                 $time = bigintval($time);
562         }
563
564         switch (GET_LANGUAGE())
565         {
566         case "de": // German date / time format
567                 switch ($mode) {
568                         case "0": $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
569                         case "1": $ret = strtolower(date("d.m.Y - H:i", $time)); break;
570                         case "2": $ret = date("d.m.Y|H:i", $time); break;
571                         case "3": $ret = date("d.m.Y", $time); break;
572                         default:
573                                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
574                                 break;
575                 }
576                 break;
577
578         default:        // Default is the US date / time format!
579                 switch ($mode) {
580                         case "0": $ret = date("r", $time); break;
581                         case "1": $ret = date("Y-m-d - g:i A", $time); break;
582                         case "2": $ret = date("y-m-d|H:i", $time); break;
583                         case "3": $ret = date("y-m-d", $time); break;
584                         default:
585                                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
586                                 break;
587                 }
588         }
589         return $ret;
590 }
591
592 // Translates the american decimal dot into a german comma
593 function TRANSLATE_COMMA ($dotted, $cut=true, $max=0) {
594         global $_CONFIG;
595
596         // Default is 3 you can change this in admin area "Misc -> Misc Options"
597         if (empty($_CONFIG['max_comma'])) $_CONFIG['max_comma'] = "3";
598
599         // Use from config is default
600         $maxComma = $_CONFIG['max_comma'];
601
602         // Use from parameter?
603         if ($max > 0) $maxComma = $max;
604
605         // Cut zeros off?
606         if (($cut) && ($max == 0)) {
607                 // Test for commata if in cut-mode
608                 $com = explode(".", $dotted);
609                 if (count($com) < 2) {
610                         // Don't display commatas even if there are none... ;-)
611                         $maxComma = 0;
612                 }
613         } // END - if
614
615         // Debug log
616         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "dotted={$dotted},maxComma={$maxComma}");
617
618         // Translate it now
619         switch (GET_LANGUAGE()) {
620         case "de":
621                 $dotted = number_format($dotted, $maxComma, ",", ".");
622                 break;
623
624         default:
625                 $dotted = number_format($dotted, $maxComma, ".", ",");
626                 break;
627         }
628
629         // Return translated value
630         return $dotted;
631 }
632
633 //
634 function DEREFERER ($URL) {
635         // Don't de-refer our own links!
636         if (substr($URL, 0, strlen(URL)) != URL) {
637                 // De-refer this link
638                 $URL = URL."/modules.php?module=loader&amp;url=".urlencode(base64_encode(gzcompress($URL)));
639         } // END - if
640
641         // Return link
642         return $URL;
643 }
644
645 //
646 function TRANSLATE_GENDER ($gender) {
647         switch ($gender)
648         {
649                 case "M": $ret = GENDER_M; break;
650                 case "F": $ret = GENDER_F; break;
651                 case "C": $ret = GENDER_C; break;
652                 default : $ret = $gender; break;
653         }
654         return $ret;
655 }
656 //
657 function FRAMETESTER($URL) {
658         // Prepare frametester URL
659         $frametesterUrl = sprintf("%s/modules.php?module=frametester&amp;url=%s",
660                 URL,
661                 urlencode(base64_encode(gzcompress(COMPILE_CODE($URL))))
662         );
663         return $frametesterUrl;
664 }
665 //
666 function SELECTION_COUNT($array) {
667         $ret = 0;
668         if (is_array($array)) {
669                 foreach ($array as $key => $sel) {
670                         if (!empty($sel)) $ret++;
671                 }
672         }
673         return $ret;
674 }
675 //
676 function IMG_CODE ($code, $type, $DATA, $uid) {
677         return "<IMG border=\"0\" alt=\"Code\" src=\"".URL."/mailid_top.php?uid=".$uid."&amp;".$type."=".$DATA."&amp;mode=img&amp;code=".$code."\">";
678 }
679 //
680 function TRANSLATE_STATUS($status) {
681         switch ($status)
682         {
683         case "UNCONFIRMED":
684                 $ret = ACCOUNT_UNCONFIRMED;
685                 break;
686
687         case "CONFIRMED":
688                 $ret = ACCOUNT_CONFIRMED;
689                 break;
690
691         case "LOCKED":
692                 $ret = ACCOUNT_LOCKED;
693                 break;
694
695         case "":
696         case null:
697                 $ret = ACCOUNT_DELETED;
698                 break;
699
700         default:
701                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
702                 $ret = UNKNOWN_STATUS_1.$status.UNKNOWN_STATUS_2;
703                 break;
704         }
705         return $ret;
706 }
707 //
708 function GET_LANGUAGE() {
709         global $cacheArray;
710
711         // Set default return value to default language from config
712         $ret = DEFAULT_LANG;
713
714         // Init variable
715         $lang = "";
716
717         // Is the variable set
718         if (!empty($_GET['mx_lang'])) {
719                 // Accept only first 2 chars
720                 $lang = substr($_GET['mx_lang'], 0, 2);
721         } elseif (isset($cacheArray['language'])) {
722                 // Use cached
723                 $ret = $cacheArray['language'];
724         } elseif (!empty($lang)) {
725                 // Check if main language file does exist
726                 if (FILE_READABLE(PATH."inc/language/".$lang.".php")) {
727                         // Okay found, so let's update cookies
728                         SET_LANGUAGE($lang);
729                 }
730         } elseif (!isSessionVariableSet('mx_lang')) {
731                 // Return stored value from cookie
732                 $ret = get_session('mx_lang');
733
734                 // Fixes a warning before the session has the mx_lang constant
735                 if (empty($ret)) $ret = DEFAULT_LANG;
736         }
737
738         // Cache entry
739         $cacheArray['language'] = $ret;
740
741         // Return value
742         return $ret;
743 }
744 //
745 function SET_LANGUAGE($lang) {
746         global $_CONFIG;
747
748         // Accept only first 2 chars!
749         $lang = substr(SQL_ESCAPE(strip_tags($lang)), 0, 2);
750
751         // Set cookie
752         set_session("mx_lang", $lang);
753 }
754 //
755 function LOAD_EMAIL_TEMPLATE($template, $content=array(), $UID="0") {
756         global $DATA, $_CONFIG, $REPLACER;
757
758         // Make sure all template names are lowercase!
759         $template = strtolower($template);
760
761         // Default "nickname" if extension is not installed
762         $nick = "---";
763
764         // Keept for backward-compatiblity (please replace these variables against our new {!CONST!} syntax!)
765         // No longer used: $MAIN_TITLE = MAIN_TITLE; $URL = URL; $WEBMASTER = WEBMASTER;
766
767         // Prepare IP number and User Agent
768         $REMOTE_ADDR     = GET_REMOTE_ADDR();
769         $HTTP_USER_AGENT = GET_USER_AGENT();
770
771         // Default admin
772         $ADMIN = MAIN_TITLE;
773
774         // Is the admin logged in?
775         if (IS_ADMIN()) {
776                 // Get admin id
777                 $aid = GET_ADMIN_ID(get_session('admin_login'));
778
779                 // Load Admin data
780                 $ADMIN = GET_ADMIN_EMAIL($aid);
781         } // END - if
782
783         // Neutral email address is default
784         $email = WEBMASTER;
785
786         // Expiration in a nice output format
787         if ($_CONFIG['auto_purge'] == 0) {
788                 // Will never expire!
789                 $EXPIRATION = MAIL_WILL_NEVER_EXPIRE;
790         } elseif (function_exists('CREATE_FANCY_TIME')) {
791                 // Create nice date string
792                 $EXPIRATION = CREATE_FANCY_TIME($_CONFIG['auto_purge']);
793         } else {
794                 // Display days only
795                 $EXPIRATION = round($_CONFIG['auto_purge']/60/60/24)." "._DAYS;
796         }
797
798         // Is content an array?
799         if (is_array($content)) {
800                 // Add expiration to array, $EXPIRATION is now deprecated!
801                 $content['expiration'] = $EXPIRATION;
802         } // END - if
803
804         // Load user's data
805         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):UID={$UID},template={$template}<br />\n";
806         if ($UID > 0) {
807                 if (EXT_IS_ACTIVE("nickname")) {
808                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NICKNAME!<br />\n";
809                         // Load nickname
810                         $result = SQL_QUERY_ESC("SELECT surname, family, gender, email, nickname FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
811                                 array(bigintval($UID)), __FILE__, __LINE__);
812                 } else {
813                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NO-NICK!<br />\n";
814                         /// Load normal data
815                         $result = SQL_QUERY_ESC("SELECT surname, family, gender, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
816                                 array(bigintval($UID)), __FILE__, __LINE__);
817                 }
818
819                 // Is content an array?
820                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content[]=".gettype($content)."<br />\n";
821                 if (is_array($content)) {
822                         // Fetch and migrate data
823                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - PRE<br />\n";
824                         $content = array_merge($content, SQL_FETCHARRAY($result));
825                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - AFTER<br />\n";
826                 } // END - if
827
828                 // Free result
829                 SQL_FREERESULT($result);
830         } // END - if
831
832         // Translate M to male or F to female if present
833         if (isset($content['gender'])) $content['gender'] = TRANSLATE_GENDER($content['gender']);
834
835         // Overwrite email from data if present
836         if (isset($content['email']))  $email = $content['email'];
837
838         // Store email for some functions in global data array
839         $DATA['email'] = $email;
840
841         // Base directory
842         $BASE = sprintf("%stemplates/%s/emails/", PATH, GET_LANGUAGE());
843
844         // Check for admin/guest/member templates
845         if (strpos($template, "admin_") > -1) {
846                 // Admin template found
847                 $file = $BASE."admin/".$template.".tpl";
848         } elseif (strpos($template, "guest_") > -1) {
849                 // Guest template found
850                 $file = $BASE."guest/".$template.".tpl";
851         } elseif (strpos($template, "member_") > -1) {
852                 // Member template found
853                 $file = $BASE."member/".$template.".tpl";
854         } else {
855                 // Test for extension
856                 $test = substr($template, 0, strpos($template, "_"));
857                 if (EXT_IS_ACTIVE($test)) {
858                         // Set extra path to extension's name
859                         $file = $BASE.$test."/".$template.".tpl";
860                 } else {
861                         // No special filename
862                         $file = $BASE.$template.".tpl";
863                 }
864         }
865
866         // Does the special template exists?
867         if (!FILE_READABLE($file)) {
868                 // Reset to default template
869                 $file = $BASE.$template.".tpl";
870         } // END - if
871
872         // Now does the final template exists?
873         $newContent = "";
874         if (FILE_READABLE($file)) {
875                 // The local file does exists so we load it. :)
876                 $tmpl_file = implode("", file($file));
877                 $tmpl_file = addslashes($tmpl_file);
878
879                 // Run code
880                 $tmpl_file = "\$newContent=html_entity_decode(\"".COMPILE_CODE($tmpl_file)."\");";
881                 @eval($tmpl_file);
882         } elseif (!empty($template)) {
883                 // Template file not found!
884                 $newContent = 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) $newContent = strip_tags($newContent);
893         } else {
894                 // No template name supplied!
895                 $newContent = NO_TEMPLATE_SUPPLIED;
896         }
897
898         // Is there some content?
899         if (empty($newContent)) {
900                 // Compiling failed
901                 $newContent = "Compiler error for template {$template}!\nUncompiled content:\n".$tmpl_file;
902                 if (function_exists('error_get_last')) $newContent .= "\n--------------------------------------\nDebug:\n".print_r(error_get_last(), true)."--------------------------------------\nPlease don't alter these informations!\nThanx.";
903         } // END - if
904
905         // Remove content and data
906         unset($content);
907         unset($DATA);
908
909         // Return compiled content
910         return COMPILE_CODE($newContent);
911 }
912 //
913 function MAKE_TIME($H, $M, $S, $stamp) {
914         // Extract day, month and year from given timestamp
915         $DAY   = date("d", $stamp);
916         $MONTH = date("m", $stamp);
917         $YEAR  = date('Y', $stamp);
918
919         // Create timestamp for wished time which depends on extracted date
920         return mktime($H, $M, $S, $MONTH, $DAY, $YEAR);
921 }
922 //
923 function LOAD_URL($URL, $addUrlData=true) {
924         global $CSS, $_CONFIG, $footer;
925
926         // Compile out URI codes
927         $URL = COMPILE_CODE($URL);
928
929         // Check if http(s):// is there
930         if ((substr($URL, 0, 7) != "http://") && (substr($URL, 0, 8) != "https://")) {
931                 // Make all URLs full-qualified
932                 $URL = URL."/".$URL;
933         }
934
935         // Get output buffer
936         $OUTPUT = ob_get_contents();
937
938         // Clear it only if there is content
939         if (!empty($OUTPUT)) {
940                 ob_end_clean();
941         } // END - if
942
943         // Add some data to URL if cookies are not accepted
944         if (((!defined('__COOKIES')) || (!__COOKIES)) && ($addUrlData)) $URL = ADD_URL_DATA($URL);
945
946         // Probe for bot from search engine
947         if ((eregi("spider", GET_USER_AGENT())) || (eregi("bot", GET_USER_AGENT())) || (eregi("spider", GET_USER_AGENT()))) {
948                 // Search engine bot detected so let's rewrite many chars for the link
949                 $URL = htmlentities(strip_tags($URL), ENT_QUOTES);
950
951                 // Output new location link as anchor
952                 OUTPUT_HTML("<A href=\"".$URL."\">".$URL."</A>");
953         } elseif (!headers_sent()) {
954                 // Load URL when headers are not sent
955                 /*
956                 print("<pre>");
957                 debug_print_backtrace();
958                 die("</pre>URL={$URL}");
959                 */
960                 @header ("Location: ".str_replace("&amp;", "&", $URL));
961         } else {
962                 // Output error message
963                 include(PATH."inc/header.php");
964                 LOAD_TEMPLATE("redirect_url", false, str_replace("&amp;", "&", $URL));
965                 include(PATH."inc/footer.php");
966         }
967         exit();
968 }
969 //
970 function COMPILE_CODE($code, $simple = false, $constants = true, $full = true) {
971         global $SEC_CHARS, $URL_CHARS;
972         // Is the code a string?
973         if (!is_string($code)) {
974                 // Silently return it
975                 return $code;
976         } // END - if
977
978         $ARRAY = $SEC_CHARS;
979
980         // Select smaller set of chars to replace when we e.g. want to compile URLs
981         if (!$full) $ARRAY = $URL_CHARS;
982
983         // Compile constants
984         if ($constants) {
985                 // BEFORE 0.2.1 : Language and data constants
986                 // WITH 0.2.1+  : Only language constants
987                 $code = str_replace('{--','".', str_replace('--}','."', $code));
988
989                 // BEFORE 0.2.1 : Not used
990                 // WITH 0.2.1+  : Data constants
991                 $code = str_replace('{!','".', str_replace("!}", '."', $code));
992         } // END - if
993
994         // Compile QUOT and other non-HTML codes
995         foreach ($ARRAY['to'] as $k => $to) {
996                 // Do the reversed thing as in inc/libs/security_functions.php
997                 $code = str_replace($to, $ARRAY['from'][$k], $code);
998         } // END - foreach
999
1000         // But shall I keep simple quotes for later use?
1001         if ($simple) $code = str_replace("\'", '{QUOT}', $code);
1002
1003         // Find $content[bla][blub] entries
1004         @preg_match_all('/\$(content|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
1005
1006         // Are some matches found?
1007         if ((count($matches) > 0) && (count($matches[0]) > 0)) {
1008                 // Replace all matches
1009                 $matchesFound = array();
1010                 foreach ($matches[0] as $key => $match) {
1011                         // Fuzzy look has failed by default
1012                         $fuzzyFound = false;
1013
1014                         // Fuzzy look on match if already found
1015                         foreach ($matchesFound as $found => $set) {
1016                                 // Get test part
1017                                 $test = substr($found, 0, strlen($match));
1018
1019                                 // Does this entry exist?
1020                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):found={$found},match={$match},set={$set}<br />\n";
1021                                 if ($test == $match) {
1022                                         // Match found!
1023                                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):fuzzyFound!<br />\n";
1024                                         $fuzzyFound = true;
1025                                         break;
1026                                 } // END - if
1027                         } // END - foreach
1028
1029                         // Skip this entry?
1030                         if ($fuzzyFound) continue;
1031
1032                         // Take all string elements
1033                         if ((is_string($matches[4][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key."_".$matches[4][$key]]))) {
1034                                 // Replace it in the code
1035                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):key={$key},match={$match}<br />\n";
1036                                 $newMatch = str_replace("[".$matches[4][$key]."]", "['".$matches[4][$key]."']", $match);
1037                                 $code = str_replace($match, "\".".$newMatch.".\"", $code);
1038                                 $matchesFound[$key."_".$matches[4][$key]] = 1;
1039                                 $matchesFound[$match] = 1;
1040                         } elseif (!isset($matchesFound[$match])) {
1041                                 // Not yet replaced!
1042                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):match={$match}<br />\n";
1043                                 $code = str_replace($match, "\".".$match.".\"", $code);
1044                                 $matchesFound[$match] = 1;
1045                         }
1046                 } // END - foreach
1047         } // END - if
1048
1049         // Return compiled code
1050         return $code;
1051 }
1052 //
1053 /************************************************************************
1054  *                                                                      *
1055  * Gaenderter Sortier-Algorythmus, $array wird nach dem Array (!)       *
1056  * $a_sort sortiert:                                                    *
1057  *                                                                      *
1058  * $array - Das 3-dimensionale Array, das paralell sortiert werden soll *
1059  * $a_sort - Array, das die Sortiereihenfolge der ersten Elementeben    *
1060  * $primary_key - Prim.rschl.ssel aus $a_sort, nach dem sortiert wird   *
1061  * $order - Sortiereihenfolge: -1 = A-Z, 0 = keine, 1 = Z-A             *
1062  * $nums - true = Als Zahlen sortieren, false = Als Zeichen sortieren   *
1063  *                                                                      *
1064  * $a_sort muss Elemente enthalten, deren Wert Schluessel von $array    *
1065  * sind... Klingt kompliziert, suchen Sie mal mein Beispiel, dann sehen *
1066  * Sie, dass es doch nicht so schwer ist! :-)                           *
1067  *                                                                      *
1068  ************************************************************************/
1069 function array_pk_sort(&$array, $a_sort, $primary_key = 0, $order = -1, $nums = false)
1070 {
1071         $dummy = $array;
1072         while ($primary_key < count($a_sort)) {
1073                 foreach ($dummy[$a_sort[$primary_key]] as $key => $value) {
1074                         foreach ($dummy[$a_sort[$primary_key]] as $key2 => $value2) {
1075                                 $match = false;
1076                                 if (!$nums) {
1077                                         // Sort byte-by-byte (also numbers will be interpreted as chars! E.g.: "9" > "10")
1078                                         if (($key != $key2) && (strcmp(strtolower($dummy[$a_sort[$primary_key]][$key]), strtolower($dummy[$a_sort[$primary_key]][$key2])) == $order)) $match = true;
1079                                 } elseif ($key != $key2) {
1080                                         // Sort numbers (E.g.: 9 < 10)
1081                                         if (($dummy[$a_sort[$primary_key]][$key] < $dummy[$a_sort[$primary_key]][$key2]) && ($order == -1)) $match = true;
1082                                         if (($dummy[$a_sort[$primary_key]][$key] > $dummy[$a_sort[$primary_key]][$key2]) && ($order == 1))  $match = true;
1083                                 }
1084
1085                                 if ($match) {
1086                                         // We have found two different values, so let's sort whole array
1087                                         foreach ($dummy as $sort_key => $sort_val) {
1088                                                 $t                       = $dummy[$sort_key][$key];
1089                                                 $dummy[$sort_key][$key]  = $dummy[$sort_key][$key2];
1090                                                 $dummy[$sort_key][$key2] = $t;
1091                                                 unset($t);
1092                                         } // END - foreach
1093                                 } // END - if
1094                         } // END - foreach
1095                 } // END - foreach
1096
1097                 // Count one up
1098                 $primary_key++;
1099         } // END - while
1100
1101         // Write back sorted array
1102         $array = $dummy;
1103 }
1104 //
1105 function ADD_SELECTION($type, $DEFAULT, $prefix="", $id="0") {
1106         global $MONTH_DESCR, $_CONFIG;
1107         $OUT = "";
1108
1109         if ($type == "yn") {
1110                 // This is a yes/no selection only!
1111                 if ($id > 0) $prefix .= "[".$id."]";
1112                 $OUT .= "    <SELECT name=\"".$prefix."\" class=\"register_select\" size=\"1\">\n";
1113         } else {
1114                 // Begin with regular selection box here
1115                 if (!empty($prefix)) $prefix .= "_";
1116                 $type2 = $type;
1117                 if ($id > 0) $type2 .= "[".$id."]";
1118                 $OUT .= "    <SELECT name=\"".strtolower($prefix.$type2)."\" class=\"register_select\" size=\"1\">\n";
1119         }
1120
1121         switch ($type) {
1122         case "day": // Day
1123                 for ($idx = 1; $idx < 32; $idx++) {
1124                         $OUT .= "<OPTION value=\"".$idx."\"";
1125                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1126                         $OUT .= ">".$idx."</OPTION>\n";
1127                 } // END - for
1128                 break;
1129
1130         case "month": // Month
1131                 foreach ($MONTH_DESCR as $month => $descr) {
1132                         $OUT .= "<OPTION value=\"".$month."\"";
1133                         if ($DEFAULT == $month) $OUT .= " selected=\"selected\"";
1134                         $OUT .= ">".$descr."</OPTION>\n";
1135                 } // END - for
1136                 break;
1137
1138         case "year": // Year
1139                 // Get current year
1140                 $YEAR = date('Y', time());
1141
1142                 // Use configured min age or fixed?
1143                 if (GET_EXT_VERSION("other") >= "0.2.1") {
1144                         // Configured
1145                         $startYear = $YEAR - $_CONFIG['min_age'];
1146                 } else {
1147                         // Fixed 16 years
1148                         $startYear = $YEAR - 16;
1149                 }
1150
1151                 // Calculate earliest year (100 years old people can still enter Internet???)
1152                 $minYear = $YEAR - 100;
1153
1154                 // Check if the default value is larger than minimum and bigger than actual year
1155                 if (($DEFAULT > $minYear) && ($DEFAULT >= $YEAR)) {
1156                         for ($idx = $YEAR; $idx < ($YEAR + 11); $idx++) {
1157                                 $OUT .= "<OPTION value=\"".$idx."\"";
1158                                 if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1159                                 $OUT .= ">".$idx."</OPTION>\n";
1160                         } // END - for
1161                 } elseif ($DEFAULT == -1) {
1162                         // Current year minus 1
1163                         for ($idx = $startYear; $idx <= ($YEAR + 1); $idx++)
1164                         {
1165                                 $OUT .= "<OPTION value=\"".$idx."\">".$idx."</OPTION>\n";
1166                         }
1167                 } else {
1168                         // Get current year and subtract the configured minimum age
1169                         $OUT .= "<OPTION value=\"".($minYear - 1)."\">&lt;".$minYear."</OPTION>\n";
1170                         // Calculate earliest year depending on extension version
1171                         if (GET_EXT_VERSION("other") >= "0.2.1") {
1172                                 // Use configured minimum age
1173                                 $YEAR = date('Y', time()) - $_CONFIG['min_age'];
1174                         } else {
1175                                 // Use fixed 16 years age
1176                                 $YEAR = date('Y', time()) - 16;
1177                         }
1178
1179                         // Construct year selection list
1180                         for ($idx = $minYear; $idx <= $YEAR; $idx++) {
1181                                 $OUT .= "<OPTION value=\"".$idx."\"";
1182                                 if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1183                                 $OUT .= ">".$idx."</OPTION>\n";
1184                         } // END - for
1185                 }
1186                 break;
1187
1188         case "sec":
1189         case "min":
1190                 for ($idx = 0; $idx < 60; $idx+=5) {
1191                         if (strlen($idx) == 1) $idx = "0".$idx;
1192                         $OUT .= "<OPTION value=\"".$idx."\"";
1193                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1194                         $OUT .= ">".$idx."</OPTION>\n";
1195                 } // END - for
1196                 break;
1197
1198         case "hour":
1199                 for ($idx = 0; $idx < 24; $idx++) {
1200                         if (strlen($idx) == 1) $idx = "0".$idx;
1201                         $OUT .= "<OPTION value=\"".$idx."\"";
1202                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1203                         $OUT .= ">".$idx."</OPTION>\n";
1204                 } // END - for
1205                 break;
1206
1207         case "yn":
1208                 $OUT .= "<OPTION value=\"Y\"";
1209                 if ($DEFAULT == "Y") $OUT .= " selected=\"selected\"";
1210                 $OUT .= ">".YES."</OPTION>\n<OPTION value=\"N\"";
1211                 if ($DEFAULT == "N") $OUT .= " selected=\"selected\"";
1212                 $OUT .= ">".NO."</OPTION>\n";
1213                 break;
1214         }
1215         $OUT .= "    </SELECT>\n";
1216         return $OUT;
1217 }
1218 //
1219 function TRANSLATE_YESNO($yn)
1220 {
1221         switch ($yn)
1222         {
1223                 case 'Y': $yn = YES; break;
1224                 case 'N': $yn = NO; break;
1225                 default : $yn = "??? (".$yn.")"; break;
1226         }
1227         return $yn;
1228 }
1229 //
1230 // Deprecated : $length
1231 // Optional   : $DATA
1232 //
1233 function GEN_RANDOM_CODE($length, $code, $uid, $DATA="") {
1234         global $_CONFIG;
1235
1236         // Fix missing _MAX constant
1237         if (!defined('_MAX')) define('_MAX', 15235);
1238
1239         // Build server string
1240         $server = $_SERVER['PHP_SELF'].":".GET_USER_AGENT().":".getenv('SERVER_SOFTWARE').":".GET_REMOTE_ADDR().":".":".filemtime(PATH."inc/databases.php");
1241
1242         // Build key string
1243         $keys   = SITE_KEY.":".DATE_KEY;
1244         if (isset($_CONFIG['secret_key']))  $keys .= ":".$_CONFIG['secret_key'];
1245         if (isset($_CONFIG['file_hash']))   $keys .= ":".$_CONFIG['file_hash'];
1246         $keys .= ":".date("d-m-Y (l-F-T)", bigintval($_CONFIG['patch_ctime']));
1247         if (isset($_CONFIG['master_salt'])) $keys .= ":".$_CONFIG['master_salt'];
1248
1249         // Build string from misc data
1250         $data   = $code.":".$uid.":".$DATA;
1251
1252         // Add more additional data
1253         if (isSessionVariableSet('u_hash'))                     $data .= ":".get_session('u_hash');
1254         if (isset($GLOBALS['userid']))                          $data .= ":".$GLOBALS['userid'];
1255         if (isSessionVariableSet('lifetime'))           $data .= ":".get_session('lifetime');
1256         if (isSessionVariableSet('mxchange_theme'))     $data .= ":".get_session('mxchange_theme');
1257         if (isSessionVariableSet('mx_lang'))            $data .= ":".GET_LANGUAGE();
1258         if (isset($GLOBALS['refid']))                           $data .= ":".$GLOBALS['refid'];
1259
1260         // Calculate number for generating the code
1261         $a = $code + _ADD - 1;
1262
1263         if (isset($_CONFIG['master_hash'])) {
1264                 // Generate hash with master salt from modula of number with the prime number and other data
1265                 $saltedHash = generateHash(($a % _PRIME).":".$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a, $_CONFIG['master_salt']);
1266
1267                 // Create number from hash
1268                 $rcode = hexdec(substr($saltedHash, strlen($_CONFIG['master_salt']), 9)) / abs(_MAX - $a + sqrt(_ADD)) / pi();
1269         } else {
1270                 // Generate hash with "hash of site key" from modula of number with the prime number and other data
1271                 $saltedHash = generateHash(($a % _PRIME).":".$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a, substr(sha1(SITE_KEY), 0, 8));
1272
1273                 // Create number from hash
1274                 $rcode = hexdec(substr($saltedHash, 8, 9)) / abs(_MAX - $a + sqrt(_ADD)) / pi();
1275         }
1276
1277         // At least 10 numbers shall be secure enought!
1278         $len = $_CONFIG['code_length'];
1279         if ($len == 0) $len = $length;
1280         if ($len == 0) $len = 10;
1281
1282         // Cut off requested counts of number
1283         $return = substr(str_replace('.', "", $rcode), 0, $len);
1284
1285         // Done building code
1286         return $return;
1287 }
1288 // Does only allow numbers
1289 function bigintval($num, $castValue = true) {
1290         // Filter all numbers out
1291         $ret = preg_replace("/[^0123456789]/", "", $num);
1292
1293         // Shall we cast?
1294         if ($castValue) $ret = (double)$ret;
1295
1296         // Has the whole value changed?
1297         if ("".$ret."" != "".$num."") {
1298                 // Log the values
1299                 print("<pre>");
1300                 debug_print_backtrace();
1301                 die("</pre>");
1302                 DEBUG_LOG(__FUNCTION__, __LINE__, " num={$num},ret={$ret}");
1303         } // END - if
1304
1305         // Return result
1306         return $ret;
1307 }
1308 // Insert the code in $img_code into jpeg or PNG image
1309 function GENERATE_IMAGE($img_code, $header=true) {
1310         global $_CONFIG;
1311
1312         if ((strlen($img_code) > 6) || (empty($img_code)) || ($_CONFIG['code_length'] == 0)) {
1313                 // Stop execution of function here because of over-sized code length
1314                 return;
1315         } elseif (!$header) {
1316                 // Return in an HTML code code
1317                 return "<IMG src=\"".URL."/img.php?code=".$img_code."\">\n";
1318         }
1319
1320         // Load image
1321         $img = sprintf("%s/theme/%s/images/code_bg.%s", PATH, GET_CURR_THEME(), $_CONFIG['img_type']);
1322         if (FILE_READABLE($img)) {
1323                 // Switch image type
1324                 switch ($_CONFIG['img_type'])
1325                 {
1326                 case "jpg":
1327                         // Okay, load image and hide all errors
1328                         $image = @imagecreatefromjpeg($img);
1329                         break;
1330
1331                 case "png":
1332                         // Okay, load image and hide all errors
1333                         $image = @imagecreatefrompng($img);
1334                         break;
1335                 }
1336         } else {
1337                 // Exit function here
1338                 return;
1339         }
1340
1341         // Generate text color (red/green/blue; 0 = dark, 255 = bright)
1342         $text_color = imagecolorallocate($image, 0, 0, 0);
1343
1344         // Insert code into image
1345         imagestring($image, 5, 14, 2, $img_code, $text_color);
1346
1347         // Return to browser
1348         header ("Content-Type: image/".$_CONFIG['img_type']);
1349
1350         // Output image with matching image factory
1351         switch ($_CONFIG['img_type']) {
1352                 case "jpg": imagejpeg($image); break;
1353                 case "png": imagepng($image);  break;
1354         }
1355
1356         // Remove image from memory
1357         imagedestroy($image);
1358 }
1359 // Create selection box or array of splitted timestamp
1360 function CREATE_TIME_SELECTIONS($timestamp, $prefix="", $display="", $align="center", $return_array=false) {
1361         global $_CONFIG;
1362
1363         // Calculate 2-seconds timestamp
1364         $stamp = round($timestamp);
1365
1366         // Do we have a leap year?
1367         $SWITCH = 0;
1368         $TEST = date('Y', time()) / 4;
1369         $M1 = date("m", time());
1370         $M2 = date("m", (time() + $stamp));
1371
1372         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1373         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($M2 > "02"))  $SWITCH = $_CONFIG['one_day'];
1374
1375         // First of all years...
1376         $Y = abs(floor($stamp / (31536000 + $SWITCH)));
1377         // Next months...
1378         $M = abs(floor($stamp / 2628000 - $Y * 12));
1379         // Next weeks
1380         $W = abs(floor($stamp / 604800 - $Y * ((365 + $SWITCH / $_CONFIG['one_day']) / 7) - ($M / 12 * (365 + $SWITCH / $_CONFIG['one_day']) / 7)));
1381         // Next days...
1382         $D = abs(floor($stamp / 86400 - $Y * (365 + $SWITCH / $_CONFIG['one_day']) - ($M / 12 * (365 + $SWITCH / $_CONFIG['one_day'])) - $W * 7));
1383         // Next hours...
1384         $h = abs(floor($stamp / 3600 - $Y * (365 + $SWITCH / $_CONFIG['one_day']) * 24 - ($M / 12 * (365 + $SWITCH / $_CONFIG['one_day']) * 24) - $W * 7 * 24 - $D * 24));
1385         // Next minutes..
1386         $m = abs(floor($stamp / 60 - $Y * (365 + $SWITCH / $_CONFIG['one_day']) * 24 * 60 - ($M / 12 * (365 + $SWITCH / $_CONFIG['one_day']) * 24 * 60) - $W * 7 * 24 * 60 - $D * 24 * 60 - $h * 60));
1387         // And at last seconds...
1388         $s = abs(floor($stamp - $Y * (365 + $SWITCH / $_CONFIG['one_day']) * 24 * 3600 - ($M / 12 * (365 + $SWITCH / $_CONFIG['one_day']) * 24 * 3600) - $W * 7 * 24 * 3600 - $D * 24 * 3600 - $h * 3600 - $m * 60));
1389
1390         // Is seconds zero and time is < 60 seconds?
1391         if (($s == 0) && ($stamp < 60)) {
1392                 // Fix seconds
1393                 $s = round($timestamp);
1394         } // END - if
1395
1396         //
1397         // Now we convert them in seconds...
1398         //
1399         if ($return_array) {
1400                 // Just put all data in an array for later use
1401                 $OUT = array(
1402                         'YEARS'   => $Y,
1403                         'MONTHS'  => $M,
1404                         'WEEKS'   => $W,
1405                         'DAYS'    => $D,
1406                         'HOURS'   => $h,
1407                         'MINUTES' => $m,
1408                         'SECONDS' => $s
1409                 );
1410         } else {
1411                 // Generate table
1412                 $OUT  = "<DIV align=\"".$align."\">\n";
1413                 $OUT .= "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"admin_table dashed\">\n";
1414                 $OUT .= "<TR>\n";
1415
1416                 if (ereg('Y', $display) || (empty($display))) {
1417                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._YEARS."</STRONG></TD>\n";
1418                 }
1419
1420                 if (ereg("M", $display) || (empty($display))) {
1421                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._MONTHS."</STRONG></TD>\n";
1422                 }
1423
1424                 if (ereg("W", $display) || (empty($display))) {
1425                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._WEEKS."</STRONG></TD>\n";
1426                 }
1427
1428                 if (ereg("D", $display) || (empty($display))) {
1429                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._DAYS."</STRONG></TD>\n";
1430                 }
1431
1432                 if (ereg("h", $display) || (empty($display))) {
1433                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._HOURS."</STRONG></TD>\n";
1434                 }
1435
1436                 if (ereg("m", $display) || (empty($display))) {
1437                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._MINUTES."</STRONG></TD>\n";
1438                 }
1439
1440                 if (ereg("s", $display) || (empty($display))) {
1441                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._SECONDS."</STRONG></TD>\n";
1442                 }
1443
1444                 $OUT .= "</TR>\n";
1445                 $OUT .= "<TR>\n";
1446
1447                 if (ereg('Y', $display) || (empty($display))) {
1448                         // Generate year selection
1449                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_ye\" size=\"1\">\n";
1450                         for ($idx = 0; $idx <= 10; $idx++) {
1451                                 $OUT .= "    <OPTION class=\"mini_select\" value=\"".$idx."\"";
1452                                 if ($idx == $Y) $OUT .= " selected default";
1453                                 $OUT .= ">".$idx."</OPTION>\n";
1454                         }
1455                         $OUT .= "  </SELECT></TD>\n";
1456                 } else {
1457                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ye\" value=\"0\">\n";
1458                 }
1459
1460                 if (ereg("M", $display) || (empty($display))) {
1461                         // Generate month selection
1462                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_mo\" size=\"1\">\n";
1463                         for ($idx = 0; $idx <= 11; $idx++)
1464                         {
1465                                         $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1466                                 if ($idx == $M) $OUT .= " selected default";
1467                                 $OUT .= ">".$idx."</OPTION>\n";
1468                         }
1469                         $OUT .= "  </SELECT></TD>\n";
1470                 } else {
1471                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mo\" value=\"0\">\n";
1472                 }
1473
1474                 if (ereg("W", $display) || (empty($display))) {
1475                         // Generate week selection
1476                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_we\" size=\"1\">\n";
1477                         for ($idx = 0; $idx <= 4; $idx++) {
1478                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1479                                 if ($idx == $W) $OUT .= " selected default";
1480                                 $OUT .= ">".$idx."</OPTION>\n";
1481                         }
1482                         $OUT .= "  </SELECT></TD>\n";
1483                 } else {
1484                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_we\" value=\"0\">\n";
1485                 }
1486
1487                 if (ereg("D", $display) || (empty($display))) {
1488                         // Generate day selection
1489                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_da\" size=\"1\">\n";
1490                         for ($idx = 0; $idx <= 31; $idx++) {
1491                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1492                                 if ($idx == $D) $OUT .= " selected default";
1493                                 $OUT .= ">".$idx."</OPTION>\n";
1494                         }
1495                         $OUT .= "  </SELECT></TD>\n";
1496                 } else {
1497                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_da\" value=\"0\">\n";
1498                 }
1499
1500                 if (ereg("h", $display) || (empty($display))) {
1501                         // Generate hour selection
1502                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_ho\" size=\"1\">\n";
1503                         for ($idx = 0; $idx <= 23; $idx++)      {
1504                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1505                                 if ($idx == $h) $OUT .= " selected default";
1506                                 $OUT .= ">".$idx."</OPTION>\n";
1507                         }
1508                         $OUT .= "  </SELECT></TD>\n";
1509                 } else {
1510                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ho\" value=\"0\">\n";
1511                 }
1512
1513                 if (ereg("m", $display) || (empty($display))) {
1514                         // Generate minute selection
1515                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_mi\" size=\"1\">\n";
1516                         for ($idx = 0; $idx <= 59; $idx++) {
1517                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1518                                 if ($idx == $m) $OUT .= " selected default";
1519                                 $OUT .= ">".$idx."</OPTION>\n";
1520                         }
1521                         $OUT .= "  </SELECT></TD>\n";
1522                 } else {
1523                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mi\" value=\"0\">\n";
1524                 }
1525
1526                 if (ereg("s", $display) || (empty($display))) {
1527                         // Generate second selection
1528                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_se\" size=\"1\">\n";
1529                         for ($idx = 0; $idx <= 45; $idx += 15) {
1530                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1531                                 if ($idx == $s) $OUT .= " selected default";
1532                                 $OUT .= ">".$idx."</OPTION>\n";
1533                         }
1534                         $OUT .= "  </SELECT></TD>\n";
1535                 } else {
1536                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_se\" value=\"0\">\n";
1537                 }
1538                 $OUT .= "</TR>\n";
1539                 $OUT .= "</TABLE>\n";
1540                 $OUT .= "</DIV>\n";
1541                 // Return generated HTML code
1542         }
1543         return $OUT;
1544 }
1545 //
1546 function CREATE_TIMESTAMP_FROM_SELECTIONS($prefix, $POST) {
1547         global $_CONFIG;
1548         $ret = 0;
1549
1550         // Do we have a leap year?
1551         $SWITCH = 0;
1552         $TEST = date('Y', time()) / 4;
1553         $M1   = date("m", time());
1554         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1555         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($POST[$prefix."_mo"] > "02"))  $SWITCH = $_CONFIG['one_day'];
1556         // First add years...
1557         $ret += $POST[$prefix."_ye"] * (31536000 + $SWITCH);
1558         // Next months...
1559         $ret += $POST[$prefix."_mo"] * 2628000;
1560         // Next weeks
1561         $ret += $POST[$prefix."_we"] * 604800;
1562         // Next days...
1563         $ret += $POST[$prefix."_da"] * 86400;
1564         // Next hours...
1565         $ret += $POST[$prefix."_ho"] * 3600;
1566         // Next minutes..
1567         $ret += $POST[$prefix."_mi"] * 60;
1568         // And at last seconds...
1569         $ret += $POST[$prefix."_se"];
1570         // Return calculated value
1571         return $ret;
1572 }
1573 // Sends out mail to all administrators
1574 // IMPORTANT: Please use SEND_ADMIN_NOTIFCATION() for now!
1575 function SEND_ADMIN_EMAILS_PRO($subj, $template, $content, $UID) {
1576         // Trim template name
1577         $template = trim($template);
1578
1579         // Load email template
1580         $msg = LOAD_EMAIL_TEMPLATE($template, $content, $UID);
1581
1582         if (EXT_VERSION_IS_OLDER("admins", "0.4.0")) {
1583                 // Older version detected!
1584                 return SEND_ADMIN_EMAILS($subj, $msg);
1585         } // END - if
1586
1587         // Check which admin shall receive this mail
1588         $result = SQL_QUERY_ESC("SELECT DISTINCT admin_id FROM "._MYSQL_PREFIX."_admins_mails WHERE mail_template='%s' ORDER BY admin_id",
1589          array($template), __FILE__, __LINE__);
1590         if (SQL_NUMROWS($result) == 0) {
1591                 // Create new entry (to all admins)
1592                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_admins_mails (admin_id, mail_template) VALUES (0, '%s')",
1593                  array($template), __FILE__, __LINE__);
1594         } else {
1595                 // Load admin IDs...
1596                 $aids = array();
1597                 while(list($aid) = SQL_FETCHROW($result)) {
1598                         $aids[] = $aid;
1599                 }
1600
1601                 // Free memory
1602                 SQL_FREERESULT($result);
1603
1604                 // "implode" IDs and query string
1605                 $aid = implode(",", $aids);
1606                 if ($aid == "-1") {
1607                         // Add line to userlog
1608                         USERLOG_ADD_LINE($subj, $msg, $UID);
1609                         return;
1610                 } elseif ($aid == "0") {
1611                         // Select all email adresses
1612                         $result = SQL_QUERY("SELECT email FROM "._MYSQL_PREFIX."_admins ORDER BY id", __FILE__, __LINE__);
1613                 } else {
1614                         // If Admin-ID is not "to-all" select
1615                         $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id IN (%s) ORDER BY id", array($aid), __FILE__, __LINE__);
1616                 }
1617         }
1618
1619         // Load email addresses and send away
1620         while (list($email) = SQL_FETCHROW($result)) {
1621                 SEND_EMAIL($email, $subj, $msg);
1622         }
1623
1624         // Free memory
1625         SQL_FREERESULT($result);
1626 }
1627 //
1628 function CREATE_FANCY_TIME($stamp) {
1629         // Get data array with years/months/weeks/days/...
1630         $data = CREATE_TIME_SELECTIONS($stamp, "", "", "", true);
1631         $ret = "";
1632         foreach($data as $k => $v) {
1633                 if ($v > 0) {
1634                         // Value is greater than 0 "eval" data to return string
1635                         $eval = "\$ret .= \", \".\$v.\" \"._".strtoupper($k).";";
1636                         eval($eval);
1637                         break;
1638                 } // END - if
1639         } // END - foreach
1640
1641         // Do we have something there?
1642         if (strlen($ret) > 0) {
1643                 // Remove leading commata and space
1644                 $ret = substr($ret, 2);
1645         } else {
1646                 // Zero seconds
1647                 $ret = "0 "._SECONDS;
1648         }
1649
1650         // Return fancy time string
1651         return $ret;
1652 }
1653 //
1654 function ADD_EMAIL_NAV($PAGES, $offset, $show_form, $colspan, $return=false) {
1655         $SEP = ""; $TOP = "";
1656         if (!$show_form) {
1657                 $TOP = " top2";
1658                 $SEP = "<TR><TD colspan=\"".$colspan."\" class=\"seperator\">&nbsp;</TD></TR>";
1659         }
1660
1661         $NAV = "";
1662         for ($page = 1; $page <= $PAGES; $page++) {
1663                 // Is the page currently selected or shall we generate a link to it?
1664                 if (($page == $_GET['page']) || ((empty($_GET['page'])) && ($page == "1"))) {
1665                         // Is currently selected, so only highlight it
1666                         $NAV .= "<STRONG>-";
1667                 } else {
1668                         // Open anchor tag and add base URL
1669                         $NAV .= "<A href=\"".URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&amp;page=".$page."&amp;offset=".$offset;
1670
1671                         // Add userid when we shall show all mails from a single member
1672                         if ((isset($_GET['u_id'])) && (bigintval($_GET['u_id']) > 0)) $NAV .= "&amp;u_id=".bigintval($_GET['u_id']);
1673
1674                         // Close open anchor tag
1675                         $NAV .= "\">";
1676                 }
1677                 $NAV .= $page;
1678                 if (($page == $_GET['page']) || ((empty($_GET['page'])) && ($page == "1"))) {
1679                         // Is currently selected, so only highlight it
1680                         $NAV .= "-</STRONG>";
1681                 } else {
1682                         // Close anchor tag
1683                         $NAV .= "</A>";
1684                 }
1685
1686                 // Add seperator if we have not yet reached total pages
1687                 if ($page < $PAGES) $NAV .= "&nbsp;|&nbsp;";
1688         }
1689
1690         // Define constants only once
1691         if (!defined('__NAV_OUTPUT')) {
1692                 define('__NAV_OUTPUT' , $NAV);
1693                 define('__NAV_COLSPAN', $colspan);
1694                 define('__NAV_TOP'    , $TOP);
1695                 define('__NAV_SEP'    , $SEP);
1696         }
1697
1698         // Load navigation template
1699         $OUT = LOAD_TEMPLATE("admin_email_nav_row", true);
1700
1701         if ($return) {
1702                 // Return generated HTML-Code
1703                 return $OUT;
1704         } else {
1705                 // Output HTML-Code
1706                 OUTPUT_HTML($OUT);
1707         }
1708 }
1709
1710 // Extract host from script name
1711 function EXTRACT_HOST (&$script) {
1712         // Use default SERVER_URL by default... ;) So?
1713         $url = SERVER_URL;
1714
1715         // Is this URL valid?
1716         if (substr($script, 0, 7) == "http://") {
1717                 // Use the hostname from script URL as new hostname
1718                 $url = substr($script, 7);
1719                 $extract = explode("/", $url);
1720                 $url = $extract[0];
1721                 // Done extracting the URL :)
1722         } // END - if
1723
1724         // Extract host name
1725         $host = str_replace("http://", "", $url);
1726         if (ereg("/", $host)) $host = substr($host, 0, strpos($host, "/"));
1727
1728         // Generate relative URL
1729         //* DEBUG: */ print("SCRIPT=".$script."<br />\n");
1730         if (substr(strtolower($script), 0, 7) == "http://") {
1731                 // But only if http:// is in front!
1732                 $script = substr($script, (strlen($url) + 7));
1733         } elseif (substr(strtolower($script), 0, 8) == "https://") {
1734                 // Does this work?!
1735                 $script = substr($script, (strlen($url) + 8));
1736         }
1737
1738         //* DEBUG: */ print("SCRIPT=".$script."<br />\n");
1739         if (substr($script, 0, 1) == "/") $script = substr($script, 1);
1740
1741         // Return host name
1742         return $host;
1743 }
1744
1745 // Send a GET request
1746 function GET_URL ($script) {
1747         // Compile the script name
1748         $script = COMPILE_CODE($script);
1749
1750         // Extract host name from script
1751         $host = EXTRACT_HOST($script);
1752
1753         // Generate GET request header
1754         $request  = "GET /" . trim($script) . " HTTP/1.1\r\n";
1755         $request .= "Host: " . $host . "\r\n";
1756         $request .= "Referer: " . URL . "/admin.php\r\n";
1757         $request .= "User-Agent: " . TITLE . "/" . FULL_VERSION . "\r\n";
1758         $request .= "Content-Type: text/plain\r\n";
1759         $request .= "Cache-Control: no-cache\r\n";
1760         $request .= "Connection: Close\r\n\r\n";
1761
1762         // Send the raw request
1763         $response = SEND_RAW_REQUEST($host, $request);
1764
1765         // Return the result to the caller function
1766         return $response;
1767 }
1768
1769 // Send a POST request
1770 function POST_URL ($script, $postData) {
1771         // Is postData an array?
1772         if (!is_array($postData)) {
1773                 // Abort here
1774                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("postData is not an array. Type: %s", gettype($postData)));
1775                 return array("", "", "");
1776         } // END - if
1777
1778         // Compile the script name
1779         $script = COMPILE_CODE($script);
1780
1781         // Extract host name from script
1782         $host = EXTRACT_HOST($script);
1783
1784         // Construct request
1785         $data = http_build_query($postData, '','&');
1786
1787         // Generate POST request header
1788         $request  = "POST /" . trim($script) . " HTTP/1.1\r\n";
1789         $request .= "Host: " . $host . "\r\n";
1790         $request .= "Referer: " . URL . "/admin.php\r\n";
1791         $request .= "User-Agent: " . TITLE . "/" . FULL_VERSION . "\r\n";
1792         $request .= "Content-type: application/x-www-form-urlencoded\r\n";
1793         $request .= "Content-length: " . strlen($data) . "\r\n";
1794         $request .= "Cache-Control: no-cache\r\n";
1795         $request .= "Connection: Close\r\n\r\n";
1796         $request .= $data;
1797
1798         // Send the raw request
1799         $response = SEND_RAW_REQUEST($host, $request);
1800
1801         // Return the result to the caller function
1802         return $response;
1803 }
1804
1805 // Sends a raw request to another host
1806 function SEND_RAW_REQUEST ($host, $request) {
1807         global $_CONFIG;
1808
1809         // Initialize array
1810         $response = array("", "", "");
1811
1812         // Default is not to use proxy
1813         $useProxy = false;
1814
1815         // Are proxy settins set?
1816         if ((!empty($_CONFIG['proxy_host'])) && ($_CONFIG['proxy_port'] > 0)) {
1817                 // Then use it
1818                 $useProxy = true;
1819         } // END - if
1820
1821         // Open connection
1822         //* DEBUG: */ die("SCRIPT=".$script."<br />\n");
1823         if ($useProxy) {
1824                 $fp = @fsockopen(COMPILE_CODE($_CONFIG['proxy_host']), $_CONFIG['proxy_port'], $errno, $errdesc, 30);
1825         } else {
1826                 $fp = @fsockopen($host, 80, $errno, $errdesc, 30);
1827         }
1828
1829         // Is there a link?
1830         if (!is_resource($fp)) {
1831                 // Failed!
1832                 return $response;
1833         } // END - if
1834
1835         // Do we use proxy?
1836         if ($useProxy) {
1837                 // Generate CONNECT request header
1838                 $proxyTunnel  = "CONNECT ".$host.":80 HTTP/1.1\r\n";
1839                 $proxyTunnel .= "Host: ".$host."\r\n";
1840
1841                 // Use login data to proxy? (username at least!)
1842                 if (!empty($_CONFIG['proxy_username'])) {
1843                         // Add it as well
1844                         $encodedAuth = base64_encode(COMPILE_CODE($_CONFIG['proxy_username']).":".COMPILE_CODE($_CONFIG['proxy_password']));
1845                         $proxyTunnel .= "Proxy-Authorization: Basic ".$encodedAuth."\r\n";
1846                 } // END - if
1847
1848                 // Add last new-line
1849                 $proxyTunnel .= "\r\n";
1850                 //* DEBUG: */ print("<strong>proxyTunnel=</strong><pre>".$proxyTunnel."</pre>");
1851
1852                 // Write request
1853                 fputs($fp, $proxyTunnel);
1854
1855                 // Got response?
1856                 if (feof($fp)) {
1857                         // No response received
1858                         return $response;
1859                 } // END - if
1860
1861                 // Read the first line
1862                 $resp = trim(fgets($fp, 10240));
1863                 $respArray = explode(" ", $resp);
1864                 if ((strtolower($respArray[0]) !== "http/1.0") || ($respArray[1] != "200")) {
1865                         // Invalid response!
1866                         return $response;
1867                 } // END - if
1868         } // END - if
1869
1870         // Write request
1871         fputs($fp, $request);
1872
1873         // Read response
1874         while(!feof($fp)) {
1875                 $response[] = trim(fgets($fp, 1024));
1876         } // END - while
1877
1878         // Close socket
1879         fclose($fp);
1880
1881         // Skip first empty lines
1882         $resp = $response;
1883         foreach ($resp as $idx => $line) {
1884                 // Trim space away
1885                 $line = trim($line);
1886
1887                 // Is this line empty?
1888                 if (empty($line)) {
1889                         // Then remove it
1890                         array_shift($response);
1891                 } else {
1892                         // Abort on first non-empty line
1893                         break;
1894                 }
1895         } // END - foreach
1896
1897         //* DEBUG: */ print("<strong>Response:</strong><pre>".print_r($response, true)."</pre>");
1898
1899         // Proxy agent found?
1900         if ((substr(strtolower($response[0]), 0, 11) == "proxy-agent") && ($useProxy)) {
1901                 // Proxy header detected, so remove two lines
1902                 array_shift($response);
1903                 array_shift($response);
1904         } // END - if
1905
1906         // Was the request successfull?
1907         if ((!eregi("200 OK", $response[0])) || (empty($response[0]))) {
1908                 // Not found / access forbidden
1909                 $response = array("", "", "");
1910         } // END - if
1911
1912         // Return response
1913         return $response;
1914 }
1915 // Taken from www.php.net eregi() user comments
1916 function VALIDATE_EMAIL($email) {
1917         // Compile email
1918         $email = COMPILE_CODE($email);
1919
1920         // Check first part of email address
1921         $first = "[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*";
1922
1923         //  Check domain
1924         $domain = "[a-z0-9-]+(\.[a-z0-9-]{2,5})+";
1925
1926         // Generate pattern
1927         $regex = "^".$first."@".$domain."$";
1928
1929         // Return check result
1930         return eregi($regex, $email);
1931 }
1932 // Function taken from user comments on www.php.net / function eregi()
1933 function VALIDATE_URL ($URL, $compile=true) {
1934         // Trim URL a little
1935         $URL = trim(urldecode($URL));
1936         //* DEBUG: */ echo $URL."<br />";
1937
1938         // Compile some chars out...
1939         if ($compile) $URL = COMPILE_CODE($URL, false, false, false);
1940         //* DEBUG: */ echo $URL."<br />";
1941
1942         // Check for the extension filter
1943         if (EXT_IS_ACTIVE("filter")) {
1944                 // Use the extension's filter set
1945                 return FILTER_VALIDATE_URL($URL, false);
1946         }
1947
1948         // If not installed, perform a simple test. Just make it sure there is always a http:// or
1949         // https:// in front of the URLs
1950         return (((substr($URL, 0, 7) == "http://") || (substr($URL, 0, 8) == "https://")) && (strlen($URL) >= 12));
1951 }
1952 //
1953 function MEMBER_ACTION_LINKS($uid, $status="") {
1954         // Define all main targets
1955         $TARGETS = array("del_user", "edit_user", "lock_user", "add_points", "sub_points");
1956
1957         // Begin of navigation links
1958         $eval = "\$OUT = \"[&nbsp;";
1959
1960         foreach ($TARGETS as $tar) {
1961                 $eval .= "<SPAN class=\\\"admin_user_link\\\"><A href=\\\"".URL."/modules.php?module=admin&amp;what=".$tar."&amp;u_id=".$uid."\\\" title=\\\"\".ADMIN_LINK_";
1962                 //* DEBUG: */ echo "*".$tar."/".$status."*<br />\n";
1963                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1964                         // Locked accounts shall be unlocked
1965                         $eval .= "UNLOCK_USER";
1966                 } else {
1967                         // All other status is fine
1968                         $eval .= strtoupper($tar);
1969                 }
1970                 $eval .= "_TITLE.\"\\\">\".ADMIN_";
1971                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1972                         // Locked accounts shall be unlocked
1973                         $eval .= "UNLOCK_USER";
1974                 } else {
1975                         // All other status is fine
1976                         $eval .= strtoupper($tar);
1977                 }
1978                 $eval .= ".\"</A></SPAN>&nbsp;|&nbsp;";
1979         }
1980
1981         // Finish navigation link
1982         $eval = substr($eval, 0, -7)."]\";";
1983         eval($eval);
1984
1985         // Return string
1986         return $OUT;
1987 }
1988 // Function for backward-compatiblity
1989 function ADD_CATEGORY_TABLE ($MODE, $return=false) {
1990         // Load it from the register extension
1991         return REGISTER_ADD_CATEGORY_TABLE ($MODE, $return);
1992 }
1993 // Generate an email link
1994 function CREATE_EMAIL_LINK($email, $table="admins") {
1995         // Default email link (INSECURE! Spammer can read this by harvester programs)
1996         $EMAIL = "mailto:".$email;
1997
1998         // Check for several extensions
1999         if ((EXT_IS_ACTIVE("admins")) && ($table == "admins")) {
2000                 // Create email link for contacting admin in guest area
2001                 $EMAIL = ADMINS_CREATE_EMAIL_LINK($email);
2002         } elseif ((EXT_IS_ACTIVE("user")) && (GET_EXT_VERSION("user") >= "0.3.3") && ($table == "user_data")) {
2003                 // Create email link for contacting a member within admin area (or later in other areas, too?)
2004                 $EMAIL = USER_CREATE_EMAIL_LINK($email);
2005         } elseif ((EXT_IS_ACTIVE("sponsor")) && ($table == "sponsor_data")) {
2006                 // Create email link to contact sponsor within admin area (or like the link above?)
2007                 $EMAIL = SPONSOR_CREATE_EMAIL_LINK($email);
2008         }
2009
2010         // Shall I close the link when there is no admin?
2011         if ((!IS_ADMIN()) && ($EMAIL == $email)) $EMAIL = "#"; // Closed!
2012
2013         // Return email link
2014         return $EMAIL;
2015 }
2016 // Generate a hash for extra-security for all passwords
2017 function generateHash ($plainText, $salt = "") {
2018         global $_CONFIG, $_SERVER;
2019
2020         // Is the required extension "sql_patches" there and a salt is not given?
2021         if (((EXT_VERSION_IS_OLDER("sql_patches", "0.3.6")) || (!EXT_IS_ACTIVE("sql_patches"))) && (empty($salt))) {
2022                 // Extension sql_patches is missing/outdated so we hash the plain text with MD5
2023                 return md5($plainText);
2024         } // END - if
2025
2026         // Do we miss an arry element here?
2027         if (!isset($_CONFIG['file_hash'])) {
2028                 // Stop here
2029                 print("Missing file_hash in ".__FUNCTION__.". Backtrace:<pre>");
2030                 debug_print_backtrace();
2031                 die("</pre>");
2032         } // END - if
2033
2034         // When the salt is empty build a new one, else use the first x configured characters as the salt
2035         if (empty($salt)) {
2036                 // Build server string
2037                 $server = $_SERVER['PHP_SELF'].":".GET_USER_AGENT().":".getenv('SERVER_SOFTWARE').":".GET_REMOTE_ADDR().":".":".filemtime(PATH."inc/databases.php");
2038
2039                 // Build key string
2040                 $keys   = SITE_KEY.":".DATE_KEY.":".$_CONFIG['secret_key'].":".$_CONFIG['file_hash'].":".date("d-m-Y (l-F-T)", bigintval($_CONFIG['patch_ctime'])).":".$_CONFIG['master_salt'];
2041
2042                 // Additional data
2043                 $data = $plainText.":".uniqid(mt_rand(), true).":".time();
2044
2045                 // Calculate number for generating the code
2046                 $a = time() + _ADD - 1;
2047
2048                 // Generate SHA1 sum from modula of number and the prime number
2049                 $sha1 = sha1(($a % _PRIME).$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a);
2050                 //* DEBUG: */ echo "SHA1=".$sha1." (".strlen($sha1).")<br />";
2051                 $sha1 = scrambleString($sha1);
2052                 //* DEBUG: */ echo "Scrambled=".$sha1." (".strlen($sha1).")<br />";
2053                 //* DEBUG: */ $sha1b = descrambleString($sha1);
2054                 //* DEBUG: */ echo "Descrambled=".$sha1b." (".strlen($sha1b).")<br />";
2055
2056                 // Generate the password salt string
2057                 $salt = substr($sha1, 0, $_CONFIG['salt_length']);
2058                 //* DEBUG: */ echo $salt." (".strlen($salt).")<br />";
2059         } else {
2060                 // Use given salt
2061                 $salt = substr($salt, 0, $_CONFIG['salt_length']);
2062                 //* DEBUG: */ echo "GIVEN={$salt}<br />\n";
2063         }
2064
2065         // Return hash
2066         return $salt.sha1($salt.$plainText);
2067 }
2068 //
2069 function scrambleString($str) {
2070         global $_CONFIG;
2071
2072         // Init
2073         $scrambled = "";
2074
2075         // Final check, in case of failture it will return unscrambled string
2076         if (strlen($str) > 40) {
2077                 // The string is to long
2078                 return $str;
2079         } elseif (strlen($str) == 40) {
2080                 // From database
2081                 $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
2082         } else {
2083                 // Generate new numbers
2084                 $scrambleNums = explode(":", genScrambleString(strlen($str)));
2085         }
2086
2087         // Scramble string here
2088         //* DEBUG: */ echo "***Original=".$str."***<br />";
2089         for ($idx = 0; $idx < strlen($str); $idx++) {
2090                 // Get char on scrambled position
2091                 $char = substr($str, $scrambleNums[$idx], 1);
2092
2093                 // Add it to final output string
2094                 $scrambled .= $char;
2095         } // END - for
2096
2097         // Return scrambled string
2098         //* DEBUG: */ echo "***Scrambled=".$scrambled."***<br />";
2099         return $scrambled;
2100 }
2101 //
2102 function descrambleString($str) {
2103         global $_CONFIG;
2104         // Scramble only 40 chars long strings
2105         if (strlen($str) != 40) return $str;
2106
2107         // Load numbers from config
2108         $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
2109
2110         // Validate numbers
2111         if (count($scrambleNums) != 40) return $str;
2112
2113         // Begin descrambling
2114         $orig = str_repeat(" ", 40);
2115         //* DEBUG: */ echo "+++Scrambled=".$str."+++<br />";
2116         for ($idx = 0; $idx < 40; $idx++) {
2117                 $char = substr($str, $idx, 1);
2118                 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
2119         } // END - for
2120
2121         // Return scrambled string
2122         //* DEBUG: */ echo "+++Original=".$orig."+++<br />";
2123         return $orig;
2124 }
2125 //
2126 function genScrambleString($len) {
2127         // Prepare randomizer and array for the numbers
2128         mt_srand((double) microtime() * 1000000);
2129         $scrambleNumbers = array();
2130
2131         // First we need to setup randomized numbers from 0 to 31
2132         for ($idx = 0; $idx < $len; $idx++) {
2133                 // Generate number
2134                 $rand = mt_rand(0, ($len -1));
2135
2136                 // Check for it by creating more numbers
2137                 while (array_key_exists($rand, $scrambleNumbers)) {
2138                         $rand = mt_rand(0, ($len -1));
2139                 } // END - while
2140
2141                 // Add number
2142                 $scrambleNumbers[$rand] = $rand;
2143         } // END - for
2144
2145         // So let's create the string for storing it in database
2146         $scrambleString = implode(":", $scrambleNumbers);
2147         return $scrambleString;
2148 }
2149 // Append data like session ID or referal ID to the given URL which would
2150 // normally be stored in cookies
2151 function ADD_URL_DATA($URL) {
2152         global $_CONFIG;
2153         $ADD = "";
2154
2155         // Determine URL binder
2156         $BIND = "?";
2157         if (strpos($URL, "?") !== false) $BIND = "&";
2158
2159         if ((!defined('__COOKIES')) || ((!__COOKIES))) {
2160                 // Cookies are not accepted
2161                 if ((!empty($_GET['refid'])) && (strpos($URL, "refid=") == 0)) {
2162                         // Cookie found in URL
2163                         $ADD .= $BIND."refid=".bigintval($_GET['refid']);
2164                 } elseif ((GET_EXT_VERSION("sql_patches") != '') && ($_CONFIG['def_refid'] > 0)) {
2165                         // Not found! So let's set default here
2166                         $ADD .= $BIND."refid=".$_CONFIG['def_refid'];
2167                 }
2168
2169                 // Is there already added data? Then change the binder
2170                 if (!empty($ADD)) $BIND = "&";
2171
2172                 // Add session ID
2173                 if ((!empty($_GET['PHPSESSID'])) && (strpos($URL, "PHPSESSID=") == 0)) {
2174                         // Add session from URL
2175                         $ADD .= $BIND."PHPSESSID=".SQL_ESCAPE(strip_tags($_GET['PHPSESSID']));
2176                 } else {
2177                         // Add current session
2178                         $ADD .= $BIND."PHPSESSID=".session_id();
2179                 }
2180         } // END - if
2181
2182         // Add all together and return it
2183         return $URL.$ADD;
2184 }
2185 // Generate an PGP-like encrypted hash of given hash for e.g. cookies
2186 function generatePassString($passHash) {
2187         global $_CONFIG;
2188
2189         // Return vanilla password hash
2190         $ret = $passHash;
2191
2192         // Is a secret key and master salt already initialized?
2193         if ((!empty($_CONFIG['secret_key'])) && (!empty($_CONFIG['master_salt']))) {
2194                 // Only calculate when the secret key is generated
2195                 $newHash = ""; $start = 9;
2196                 for ($idx = 0; $idx < 10; $idx++) {
2197                         $part1 = hexdec(substr($passHash, $start, 4));
2198                         $part2 = hexdec(substr($_CONFIG['secret_key'], $start, 4));
2199                         $mod = dechex($idx);
2200                         if ($part1 > $part2) {
2201                                 $mod = dechex(sqrt(($part1 - $part2) * _PRIME / pi()));
2202                         } elseif ($part2 > $part1) {
2203                                 $mod = dechex(sqrt(($part2 - $part1) * _PRIME / pi()));
2204                         }
2205                         $mod = substr(round($mod), 0, 4);
2206                         $mod = str_repeat('0', 4-strlen($mod)).$mod;
2207                         //* DEBUG: */ echo "*".$start."=".$mod."*<br />";
2208                         $start += 4;
2209                         $newHash .= $mod;
2210                 } // END - for
2211
2212                 //* DEBUG: */ print($passHash."<br />".$newHash." (".strlen($newHash).")");
2213                 $ret = generateHash($newHash, $_CONFIG['master_salt']);
2214                 //* DEBUG: */ print($ret."<br />\n");
2215         } else {
2216                 // Hash it simple
2217                 //* DEBUG: */ echo "--".$passHash."--<br />\n";
2218                 $ret = md5($passHash);
2219                 //* DEBUG: */ echo "++".$ret."++<br />\n";
2220         }
2221
2222         // Return result
2223         return $ret;
2224 }
2225
2226 // Fix "deleted" cookies
2227 function FIX_DELETED_COOKIES ($cookies) {
2228         // Is this an array with entries?
2229         if ((is_array($cookies)) && (count($cookies) > 0)) {
2230                 // Then check all cookies if they are marked as deleted!
2231                 foreach ($cookies as $cookieName) {
2232                         // Is the cookie set to "deleted"?
2233                         if (get_session($cookieName) == "deleted") {
2234                                 set_session($cookieName, "");
2235                         }
2236                 } // END - foreach
2237         } // END - if
2238 }
2239
2240 // Output error messages in a fasioned way and die...
2241 function mxchange_die ($msg) {
2242         global $footer;
2243
2244         // Load the message template
2245         LOAD_TEMPLATE("admin_settings_saved", false, $msg);
2246
2247         // Load footer
2248         include(PATH."inc/footer.php");
2249
2250         // Exit explicitly
2251         exit;
2252 }
2253
2254 // Display parsing time and number of SQL queries in footer
2255 function DISPLAY_PARSING_TIME_FOOTER() {
2256         global $_CONFIG;
2257         $endTime = microtime(true);
2258
2259         // Is the timer started?
2260         if (!isset($GLOBALS['startTime'])) {
2261                 // Abort here
2262                 return false;
2263         }
2264
2265         // "Explode" both times
2266         $start = explode(" ", $GLOBALS['startTime']);
2267         $end = explode(" ", $endTime);
2268         $runTime = $end[0] - $start[0];
2269         if ($runTime < 0) $runTime = 0;
2270         $runTime = TRANSLATE_COMMA($runTime);
2271
2272         // Prepare output
2273         $content = array(
2274                 'runtime'               => $runTime,
2275                 'numSQLs'               => ($_CONFIG['sql_count'] + 1),
2276                 'numTemplates'  => ($_CONFIG['num_templates'] + 1)
2277         );
2278
2279         // Load the template
2280         LOAD_TEMPLATE("show_timings", false, $content);
2281 }
2282
2283 // Unset/set session variables
2284 function set_session ($var, $value) {
2285         global $CSS;
2286
2287         // Abort in CSS mode here
2288         if ($CSS == 1) return true;
2289
2290         // Trim value and session variable
2291         $var = trim(SQL_ESCAPE($var)); $value = trim($value);
2292
2293         // Is the session variable set?
2294         if (("".$value."" == "") && (isSessionVariableSet($var))) {
2295                 // Remove the session
2296                 //* DEBUG: */ echo "UNSET:".$var."=".get_session($var)."<br />\n";
2297                 unset($_SESSION[$var]);
2298                 return session_unregister($var);
2299         } elseif (("".$value."" != '') && (!isSessionVariableSet($var))) {
2300                 // Set session
2301                 //* DEBUG: */ echo "SET:".$var."=".$value."<br />\n";
2302                 $_SESSION[$var] =  $value;
2303                 return session_register($var);
2304         } elseif (!empty($value)) {
2305                 // Update session
2306                 //* DEBUG: */ echo "UPDATE:".$var."=".$value."<br />\n";
2307                 $_SESSION[$var] = $value;
2308                 return true;
2309         }
2310
2311         // Ignored (but valid)
2312         //* DEBUG: */ echo "IGNORED:".$var."=".$value."<br />\n";
2313         return true;
2314 }
2315
2316 // Check wether a boolean constant is set
2317 // Taken from user comments in PHP documentation for function constant()
2318 function isBooleanConstantAndTrue($constName) { // : Boolean
2319         global $cacheArray;
2320
2321         // Failed by default
2322         $res = false;
2323
2324         // In cache?
2325         if (isset($cacheArray['const'][$constName])) {
2326                 // Use cache
2327                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$constName."-CACHE!<br />\n";
2328                 $res = $cacheArray['const'][$constName];
2329         } else {
2330                 // Check constant
2331                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$constName."-RESOLVE!<br />\n";
2332                 if (defined($constName)) $res = (constant($constName) === true);
2333
2334                 // Set cache
2335                 $cacheArray['const'][$constName] = $res;
2336         }
2337         //* DEBUG: */ var_dump($res);
2338
2339         // Return value
2340         return $res;
2341 }
2342
2343 // Check wether a session variable is set
2344 function isSessionVariableSet ($var) {
2345         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):var={$var}<br />\n";
2346         return (isset($_SESSION[$var]));
2347 }
2348 // Returns wether the value of the session variable or NULL if not set
2349 function get_session ($var) {
2350         global $cacheArray;
2351
2352         // Default is not found! ;-)
2353         $value = null;
2354
2355         // Is the variable there or cached values?
2356         if (isset($cacheArray['session'][$var])) {
2357                 // Get cached value (skips a lot SQL_ESCAPE() calles!
2358                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$var."-CACHE!<br />\n";
2359                 $value = $cacheArray['session'][$var];
2360         } elseif (isSessionVariableSet($var)) {
2361                 // Then  get it secured!
2362                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$var."-RESOLVE!<br />\n";
2363                 $value = SQL_ESCAPE($_SESSION[$var]);
2364
2365                 // Cache the value
2366                 $cacheArray['session'][$var] = $value;
2367         } // END - if
2368
2369         // Return the value
2370         return $value;
2371 }
2372 // Send notification to admin
2373 function SEND_ADMIN_NOTIFICATION($subject, $templateName, $content=array(), $uid="0") {
2374         if (GET_EXT_VERSION("admins") >= "0.4.1") {
2375                 // Send new way
2376                 SEND_ADMIN_EMAILS_PRO($subject, $templateName, $content, $uid);
2377         } else {
2378                 // Send outdated way
2379                 $msg = LOAD_EMAIL_TEMPLATE($templateName, $content, $uid);
2380                 SEND_ADMIN_EMAILS($subject, $msg);
2381         }
2382 }
2383 // Destroy user session
2384 function destroy_user_session () {
2385         // Remove all user data from session
2386         return ((set_session("userid", "")) && (set_session("u_hash", "")) && (set_session("lifetime", "")));
2387 }
2388 // Merges an array together but only if both are arrays
2389 function merge_array ($array1, $array2) {
2390         // Are both an array?
2391         if ((is_array($array1)) && (is_array($array2))) {
2392                 // Merge all together
2393                 return array_merge($array1, $array2);
2394         } elseif (is_array($array1)) {
2395                 // Return left array
2396                 return $array1;
2397         }
2398
2399         // Something wired happened here...
2400         print(__FUNCTION__.":<pre>");
2401         debug_print_backtrace();
2402         die("</pre>");
2403 }
2404 // Debug message logger
2405 function DEBUG_LOG ($file, $line, $message, $force=true) {
2406         // Is debug mode enabled?
2407         if ((isBooleanConstantAndTrue('DEBUG_MODE')) || ($force)) {
2408                 // Log this message away
2409                 $fp = fopen(PATH."inc/cache/debug.log", 'a') or mxchange_die("Cannot write logfile debug.log!");
2410                 fwrite($fp, date("d.m.Y|H:i:s", time())."|".basename(__FILE__)."|".__LINE__."|".strip_tags($message)."\n");
2411                 fclose($fp);
2412         } // END - if
2413 }
2414 // Reads a directory with PHP files in and gets only files back
2415 function GET_DIR_AS_ARRAY ($baseDir, $prefix) {
2416         $INCs = array();
2417
2418         // Open directory
2419         $dirPointer = opendir($baseDir) or mxchange_die("Cannot read ".basename($baseDir)." path!");
2420
2421         // Read all entries
2422         while ($baseFile = readdir($dirPointer)) {
2423                 // Load file only if extension is active
2424                 // Make full path
2425                 $file = $baseDir.$baseFile;
2426
2427                 // Is this a valid reset file?
2428                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):baseDir={$baseDir},prefix={$prefix},baseFile={$baseFile}<br />\n";
2429                 if ((FILE_READABLE($file)) && (substr($baseFile, 0, strlen($prefix)) == $prefix) && (substr($baseFile, -4, 4) == ".php")) {
2430                         // Remove both for extension name
2431                         $extName = substr($baseFile, strlen($prefix), -4);
2432
2433                         // Try to find it
2434                         $extId = GET_EXT_ID($extName);
2435
2436                         // Is the extension valid and active?
2437                         if (($extId > 0) && (EXT_IS_ACTIVE($extName))) {
2438                                 // Then add this file
2439                                 $INCs[] = $file;
2440                         } elseif ($extId == 0) {
2441                                 // Add non-extension files as well
2442                                 $INCs[] = $file;
2443                         }
2444                 } // END - if
2445         } // END - while
2446
2447         // Close directory
2448         closedir($dirPointer);
2449
2450         // Sort array
2451         asort($INCs);
2452
2453         // Return array with include files
2454         return $INCs;
2455 }
2456 // Load more reset scripts
2457 function RESET_ADD_INCLUDES () {
2458         global $_CONFIG;
2459
2460         // Is the reset set or old sql_patches?
2461         if ((!defined('__DAILY_RESET')) || (EXT_VERSION_IS_OLDER("sql_patches", "0.4.5"))) {
2462                 // Then abort here
2463                 return array();
2464         } // END - if
2465
2466         // Get more daily reset scripts
2467         $INC_POOL = GET_DIR_AS_ARRAY(PATH."inc/reset/", "reset_");
2468
2469         // Update database
2470         if (!defined('DEBUG_RESET')) UPDATE_CONFIG("last_update", time());
2471
2472         // Create current week mark
2473         $currWeek = date("W", time());
2474
2475         // Has it changed?
2476         if ($_CONFIG['last_week'] != $currWeek) {
2477                 // Include weekly reset scripts
2478                 $INC_POOL = array_merge($INC_POOL, GET_DIR_AS_ARRAY(PATH."inc/weekly/", "weekly_"));
2479
2480                 // Update config
2481                 if (!defined('DEBUG_WEEKLY')) UPDATE_CONFIG("last_week", $currWeek);
2482         } // END - if
2483
2484         // Create current month mark
2485         $currMonth = date("m", time());
2486
2487         // Has it changed?
2488         if ($_CONFIG['last_month'] != $currMonth) {
2489                 // Include monthly reset scripts
2490                 $INC_POOL = array_merge($INC_POOL, GET_DIR_AS_ARRAY(PATH."inc/monthly/", "monthly_"));
2491
2492                 // Update config
2493                 if (!defined('DEBUG_MONTHLY')) UPDATE_CONFIG("last_month", $currMonth);
2494         } // END - if
2495
2496         // Return array
2497         return $INC_POOL;
2498 }
2499 // Handle extra values
2500 function HANDLE_EXTRA_VALUES ($filterFunction, $value, $extraValue) {
2501         // Default is the value itself
2502         $ret = $value;
2503
2504         // Do we have a special filter function?
2505         if (!empty($filterFunction)) {
2506                 // Does the filter function exist?
2507                 if (function_exists($filterFunction)) {
2508                         // Do we have extra parameters here?
2509                         if (!empty($extraValue)) {
2510                                 // Put both parameters in one new array by default
2511                                 $args = array($value, $extraValue);
2512
2513                                 // If we have an array simply use it and pre-extend it with our value
2514                                 if (is_array($extraValue)) {
2515                                         // Make the new args array
2516                                         $args = array_merge(array($value), $extraValue);
2517                                 } // END - if
2518
2519                                 // Call the multi-parameter call-back
2520                                 $ret = call_user_func_array($filterFunction, $args);
2521                         } else {
2522                                 // One parameter call
2523                                 $ret = call_user_func($filterFunction, $value);
2524                         }
2525                 } // END - if
2526         } // END - if
2527
2528         // Return the value
2529         return $ret;
2530 }
2531 // Check if given FQFN is a readable file
2532 function FILE_READABLE($fqfn) {
2533         // Check all...
2534         return ((file_exists($fqfn)) && (is_file($fqfn)) && (is_readable($fqfn)));
2535 }
2536 // Converts timestamp selections into a timestamp
2537 function CONVERT_SELECTIONS_TO_TIMESTAMP(&$POST, &$DATA, &$id, &$skip) {
2538         // Init test variable
2539         $test2 = "";
2540
2541         // Get last three chars
2542         $test = substr($id, -3);
2543
2544         // Improved way of checking! :-)
2545         if (in_array($test, array("_ye", "_mo", "_we", "_da", "_ho", "_mi", "_se"))) {
2546                 // Found a multi-selection for timings?
2547                 $test = substr($id, 0, -3);
2548                 if ((isset($POST[$test."_ye"])) && (isset($POST[$test."_mo"])) && (isset($POST[$test."_we"])) && (isset($POST[$test."_da"])) && (isset($POST[$test."_ho"])) && (isset($POST[$test."_mi"])) && (isset($POST[$test."_se"])) && ($test != $test2)) {
2549                         // Generate timestamp
2550                         $POST[$test] = CREATE_TIMESTAMP_FROM_SELECTIONS($test, $POST);
2551                         $DATA[] = sprintf("%s='%s'", $test, $POST[$test]);
2552
2553                         // Remove data from array
2554                         foreach (array("ye", "mo", "we", "da", "ho", "mi", "se") as $rem) {
2555                                 unset($POST[$test."_".$rem]);
2556                         } // END - foreach
2557
2558                         // Skip adding
2559                         unset($id); $skip = true; $test2 = $test;
2560                 } // END - if
2561         } else {
2562                 // Process this entry
2563                 $skip = false; $test2 = "";
2564         }
2565 }
2566 // Reverts the german decimal comma into Computer decimal dot
2567 function REVERT_COMMA ($str) {
2568         // Default float is not a float... ;-)
2569         $float = false;
2570
2571         // Which language is selected?
2572         switch (GET_LANGUAGE()) {
2573                 case "de": // German language
2574                         // Remove german thousand dots first
2575                         $str = str_replace(".", "", $str);
2576
2577                         // Replace german commata with decimal dot and cast it
2578                         $float = (float)str_replace(",", ".", $str);
2579                         break;
2580
2581                 default: // US and so on
2582                         // Remove thousand dots first and cast
2583                         $float = (float)str_replace(",", "", $str);
2584                         break;
2585         }
2586
2587         // Return float
2588         return $float;
2589 }
2590 // Handle menu-depending failed logins and return the rendered content
2591 function HANDLE_LOGIN_FAILTURES ($accessLevel) {
2592         // Default output is empty ;-)
2593         $OUT = "";
2594
2595         // Is the session data set?
2596         if ((isSessionVariableSet('mxchange_'.$accessLevel.'_failtures')) && (isSessionVariableSet('mxchange_'.$accessLevel.'_last_fail'))) {
2597                 // Ignore zero values
2598                 if (get_session('mxchange_'.$accessLevel.'_failtures') > 0) {
2599                         // Non-guest has login failtures found, get both data and prepare it for template
2600                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):accessLevel={$accessLevel}<br />\n";
2601                         $content = array(
2602                                 'login_failtures' => get_session('mxchange_'.$accessLevel.'_failtures'),
2603                                 'last_failture'   => MAKE_DATETIME(get_session('mxchange_'.$accessLevel.'_last_fail'), "2")
2604                         );
2605
2606                         // Load template
2607                         $OUT = LOAD_TEMPLATE("login_failtures", true, $content);
2608                 } // END - if
2609
2610                 // Reset session data
2611                 set_session('mxchange_'.$accessLevel.'_failtures', "");
2612                 set_session('mxchange_'.$accessLevel.'_last_fail', "");
2613         } // END - if
2614
2615         // Return rendered content
2616         return $OUT;
2617 }
2618 // Rebuild cache
2619 function REBUILD_CACHE ($cache, $inc="") {
2620         global $cacheInstance, $_CONFIG, $CSS;
2621
2622         // Shall I remove the cache file?
2623         if ((EXT_IS_ACTIVE("cache")) && (is_object($cacheInstance))) {
2624                 // Rebuild cache
2625                 if ($cacheInstance->loadCacheFile($cache)) {
2626                         // Destroy it
2627                         $cacheInstance->destroyCacheFile();
2628                 } // END - if
2629
2630                 // Include file given?
2631                 if (!empty($inc)) {
2632                         // Construct FQFN
2633                         $fqfn = sprintf("%sinc/loader/load_cache-%s.php", PATH, $inc);
2634
2635                         // Is the include there?
2636                         if (FILE_READABLE($fqfn)) {
2637                                 // And rebuild it from scratch
2638                                 require($fqfn);
2639                         } else {
2640                                 // Include not found!
2641                                 DEBUG_LOG(__FUNCTION__, __LINE__, "Include {$inc} not found. cache={$cache}");
2642                         }
2643                 } // END - if
2644         } // END - if
2645 }
2646 // Purge admin menu cache
2647 function CACHE_PURGE_ADMIN_MENU ($id=0, $action="", $what="", $str="") {
2648         global $_CONFIG, $cacheInstance;
2649
2650         // Is the cache extension enabled or no cache instance or admin menu cache disabled?
2651         if (!EXT_IS_ACTIVE("cache")) {
2652                 // Cache extension not active
2653                 return false;
2654         } elseif (!is_object($cacheInstance)) {
2655                 // No cache instance!
2656                 DEBUG_LOG(__FUNCTION__, __LINE__, " No cache instance found.");
2657                 return false;
2658         } elseif ((!isset($_CONFIG['cache_admin_menu'])) || ($_CONFIG['cache_admin_menu'] == "N")) {
2659                 // Caching disabled (currently experiemental!)
2660                 return false;
2661         }
2662
2663         // Experiemental feature!
2664         trigger_error("You have to delete the admin_*.cache files by yourself at this point.");
2665 }
2666 // Translates the "pool type" into human-readable
2667 function TRANSLATE_POOL_TYPE ($type) {
2668         // Default type is unknown
2669         $translated = sprintf(POOL_TYPE_UNKNOWN, $type);
2670
2671         // Generate constant
2672         $constName = sprintf("POOL_TYPE_%s", $type);
2673
2674         // Does it exist?
2675         if (defined($constName)) {
2676                 // Then use it
2677                 $translated = constant($constName);
2678         } // END - if
2679
2680         // Return "translation"
2681         return $translated;
2682 }
2683 // "Getter" for remote IP number
2684 function GET_REMOTE_ADDR () {
2685         // Get remote ip from environment
2686         $remoteAddr = getenv('REMOTE_ADDR');
2687
2688         // Is removeip installed?
2689         if (EXT_IS_ACTIVE("removeip")) {
2690                 // Then anonymize it
2691                 $remoteAddr = GET_ANONYMOUS_REMOTE_ADDR($remoteAddr);
2692         } // END - if
2693
2694         // Return it
2695         return $remoteAddr;
2696 }
2697 // "Getter" for remote hostname
2698 function GET_REMOTE_HOST () {
2699         // Get remote ip from environment
2700         $remoteHost = getenv('REMOTE_HOST');
2701
2702         // Is removeip installed?
2703         if (EXT_IS_ACTIVE("removeip")) {
2704                 // Then anonymize it
2705                 $remoteHost = GET_ANONYMOUS_REMOTE_HOST($remoteHost);
2706         } // END - if
2707
2708         // Return it
2709         return $remoteHost;
2710 }
2711 // "Getter" for user agent
2712 function GET_USER_AGENT () {
2713         // Get remote ip from environment
2714         $userAgent = getenv('HTTP_USER_AGENT');
2715
2716         // Is removeip installed?
2717         if (EXT_IS_ACTIVE("removeip")) {
2718                 // Then anonymize it
2719                 $userAgent = GET_ANONYMOUS_USER_AGENT($userAgent);
2720         } // END - if
2721
2722         // Return it
2723         return $userAgent;
2724 }
2725 // "Getter" for referer
2726 function GET_REFERER () {
2727         // Get remote ip from environment
2728         $referer = getenv('HTTP_REFERER');
2729
2730         // Is removeip installed?
2731         if (EXT_IS_ACTIVE("removeip")) {
2732                 // Then anonymize it
2733                 $referer = GET_ANONYMOUS_REFERER($referer);
2734         } // END - if
2735
2736         // Return it
2737         return $referer;
2738 }
2739
2740 // Adds a bonus mail to the queue
2741 // This is a high-level function!
2742 function ADD_NEW_BONUS_MAIL ($data, $mode="", $output=true) {
2743         // Use mode from data if not set and availble ;-)
2744         if ((empty($mode)) && (isset($data['mode']))) $mode = $data['mode'];
2745
2746         // Generate receiver list
2747         $RECEIVER = GENERATE_RECEIVER_LIST($data['cat'], $data['receiver'], $mode);
2748
2749         // Receivers added?
2750         if (!empty($RECEIVER)) {
2751                 // Add bonus mail to queue
2752                 ADD_BONUS_MAIL_TO_QUEUE(
2753                         $data['subject'],
2754                         $data['text'],
2755                         $RECEIVER,
2756                         $data['points'],
2757                         $data['seconds'],
2758                         $data['url'],
2759                         $data['cat'],
2760                         $mode,
2761                         $data['receiver']
2762                 );
2763
2764                 // Mail inserted into bonus pool
2765                 if ($output) LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_BONUS_SEND);
2766         } elseif ($output) {
2767                 // More entered than can be reached!
2768                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MORE_SELECTED);
2769         } else {
2770                 // Debug log
2771                 DEBUG_LOG(__FUNCTION__, __LINE__, " cat={$data['cat']},receiver={$data['receiver']},data=".base64_encode(serialize($data))." More selected, than available!");
2772         }
2773 }
2774 // Determines referal id and sets it
2775 function DETERMINE_REFID () {
2776         global $_CONFIG, $CLICK, $_SERVER;
2777
2778         // Check if refid is set
2779         if ((!empty($_GET['user'])) && ($CLICK == 1) && (basename($_SERVER['PHP_SELF']) == "click.php")) {
2780                 // The variable user comes from the click-counter script click.php and we only accept this here
2781                 $GLOBALS['refid'] = bigintval($_GET['user']);
2782         } elseif (!empty($_POST['refid'])) {
2783                 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
2784                 $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_POST['refid']));
2785         } elseif (!empty($_GET['refid'])) {
2786                 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
2787                 $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_GET['refid']));
2788         } elseif (!empty($_GET['ref'])) {
2789                 // Set refid=ref (the referal link uses such variable)
2790                 $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_GET['ref']));
2791         } elseif ((isSessionVariableSet('refid')) && (get_session('refid') != 0)) {
2792                 // Set session refid als global
2793                 $GLOBALS['refid'] = bigintval(get_session('refid'));
2794         } elseif ((GET_EXT_VERSION("sql_patches") != "") && ($_CONFIG['def_refid'] > 0)) {
2795                 // Set default refid as refid in URL
2796                 $GLOBALS['refid'] = bigintval($_CONFIG['def_refid']);
2797         } elseif ((GET_EXT_VERSION("user") >= "0.3.4") && ($_CONFIG['select_user_zero_refid']) == "Y") {
2798                 // Select a random user which has confirmed enougth mails
2799                 $GLOBALS['refid'] = SELECT_RANDOM_REFID();
2800         } else {
2801                 // No default ID when sql_patches is not installed or none set
2802                 $GLOBALS['refid'] = 0;
2803         }
2804
2805         // Set cookie when default refid > 0
2806         if (!isSessionVariableSet('refid') || (!empty($GLOBALS['refid'])) || ((get_session('refid') == "0") && (isset($_CONFIG['def_refid'])) && ($_CONFIG['def_refid'] > 0))) {
2807                 // Set cookie
2808                 set_session('refid', $GLOBALS['refid']);
2809         } // END - if
2810 }
2811
2812 // Destroys the admin session
2813 function DESTROY_ADMIN_SESSION () {
2814         // Kill maybe existing session variables including array elements
2815         set_session('admin_login'       , "");
2816         set_session('admin_md5'         , "");
2817         set_session('admin_last'        , "");
2818         set_session('admin_to'          , "");
2819
2820         // Destroy session and return status
2821         return @session_destroy();
2822 }
2823
2824 // Checks if a given apache module is loaded
2825 function IF_APACHE_MODULE_LOADED ($apacheModule) {
2826         // Check it and return result
2827         return (((function_exists('apache_get_modules')) && (in_array($apacheModule, apache_get_modules()))) || (!function_exists('apache_get_modules')));
2828 }
2829
2830 //////////////////////////////////////////////////
2831 //                                              //
2832 // AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS //
2833 //                                              //
2834 //////////////////////////////////////////////////
2835 //
2836 if (!function_exists('html_entity_decode')) {
2837         // Taken from documentation on www.php.net
2838         function html_entity_decode($string) {
2839                 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
2840                 $trans_tbl = array_flip($trans_tbl);
2841                 return strtr($string, $trans_tbl);
2842         }
2843 } // END - if
2844
2845 //
2846 ?>