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