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