2 /************************************************************************
3 * MXChange v0.2.1 Start: 08/25/2003 *
4 * =============== Last change: 11/29/2005 *
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 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * Needs to be in all Files and every File needs "svn propset *
18 * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
19 * -------------------------------------------------------------------- *
20 * Copyright (c) 2003 - 2008 by Roland Haeder *
21 * For more information visit: http://www.mxchange.org *
23 * This program is free software; you can redistribute it and/or modify *
24 * it under the terms of the GNU General Public License as published by *
25 * the Free Software Foundation; either version 2 of the License, or *
26 * (at your option) any later version. *
28 * This program is distributed in the hope that it will be useful, *
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
31 * GNU General Public License for more details. *
33 * You should have received a copy of the GNU General Public License *
34 * along with this program; if not, write to the Free Software *
35 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
37 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
44 // Output HTML code directly or "render" it. You addionally switch the new-line character off
45 function OUTPUT_HTML ($HTML, $newLine = true) {
46 // Some global variables
49 // Do we have HTML-Code here?
51 // Yes, so we handle it as you have configured
52 switch (constant('OUTPUT_MODE'))
55 // That's why you don't need any \n at the end of your HTML code... :-)
56 if (constant('_OB_CACHING') == "on") {
57 // Output into PHP's internal buffer
60 // That's why you don't need any \n at the end of your HTML code... :-)
61 if ($newLine) echo "\n";
63 // Render mode for old or lame servers...
66 // That's why you don't need any \n at the end of your HTML code... :-)
67 if ($newLine) $OUTPUT .= "\n";
72 // If we are switching from render to direct output rendered code
73 if ((!empty($OUTPUT)) && (constant('_OB_CACHING') != "on")) { OUTPUT_RAW($OUTPUT); $OUTPUT = ''; }
75 // The same as above... ^
77 if ($newLine) echo "\n";
81 // Huh, something goes wrong or maybe you have edited config.php ???
82 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid renderer %s detected.", constant('OUTPUT_MODE')));
83 app_die(__FUNCTION__, __LINE__, "<strong>{--FATAL_ERROR--}:</strong> {--LANG_NO_RENDER_DIRECT--}");
86 } elseif ((constant('_OB_CACHING') == "on") && (isset($GLOBALS['footer_sent'])) && ($GLOBALS['footer_sent'] == 1)) {
87 // Headers already sent?
90 DEBUG_LOG(__FUNCTION__, __LINE__, "Headers already sent! We need debug backtrace here.");
92 // Trigger an user error
93 debug_report_bug("Headers are already sent!");
96 // Output cached HTML code
97 $OUTPUT = ob_get_contents();
99 // Clear output buffer for later output if output is found
100 if (!empty($OUTPUT)) {
105 header("HTTP/1.1 200");
108 $now = gmdate('D, d M Y H:i:s') . ' GMT';
110 // General headers for no caching
111 header("Expired: " . $now); // RFC2616 - Section 14.21
112 header("Last-Modified: " . $now);
113 header("Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0"); // HTTP/1.1
114 header("Pragma: no-cache"); // HTTP/1.0
115 header("Connection: Close");
117 // Extension 'rewrite' installed?
118 if ((EXT_IS_ACTIVE('rewrite')) && ($GLOBALS['output_mode'] != "1") && ($GLOBALS['output_mode'] != "-1")) {
119 $OUTPUT = REWRITE_LINKS($OUTPUT);
122 // Compile and run finished rendered HTML code
123 while (strpos($OUTPUT, '{!') > 0) {
124 // Prepare the content and eval() it...
126 $eval = "\$newContent = \"".COMPILE_CODE(smartAddSlashes($OUTPUT))."\";";
129 // Was that eval okay?
130 if (empty($newContent)) {
131 // Something went wrong!
132 app_die(__FUNCTION__, __LINE__, "Evaluation error:<pre>".htmlentities($eval)."</pre>");
134 $OUTPUT = $newContent;
137 // Output code here, DO NOT REMOVE! ;-)
139 } elseif ((constant('OUTPUT_MODE') == "render") && (!empty($OUTPUT))) {
140 // Rewrite links when rewrite extension is active
141 if ((EXT_IS_ACTIVE('rewrite')) && ($GLOBALS['output_mode'] != "1") && ($GLOBALS['output_mode'] != "-1")) {
142 $OUTPUT = REWRITE_LINKS($OUTPUT);
145 // Compile and run finished rendered HTML code
146 while (strpos($OUTPUT, '{!') > 0) {
147 $eval = "\$OUTPUT = \"".COMPILE_CODE(smartAddSlashes($OUTPUT))."\";";
151 // Output code here, DO NOT REMOVE! ;-)
156 // Output the raw HTML code
157 function OUTPUT_RAW ($HTML) {
158 // Output stripped HTML code to avoid broken JavaScript code, etc.
159 echo stripslashes(stripslashes($HTML));
161 // Flush the output if only constant('_OB_CACHING') is not "on"
162 if (constant('_OB_CACHING') != "on") {
168 // Init fatal message array
169 function initFatalMessages () {
170 $GLOBALS['fatal_messages'] = array();
173 // Getter for whole fatal error messages
174 function getFatalArray () {
175 return $GLOBALS['fatal_messages'];
178 // Add a fatal error message to the queue array
179 function addFatalMessage ($F, $L, $message, $extra='') {
180 debug_report_bug($message);
181 if (is_array($extra)) {
182 // Multiple extras for a message with masks
183 $message = call_user_func_array('sprintf', $extra);
184 } elseif (!empty($extra)) {
185 // $message is text with a mask plus extras to insert into the text
186 $message = sprintf($message, $extra);
189 // Add message to $GLOBALS['fatal_messages']
190 $GLOBALS['fatal_messages'][] = $message;
192 // Log fatal messages away
193 DEBUG_LOG($F, $L, " message={$message}");
196 // Getter for total fatal message count
197 function getTotalFatalErrors () {
201 // Do we have at least the first entry?
202 if (!empty($GLOBALS['fatal_messages'][0])) {
204 $count = count($GLOBALS['fatal_messages']);
211 // Load a template file and return it's content (only it's name; do not use ' or ")
212 function LOAD_TEMPLATE ($template, $return=false, $content=array()) {
213 // Add more variables which you want to use in your template files
214 global $DATA, $username;
216 // Get whole config array
217 $_CONFIG = getConfigArray();
219 // Make all template names lowercase
220 $template = strtolower($template);
222 // Count the template load
223 incrementConfigEntry('num_templates');
225 // Prepare IP number and User Agent
226 $REMOTE_ADDR = GET_REMOTE_ADDR();
227 if (!defined('REMOTE_ADDR')) define('REMOTE_ADDR', $REMOTE_ADDR);
228 $HTTP_USER_AGENT = GET_USER_AGENT();
232 if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = 0;
234 // @DEPRECATED Try to rewrite the if() condition
235 if ($template == "member_support_form") {
236 // Support request of a member
237 $result = SQL_QUERY_ESC("SELECT userid, gender, surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
238 array(getUserId()), __FUNCTION__, __LINE__);
240 // Is content an array?
241 if (is_array($content)) {
243 $content = merge_array($content, SQL_FETCHARRAY($result));
246 $content['gender'] = TRANSLATE_GENDER($content['gender']);
249 // @TODO Fine all templates which are using these direct variables and rewrite them.
250 // @TODO After this step is done, this else-block is history
251 list($gender, $surname, $family, $email) = SQL_FETCHROW($result);
254 $gender = TRANSLATE_GENDER($gender);
255 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("DEPRECATION-WARNING: content is not array (%s).", gettype($content)));
259 SQL_FREERESULT($result);
262 // Generate date/time string
263 $date_time = MAKE_DATETIME(time(), "1");
266 $basePath = sprintf("%stemplates/%s/html/", constant('PATH'), GET_LANGUAGE());
269 // Check for admin/guest/member templates
270 if (strpos($template, "admin_") > -1) {
271 // Admin template found
273 } elseif (strpos($template, "guest_") > -1) {
274 // Guest template found
276 } elseif (strpos($template, "member_") > -1) {
277 // Member template found
279 } elseif (strpos($template, "install_") > -1) {
280 // Installation template found
282 } elseif (strpos($template, "ext_") > -1) {
283 // Extension template found
285 } elseif (strpos($template, "la_") > -1) {
286 // "Logical-area" template found
289 // Test for extension
290 $test = substr($template, 0, strpos($template, "_"));
291 if (EXT_IS_ACTIVE($test)) {
292 // Set extra path to extension's name
297 ////////////////////////
298 // Generate file name //
299 ////////////////////////
300 $FQFN = $basePath.$mode.$template.".tpl";
302 if ((!empty($GLOBALS['what'])) && ((strpos($template, "_header") > 0) || (strpos($template, "_footer") > 0)) && (($mode == "guest/") || ($mode == "member/") || ($mode == "admin/"))) {
303 // Select what depended header/footer template file for admin/guest/member area
304 $file2 = sprintf("%s%s%s_%s.tpl",
308 SQL_ESCAPE($GLOBALS['what'])
312 if (FILE_READABLE($file2)) $FQFN = $file2;
314 // Remove variable from memory
318 // Does the special template exists?
319 if (!FILE_READABLE($FQFN)) {
320 // Reset to default template
321 $FQFN = $basePath.$template.".tpl";
324 // Now does the final template exists?
325 if (FILE_READABLE($FQFN)) {
326 // The local file does exists so we load it. :)
327 $tmpl_file = READ_FILE($FQFN);
329 // Replace ' to our own chars to preventing them being quoted
330 while (strpos($tmpl_file, "'") !== false) { $tmpl_file = str_replace("'", '{QUOT}', $tmpl_file); }
332 // Do we have to compile the code?
334 if ((strpos($tmpl_file, "\$") !== false) || (strpos($tmpl_file, '{--') !== false) || (strpos($tmpl_file, '--}') > 0)) {
336 $tmpl_file = "\$ret=\"".COMPILE_CODE(smartAddSlashes($tmpl_file))."\";";
339 // Simply return loaded code
343 // Add surrounding HTML comments to help finding bugs faster
344 $ret = "<!-- Template ".$template." - Start -->\n".$ret."<!-- Template ".$template." - End -->\n";
345 } elseif ((IS_ADMIN()) || ((isInstalling()) && (!isInstalled()))) {
346 // Only admins shall see this warning or when installation mode is active
347 $ret = "<br /><span class=\"guest_failed\">".TEMPLATE_404."</span><br />
348 (".basename($FQFN).")<br />
351 <pre>".print_r($content, true)."</pre>
353 <pre>".print_r($DATA, true)."</pre>
357 // Remove content and data
361 // Do we have some content to output or return?
363 // Not empty so let's put it out! ;)
364 if ($return === true) {
365 // Return the HTML code
371 } elseif (isDebugModeEnabled()) {
372 // Warning, empty output!
373 return "E:".$template."<br />\n";
377 // Send mail out to an email address
378 function SEND_EMAIL($toEmail, $subject, $message, $HTML = "N", $mailHeader = "") {
379 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$toEmail},SUBJECT={$subject}<br />\n";
381 // Compile subject line (for POINTS constant etc.)
382 $eval = "\$subject = decodeEntities(\"".COMPILE_CODE(smartAddSlashes($subject))."\");";
386 if ((!eregi("@", $toEmail)) && ($toEmail > 0)) {
387 // Value detected, is the message extension installed?
388 if (EXT_IS_ACTIVE("msg")) {
389 ADD_MESSAGE_TO_BOX($toEmail, $subject, $message, $HTML);
392 // Load email address
393 $result_email = SQL_QUERY_ESC("SELECT email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", array(bigintval($toEmail)), __FUNCTION__, __LINE__);
394 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):numRows=".SQL_NUMROWS($result_email)."<br />\n";
396 // Does the user exist?
397 if (SQL_NUMROWS($result_email)) {
398 // Load email address
399 list($toEmail) = SQL_FETCHROW($result_email);
402 $toEmail = constant('WEBMASTER');
406 SQL_FREERESULT($result_email);
408 } elseif ("$toEmail" == "0") {
410 $toEmail = constant('WEBMASTER');
412 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$toEmail}<br />\n";
414 // Check for PHPMailer or debug-mode
415 if (!CHECK_PHPMAILER_USAGE()) {
416 // Not in PHPMailer-Mode
417 if (empty($mailHeader)) {
418 // Load email header template
419 $mailHeader = LOAD_EMAIL_TEMPLATE("header");
422 $mailHeader .= LOAD_EMAIL_TEMPLATE("header");
424 } elseif (isDebugModeEnabled()) {
425 if (empty($mailHeader)) {
426 // Load email header template
427 $mailHeader = LOAD_EMAIL_TEMPLATE("header");
430 $mailHeader .= LOAD_EMAIL_TEMPLATE("header");
435 $eval = "\$toEmail = \"".COMPILE_CODE(smartAddSlashes($toEmail))."\";";
439 $eval = "\$message = \"".COMPILE_CODE(smartAddSlashes($message))."\";";
442 // Fix HTML parameter (default is no!)
443 if (empty($HTML)) $HTML = "N";
444 if (isDebugModeEnabled()) {
445 // In debug mode we want to display the mail instead of sending it away so we can debug this part
447 ".htmlentities(trim($mailHeader))."
449 Subject : ".$subject."
450 Message : ".$message."
452 } elseif (($HTML == 'Y') && (EXT_IS_ACTIVE('html_mail'))) {
453 // Send mail as HTML away
454 SEND_HTML_EMAIL($toEmail, $subject, $message, $mailHeader);
455 } elseif (!empty($toEmail)) {
457 SEND_RAW_EMAIL($toEmail, $subject, $message, $mailHeader);
458 } elseif ($HTML == 'N') {
460 SEND_RAW_EMAIL(constant('WEBMASTER'), "[PROBLEM:]".$subject, $message, $mailHeader);
464 // Check if legacy or PHPMailer command
465 // @TODO Rewrite this to an extension 'smtp'
467 function CHECK_PHPMAILER_USAGE() {
468 return ((defined('SMTP_HOSTNAME')) && (defined('SMTP_USER')) && (defined('SMTP_PASSWORD')) && (constant('SMTP_HOSTNAME') != "") && (constant('SMTP_USER') != ""));
472 * Send out a raw email with PHPMailer class or legacy mail() command
474 function SEND_RAW_EMAIL ($toEmail, $subject, $msg, $from) {
475 // Shall we use PHPMailer class or legacy mode?
476 if (CHECK_PHPMAILER_USAGE()) {
477 // Use PHPMailer class with SMTP enabled
478 LOAD_INC_ONCE("inc/phpmailer/class.phpmailer.php");
479 LOAD_INC_ONCE("inc/phpmailer/class.smtp.php");
482 $mail = new PHPMailer();
483 $mail->PluginDir = sprintf("%sinc/phpmailer/", constant('PATH'));
486 $mail->SMTPAuth = true;
487 $mail->Host = constant('SMTP_HOSTNAME');
489 $mail->Username = constant('SMTP_USER');
490 $mail->Password = constant('SMTP_PASSWORD');
492 $mail->From = constant('WEBMASTER');
496 $mail->FromName = constant('MAIN_TITLE');
497 $mail->Subject = $subject;
498 if ((EXT_IS_ACTIVE('html_mail')) && (strip_tags($msg) != $msg)) {
500 $mail->AltBody = "Your mail program required HTML support to read this mail!";
501 $mail->WordWrap = 70;
504 $mail->Body = decodeEntities($msg);
506 $mail->AddAddress($toEmail, '');
507 $mail->AddReplyTo(constant('WEBMASTER'), constant('MAIN_TITLE'));
508 $mail->AddCustomHeader("Errors-To:".constant('WEBMASTER'));
509 $mail->AddCustomHeader("X-Loop:".constant('WEBMASTER'));
512 // Use legacy mail() command
513 @mail($toEmail, $subject, decodeEntities($msg), $from);
518 // Generate a password in a specified length or use default password length
519 function GEN_PASS ($LEN = 0) {
520 // Auto-fix invalid length of zero
521 if ($LEN == 0) $LEN = getConfig('pass_len');
523 // Initialize array with all allowed chars
524 $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,-,+,_,/");
526 // Start creating password
528 for ($i = 0; $i < $LEN; $i++) {
529 $PASS .= $ABC[mt_rand(0, count($ABC) -1)];
532 // When the size is below 40 we can also add additional security by scrambling it
533 if (strlen($PASS) <= 40) {
534 // Also scramble the password
535 $PASS = scrambleString($PASS);
538 // Return the password
542 function MAKE_DATETIME ($time, $mode="0")
546 return NEVER_HAPPENED;
548 // Filter out numbers
549 $time = bigintval($time);
552 switch (GET_LANGUAGE())
554 case "de": // German date / time format
556 case "0": $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
557 case "1": $ret = strtolower(date("d.m.Y - H:i", $time)); break;
558 case "2": $ret = date("d.m.Y|H:i", $time); break;
559 case "3": $ret = date("d.m.Y", $time); break;
561 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
566 default: // Default is the US date / time format!
568 case "0": $ret = date("r", $time); break;
569 case "1": $ret = date("Y-m-d - g:i A", $time); break;
570 case "2": $ret = date("y-m-d|H:i", $time); break;
571 case "3": $ret = date("y-m-d", $time); break;
573 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
580 // Translates the american decimal dot into a german comma
581 function TRANSLATE_COMMA ($dotted, $cut=true, $max=0) {
582 // Default is 3 you can change this in admin area "Misc -> Misc Options"
583 if (!isConfigEntrySet('max_comma')) setConfigEntry('max_comma', "3");
585 // Use from config is default
586 $maxComma = getConfig('max_comma');
588 // Use from parameter?
589 if ($max > 0) $maxComma = $max;
592 if (($cut) && ($max == 0)) {
593 // Test for commata if in cut-mode
594 $com = explode(".", $dotted);
595 if (count($com) < 2) {
596 // Don't display commatas even if there are none... ;-)
602 //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "dotted={$dotted},maxComma={$maxComma}");
605 switch (GET_LANGUAGE()) {
607 $dotted = number_format($dotted, $maxComma, ",", ".");
611 $dotted = number_format($dotted, $maxComma, ".", ",");
615 // Return translated value
620 function DEREFERER ($URL) {
621 // Don't de-refer our own links!
622 if (substr($URL, 0, strlen(URL)) != URL) {
623 // De-refer this link
624 $URL = 'modules.php?module=loader&url=' . encodeString(compileUriCode($URL));
631 // Translate Uni*-like gender to human-readable
632 function TRANSLATE_GENDER ($gender) {
634 $ret = '!' . $gender . '!';
636 // Male/female or company?
638 case 'M': $ret = getMessage('GENDER_M'); break;
639 case 'F': $ret = getMessage('GENDER_F'); break;
640 case 'C': $ret = getMessage('GENDER_C'); break;
642 // Log unknown gender
643 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown gender %s detected.", $gender));
647 // Return translated gender
652 function FRAMETESTER ($URL) {
653 // Prepare frametester URL
654 $frametesterUrl = sprintf("{!URL!}/modules.php?module=frametester&url=%s",
655 encodeString(compileUriCode($URL))
657 return $frametesterUrl;
661 function SELECTION_COUNT ($array) {
663 if (is_array($array)) {
664 foreach ($array as $key => $selected) {
665 if (!empty($selected)) $ret++;
672 function IMG_CODE ($code, $type, $DATA, $uid) {
673 return '<IMG border="0" alt="Code" src="{!URL!}/mailid_top.php?uid=' . $uid . '&' . $type . '=' . $DATA . '&mode=img&code=' . $code . '" />';
677 function TRANSLATE_STATUS ($status) {
683 $ret = getMessage(sprintf("ACCOUNT_%s", $status));
688 $ret = getMessage('ACCOUNT_DELETED');
692 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
693 $ret = sprintf(getMessage('UNKNOWN_STATUS'), $status);
701 function GET_LANGUAGE() {
702 // Set default return value to default language from config
703 $ret = constant('DEFAULT_LANG');
708 // Is the variable set
709 if (REQUEST_ISSET_GET(('mx_lang'))) {
710 // Accept only first 2 chars
711 $lang = substr(REQUEST_GET('mx_lang'), 0, 2);
712 } elseif (isset($GLOBALS['cache_array']['language'])) {
714 $ret = $GLOBALS['cache_array']['language'];
715 } elseif (!empty($lang)) {
716 // Check if main language file does exist
717 if (FILE_READABLE(constant('PATH').'inc/language/'.$lang.'.php')) {
718 // Okay found, so let's update cookies
721 } elseif (!isSessionVariableSet('mx_lang')) {
722 // Return stored value from cookie
723 $ret = get_session('mx_lang');
725 // Fixes a warning before the session has the mx_lang constant
726 if (empty($ret)) $ret = constant('DEFAULT_LANG');
730 $GLOBALS['cache_array']['language'] = $ret;
736 function SET_LANGUAGE ($lang) {
737 // Accept only first 2 chars!
738 $lang = substr(SQL_ESCAPE(strip_tags($lang)), 0, 2);
741 set_session('mx_lang', $lang);
744 function LOAD_EMAIL_TEMPLATE($template, $content=array(), $UID='0') {
745 global $DATA, $_CONFIG;
747 // Make sure all template names are lowercase!
748 $template = strtolower($template);
750 // Default 'nickname' if extension is not installed
753 // Prepare IP number and User Agent
754 $REMOTE_ADDR = GET_REMOTE_ADDR();
755 $HTTP_USER_AGENT = GET_USER_AGENT();
758 $ADMIN = constant('MAIN_TITLE');
760 // Is the admin logged in?
763 $aid = GET_CURRENT_ADMIN_ID();
766 $ADMIN = GET_ADMIN_EMAIL($aid);
769 // Neutral email address is default
770 $email = constant('WEBMASTER');
772 // Expiration in a nice output format
773 if (getConfig('auto_purge') == 0) {
774 // Will never expire!
775 $EXPIRATION = getMessage('MAIL_WILL_NEVER_EXPIRE');
777 // Create nice date string
778 $EXPIRATION = CREATE_FANCY_TIME(getConfig('auto_purge'));
781 // Is content an array?
782 if (is_array($content)) {
783 // Add expiration to array, $EXPIRATION is now deprecated!
784 $content['expiration'] = $EXPIRATION;
788 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):UID={$UID},template={$template},content[]=".gettype($content)."<br />\n";
789 if (($UID > 0) && (is_array($content))) {
790 // If nickname extension is installed, fetch nickname as well
791 if (EXT_IS_ACTIVE('nickname')) {
792 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NICKNAME!<br />\n";
794 $result = SQL_QUERY_ESC("SELECT surname, family, gender, email, nickname FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
795 array(bigintval($UID)), __FUNCTION__, __LINE__);
797 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NO-NICK!<br />\n";
799 $result = SQL_QUERY_ESC("SELECT surname, family, gender, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
800 array(bigintval($UID)), __FUNCTION__, __LINE__);
803 // Fetch and merge data
804 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - PRE<br />\n";
805 $content = merge_array($content, SQL_FETCHARRAY($result));
806 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - AFTER<br />\n";
809 SQL_FREERESULT($result);
812 // Translate M to male or F to female if present
813 if (isset($content['gender'])) $content['gender'] = TRANSLATE_GENDER($content['gender']);
815 // Overwrite email from data if present
816 if (isset($content['email'])) $email = $content['email'];
818 // Store email for some functions in global data array
819 $DATA['email'] = $email;
822 $basePath = sprintf("%stemplates/%s/emails/", constant('PATH'), GET_LANGUAGE());
824 // Check for admin/guest/member templates
825 if (strpos($template, "admin_") > -1) {
826 // Admin template found
827 $FQFN = $basePath."admin/".$template.".tpl";
828 } elseif (strpos($template, "guest_") > -1) {
829 // Guest template found
830 $FQFN = $basePath."guest/".$template.".tpl";
831 } elseif (strpos($template, "member_") > -1) {
832 // Member template found
833 $FQFN = $basePath."member/".$template.".tpl";
835 // Test for extension
836 $test = substr($template, 0, strpos($template, "_"));
837 if (EXT_IS_ACTIVE($test)) {
838 // Set extra path to extension's name
839 $FQFN = $basePath.$test."/".$template.".tpl";
841 // No special filename
842 $FQFN = $basePath.$template.".tpl";
846 // Does the special template exists?
847 if (!FILE_READABLE($FQFN)) {
848 // Reset to default template
849 $FQFN = $basePath.$template.".tpl";
852 // Now does the final template exists?
854 if (FILE_READABLE($FQFN)) {
855 // The local file does exists so we load it. :)
856 $tmpl_file = READ_FILE($FQFN);
857 $tmpl_file = SQL_ESCAPE($tmpl_file);
860 $tmpl_file = "\$newContent = decodeEntities(\"".COMPILE_CODE($tmpl_file)."\");";
862 } elseif (!empty($template)) {
863 // Template file not found!
864 $newContent = "{--TEMPLATE_404--}: ".$template."<br />
865 {--TEMPLATE_CONTENT--}
866 <pre>".print_r($content, true)."</pre>
868 <pre>".print_r($DATA, true)."</pre>
871 // Debug mode not active? Then remove the HTML tags
872 if (!isDebugModeEnabled()) $newContent = strip_tags($newContent);
874 // No template name supplied!
875 $newContent = getMessage('NO_TEMPLATE_SUPPLIED');
878 // Is there some content?
879 if (empty($newContent)) {
881 $newContent = "Compiler error for template {$template}!\nUncompiled content:\n".$tmpl_file;
882 // Add last error if the required function exists
883 if (function_exists('error_get_last')) $newContent .= "\n--------------------------------------\nDebug:\n".print_r(error_get_last(), true)."--------------------------------------\nPlease don't alter these informations!\nThanx.";
886 // Remove content and data
890 // Return compiled content
891 return COMPILE_CODE($newContent);
894 function MAKE_TIME ($H, $M, $S, $stamp) {
895 // Extract day, month and year from given timestamp
896 $DAY = date("d", $stamp);
897 $MONTH = date("m", $stamp);
898 $YEAR = date('Y', $stamp);
900 // Create timestamp for wished time which depends on extracted date
901 return mktime($H, $M, $S, $MONTH, $DAY, $YEAR);
904 function LOAD_URL ($URL, $addUrlData=true) {
905 // Compile out URI codes
906 $URL = compileUriCode($URL);
908 // Check if http(s):// is there
909 if ((substr($URL, 0, 7) != "http://") && (substr($URL, 0, 8) != "https://")) {
910 // Make all URLs full-qualified
914 // Three different debug ways...
915 //* DEBUG: */ debug_report_bug(sprintf("%s[%s:] URL=%s", __FUNCTION__, __LINE__, $URL));
916 //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, $URL);
917 //* DEBUG: */ die($URL);
920 $OUTPUT = ob_get_contents();
922 // Clear it only if there is content
923 if (!empty($OUTPUT)) {
927 // Add some data to URL if cookies are not accepted
928 if (((!defined('__COOKIES')) || (!constant('__COOKIES'))) && ($addUrlData)) $URL = ADD_URL_DATA($URL);
930 // Probe for bot from search engine
931 if ((eregi("spider", GET_USER_AGENT())) || (eregi("bot", GET_USER_AGENT()))) {
932 // Search engine bot detected so let's rewrite many chars for the link
933 $URL = htmlentities(strip_tags($URL), ENT_QUOTES);
935 // Output new location link as anchor
936 OUTPUT_HTML("<a href=\"".$URL."\">".$URL."</a>");
937 } elseif (!headers_sent()) {
938 // Load URL when headers are not sent
939 //* DEBUG: */ debug_report_bug("URL={$URL}");
940 header ("Location: ".str_replace("&", "&", $URL));
942 // Output error message
943 LOAD_INC('inc/header.php');
944 LOAD_TEMPLATE("redirect_url", false, str_replace("&", "&", $URL));
945 LOAD_INC('inc/footer.php');
948 // Shut the mailer down here
952 // Wrapper for LOAD_URL but URL comes from a configuration entry
953 function LOAD_CONFIGURED_URL ($configEntry) {
955 $URL = getConfig($configEntry);
960 trigger_error(sprintf("Configuration entry %s is not set!", $configEntry));
968 function COMPILE_CODE ($code, $simple = false, $constants = true, $full = true) {
969 // Is the code a string?
970 if (!is_string($code)) {
971 // Silently return it
975 // Init replacement-array with full security characters
976 $secChars = $GLOBALS['security_chars'];
978 // Select smaller set of chars to replace when we e.g. want to compile URLs
979 if (!$full) $secChars = $GLOBALS['url_chars'];
982 if ($constants === true) {
983 // BEFORE 0.2.1 : Language and data constants
984 // WITH 0.2.1+ : Only language constants
985 $code = str_replace('{--','".', str_replace('--}','."', $code));
987 // BEFORE 0.2.1 : Not used
988 // WITH 0.2.1+ : Data constants
989 $code = str_replace('{!','".', str_replace("!}", '."', $code));
992 // Compile QUOT and other non-HTML codes
993 foreach ($secChars['to'] as $k => $to) {
994 // Do the reversed thing as in inc/libs/security_functions.php
995 $code = str_replace($to, $secChars['from'][$k], $code);
998 // But shall I keep simple quotes for later use?
999 if ($simple) $code = str_replace("'", '{QUOT}', $code);
1001 // Find $content[bla][blub] entries
1002 preg_match_all('/\$(content|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
1004 // Are some matches found?
1005 if ((count($matches) > 0) && (count($matches[0]) > 0)) {
1006 // Replace all matches
1007 $matchesFound = array();
1008 foreach ($matches[0] as $key => $match) {
1009 // Fuzzy look has failed by default
1010 $fuzzyFound = false;
1012 // Fuzzy look on match if already found
1013 foreach ($matchesFound as $found => $set) {
1015 $test = substr($found, 0, strlen($match));
1017 // Does this entry exist?
1018 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):found={$found},match={$match},set={$set}<br />\n";
1019 if ($test == $match) {
1021 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):fuzzyFound!<br />\n";
1028 if ($fuzzyFound) continue;
1030 // Take all string elements
1031 if ((is_string($matches[4][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key."_".$matches[4][$key]]))) {
1032 // Replace it in the code
1033 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):key={$key},match={$match}<br />\n";
1034 $newMatch = str_replace("[".$matches[4][$key]."]", "['".$matches[4][$key]."']", $match);
1035 $code = str_replace($match, "\".".$newMatch.".\"", $code);
1036 $matchesFound[$key."_".$matches[4][$key]] = 1;
1037 $matchesFound[$match] = 1;
1038 } elseif (!isset($matchesFound[$match])) {
1039 // Not yet replaced!
1040 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):match={$match}<br />\n";
1041 $code = str_replace($match, "\".".$match.".\"", $code);
1042 $matchesFound[$match] = 1;
1047 // Return compiled code
1051 /************************************************************************
1053 * Gaenderter Sortier-Algorythmus, $array wird nach dem Array (!) *
1054 * $a_sort sortiert: *
1056 * $array - Das 3-dimensionale Array, das paralell sortiert werden soll *
1057 * $a_sort - Array, das die Sortiereihenfolge der ersten Elementeben *
1058 * $primary_key - Prim.rschl.ssel aus $a_sort, nach dem sortiert wird *
1059 * $order - Sortiereihenfolge: -1 = a-Z, 0 = keine, 1 = Z-a *
1060 * $nums - true = Als Zahlen sortieren, false = Als Zeichen sortieren *
1062 * $a_sort muss Elemente enthalten, deren Wert Schluessel von $array *
1063 * sind... Klingt kompliziert, suchen Sie mal mein Beispiel, dann sehen *
1064 * Sie, dass es doch nicht so schwer ist! :-) *
1066 ************************************************************************/
1067 function array_pk_sort (&$array, $a_sort, $primary_key = 0, $order = -1, $nums = false) {
1069 while ($primary_key < count($a_sort)) {
1070 foreach ($dummy[$a_sort[$primary_key]] as $key => $value) {
1071 foreach ($dummy[$a_sort[$primary_key]] as $key2 => $value2) {
1074 // Sort byte-by-byte (also numbers will be interpreted as chars! E.g.: "9" > "10")
1075 if (($key != $key2) && (strcmp(strtolower($dummy[$a_sort[$primary_key]][$key]), strtolower($dummy[$a_sort[$primary_key]][$key2])) == $order)) $match = true;
1076 } elseif ($key != $key2) {
1077 // Sort numbers (E.g.: 9 < 10)
1078 if (($dummy[$a_sort[$primary_key]][$key] < $dummy[$a_sort[$primary_key]][$key2]) && ($order == -1)) $match = true;
1079 if (($dummy[$a_sort[$primary_key]][$key] > $dummy[$a_sort[$primary_key]][$key2]) && ($order == 1)) $match = true;
1083 // We have found two different values, so let's sort whole array
1084 foreach ($dummy as $sort_key => $sort_val) {
1085 $t = $dummy[$sort_key][$key];
1086 $dummy[$sort_key][$key] = $dummy[$sort_key][$key2];
1087 $dummy[$sort_key][$key2] = $t;
1098 // Write back sorted array
1103 function ADD_SELECTION ($type, $DEFAULT, $prefix="", $id="0") {
1106 if ($type == 'yn') {
1107 // This is a yes/no selection only!
1108 if ($id > 0) $prefix .= "[".$id."]";
1109 $OUT .= " <select name=\"".$prefix."\" class=\"register_select\" size=\"1\">\n";
1111 // Begin with regular selection box here
1112 if (!empty($prefix)) $prefix .= "_";
1114 if ($id > 0) $type2 .= "[".$id."]";
1115 $OUT .= " <select name=\"".strtolower($prefix.$type2)."\" class=\"register_select\" size=\"1\">\n";
1120 for ($idx = 1; $idx < 32; $idx++) {
1121 $OUT .= "<option value=\"".$idx."\"";
1122 if ($DEFAULT == $idx) $OUT .= ' selected="selected"';
1123 $OUT .= ">".$idx."</option>\n";
1127 case "month": // Month
1128 foreach ($GLOBALS['month_descr'] as $month => $descr) {
1129 $OUT .= "<option value=\"".$month."\"";
1130 if ($DEFAULT == $month) $OUT .= ' selected="selected"';
1131 $OUT .= ">".$descr."</option>\n";
1135 case "year": // Year
1137 $YEAR = date('Y', time());
1139 // Use configured min age or fixed?
1140 if (GET_EXT_VERSION('other') >= '0.2.1') {
1142 $startYear = $YEAR - getConfig('min_age');
1145 $startYear = $YEAR - 16;
1148 // Calculate earliest year (100 years old people can still enter Internet???)
1149 $minYear = $YEAR - 100;
1151 // Check if the default value is larger than minimum and bigger than actual year
1152 if (($DEFAULT > $minYear) && ($DEFAULT >= $YEAR)) {
1153 for ($idx = $YEAR; $idx < ($YEAR + 11); $idx++) {
1154 $OUT .= "<option value=\"".$idx."\"";
1155 if ($DEFAULT == $idx) $OUT .= ' selected="selected"';
1156 $OUT .= ">".$idx."</option>\n";
1158 } elseif ($DEFAULT == -1) {
1159 // Current year minus 1
1160 for ($idx = $startYear; $idx <= ($YEAR + 1); $idx++)
1162 $OUT .= "<option value=\"".$idx."\">".$idx."</option>\n";
1165 // Get current year and subtract the configured minimum age
1166 $OUT .= "<option value=\"".($minYear - 1)."\"><".$minYear."</option>\n";
1167 // Calculate earliest year depending on extension version
1168 if (GET_EXT_VERSION('other') >= '0.2.1') {
1169 // Use configured minimum age
1170 $YEAR = date('Y', time()) - getConfig('min_age');
1172 // Use fixed 16 years age
1173 $YEAR = date('Y', time()) - 16;
1176 // Construct year selection list
1177 for ($idx = $minYear; $idx <= $YEAR; $idx++) {
1178 $OUT .= "<option value=\"".$idx."\"";
1179 if ($DEFAULT == $idx) $OUT .= ' selected="selected"';
1180 $OUT .= ">".$idx."</option>\n";
1187 for ($idx = 0; $idx < 60; $idx+=5) {
1188 if (strlen($idx) == 1) $idx = "0".$idx;
1189 $OUT .= "<option value=\"".$idx."\"";
1190 if ($DEFAULT == $idx) $OUT .= ' selected="selected"';
1191 $OUT .= ">".$idx."</option>\n";
1196 for ($idx = 0; $idx < 24; $idx++) {
1197 if (strlen($idx) == 1) $idx = "0".$idx;
1198 $OUT .= "<option value=\"".$idx."\"";
1199 if ($DEFAULT == $idx) $OUT .= ' selected="selected"';
1200 $OUT .= ">".$idx."</option>\n";
1205 $OUT .= "<option value=\"Y\"";
1206 if ($DEFAULT == 'Y') $OUT .= ' selected="selected"';
1207 $OUT .= ">{--YES--}</option>\n<option value=\"N\"";
1208 if ($DEFAULT == 'N') $OUT .= ' selected="selected"';
1209 $OUT .= ">{--NO--}</option>\n";
1212 $OUT .= " </select>\n";
1217 function TRANSLATE_YESNO ($yn) {
1219 $translated = "??? (".$yn.")";
1221 case 'Y': $translated = getMessage('YES'); break;
1222 case 'N': $translated = getMessage('NO'); break;
1224 // Log unknown value
1225 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown value %s. Expected Y/N!", $yn));
1234 // Deprecated : $length
1237 function generateRandomCodde ($length, $code, $uid, $DATA="") {
1238 // Fix missing _MAX constant
1239 // @TODO Rewrite this unnice code
1240 if (!defined('_MAX')) define('_MAX', 15235);
1242 // Build server string
1243 $server = $_SERVER['PHP_SELF'].":".GET_USER_AGENT().":".getenv('SERVER_SOFTWARE').":".GET_REMOTE_ADDR().":".":".filemtime(constant('PATH')."inc/databases.php");
1246 $keys = constant('SITE_KEY').":".constant('DATE_KEY');
1247 if (isConfigEntrySet('secret_key')) $keys .= ":".getConfig('secret_key');
1248 if (isConfigEntrySet('file_hash')) $keys .= ":".getConfig('file_hash');
1249 $keys .= ":".date("d-m-Y (l-F-T)", getConfig(('patch_ctime')));
1250 if (isConfigEntrySet('master_salt')) $keys .= ":".getConfig('master_salt');
1252 // Build string from misc data
1253 $data = $code.":".$uid.":".$DATA;
1255 // Add more additional data
1256 if (isSessionVariableSet('u_hash')) $data .= ":".get_session('u_hash');
1257 if (isUserIdSet()) $data .= ":".getUserId();
1258 if (isSessionVariableSet('mxchange_theme')) $data .= ":".get_session('mxchange_theme');
1259 if (isSessionVariableSet('mx_lang')) $data .= ":".GET_LANGUAGE();
1260 if (isset($GLOBALS['refid'])) $data .= ":".$GLOBALS['refid'];
1262 // Calculate number for generating the code
1263 $a = $code + constant('_ADD') - 1;
1265 if (isConfigEntrySet('master_hash')) {
1266 // Generate hash with master salt from modula of number with the prime number and other data
1267 $saltedHash = generateHash(($a % constant('_PRIME')).":".$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a, getConfig('master_salt'));
1269 // Create number from hash
1270 $rcode = hexdec(substr($saltedHash, strlen(getConfig('master_salt')), 9)) / abs(constant('_MAX') - $a + sqrt(constant('_ADD'))) / pi();
1272 // Generate hash with "hash of site key" from modula of number with the prime number and other data
1273 $saltedHash = generateHash(($a % constant('_PRIME')).":".$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a, substr(sha1(constant('SITE_KEY')), 0, 8));
1275 // Create number from hash
1276 $rcode = hexdec(substr($saltedHash, 8, 9)) / abs(constant('_MAX') - $a + sqrt(constant('_ADD'))) / pi();
1279 // At least 10 numbers shall be secure enought!
1280 $len = getConfig('code_length');
1281 if ($len == 0) $len = $length;
1282 if ($len == 0) $len = 10;
1284 // Cut off requested counts of number
1285 $return = substr(str_replace('.', '', $rcode), 0, $len);
1287 // Done building code
1291 // Does only allow numbers
1292 function bigintval ($num, $castValue = true) {
1293 // Filter all numbers out
1294 $ret = preg_replace("/[^0123456789]/", '', $num);
1297 if ($castValue) $ret = (double)$ret;
1299 // Has the whole value changed?
1300 // @TODO Remove this if() block if all is working fine
1301 if ("".$ret."" != "".$num."") {
1303 debug_report_bug("{$ret}<>{$num}");
1310 // Insert the code in $img_code into jpeg or PNG image
1311 function GENERATE_IMAGE ($img_code, $headerSent=true) {
1312 if ((strlen($img_code) > 6) || (empty($img_code)) || (getConfig('code_length') == 0)) {
1313 // Stop execution of function here because of over-sized code length
1315 } elseif (!$headerSent) {
1316 // Return in an HTML code code
1317 return "<img src=\"{!URL!}/img.php?code=".$img_code."\" alt=\"Image\" />\n";
1321 $img = sprintf("%s/theme/%s/images/code_bg.%s", constant('PATH'), GET_CURR_THEME(), getConfig('img_type'));
1322 if (FILE_READABLE($img)) {
1323 // Switch image type
1324 switch (getConfig('img_type'))
1327 // Okay, load image and hide all errors
1328 $image = @imagecreatefromjpeg($img);
1332 // Okay, load image and hide all errors
1333 $image = @imagecreatefrompng($img);
1337 // Exit function here
1338 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("File for image type %s not found.", getConfig('img_type')));
1342 // Generate text color (red/green/blue; 0 = dark, 255 = bright)
1343 $text_color = imagecolorallocate($image, 0, 0, 0);
1345 // Insert code into image
1346 imagestring($image, 5, 14, 2, $img_code, $text_color);
1348 // Return to browser
1349 header ("Content-Type: image/".getConfig('img_type'));
1351 // Output image with matching image factory
1352 switch (getConfig('img_type')) {
1353 case "jpg": imagejpeg($image); break;
1354 case "png": imagepng($image); break;
1357 // Remove image from memory
1358 imagedestroy($image);
1360 // Create selection box or array of splitted timestamp
1361 function CREATE_TIME_SELECTIONS ($timestamp, $prefix="", $display="", $align="center", $return_array=false) {
1362 // Calculate 2-seconds timestamp
1363 $stamp = round($timestamp);
1364 //* DEBUG: */ print("*".$stamp."/".$timestamp."*<br />");
1366 // Do we have a leap year?
1368 $TEST = date('Y', time()) / 4;
1369 $M1 = date("m", time());
1370 $M2 = date("m", (time() + $timestamp));
1372 // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1373 if ((floor($TEST) == $TEST) && ($M1 == "02") && ($M2 > "02")) $SWITCH = getConfig('one_day');
1375 // First of all years...
1376 $Y = abs(floor($timestamp / (31536000 + $SWITCH)));
1377 //* DEBUG: */ print("Y={$Y}<br />\n");
1379 $M = abs(floor($timestamp / 2628000 - $Y * 12));
1380 //* DEBUG: */ print("M={$M}<br />\n");
1382 $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / getConfig('one_day')) / 7) - ($M / 12 * (365 + $SWITCH / getConfig('one_day')) / 7)));
1383 //* DEBUG: */ print("W={$W}<br />\n");
1385 $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / getConfig('one_day')) - ($M / 12 * (365 + $SWITCH / getConfig('one_day'))) - $W * 7));
1386 //* DEBUG: */ print("D={$D}<br />\n");
1388 $h = abs(floor($timestamp / 3600 - $Y * (365 + $SWITCH / getConfig('one_day')) * 24 - ($M / 12 * (365 + $SWITCH / getConfig('one_day')) * 24) - $W * 7 * 24 - $D * 24));
1389 //* DEBUG: */ print("h={$h}<br />\n");
1391 $m = abs(floor($timestamp / 60 - $Y * (365 + $SWITCH / getConfig('one_day')) * 24 * 60 - ($M / 12 * (365 + $SWITCH / getConfig('one_day')) * 24 * 60) - $W * 7 * 24 * 60 - $D * 24 * 60 - $h * 60));
1392 //* DEBUG: */ print("m={$m}<br />\n");
1393 // And at last seconds...
1394 $s = abs(floor($timestamp - $Y * (365 + $SWITCH / getConfig('one_day')) * 24 * 3600 - ($M / 12 * (365 + $SWITCH / getConfig('one_day')) * 24 * 3600) - $W * 7 * 24 * 3600 - $D * 24 * 3600 - $h * 3600 - $m * 60));
1395 //* DEBUG: */ print("s={$s}<br />\n");
1397 // Is seconds zero and time is < 60 seconds?
1398 if (($s == 0) && ($timestamp < 60)) {
1400 $s = round($timestamp);
1404 // Now we convert them in seconds...
1406 if ($return_array) {
1407 // Just put all data in an array for later use
1419 $OUT = "<div align=\"".$align."\">\n";
1420 $OUT .= "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"admin_table dashed\">\n";
1423 if (ereg('Y', $display) || (empty($display))) {
1424 $OUT .= " <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_YEARS--}</strong></td>\n";
1427 if (ereg("M", $display) || (empty($display))) {
1428 $OUT .= " <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_MONTHS--}</strong></td>\n";
1431 if (ereg("W", $display) || (empty($display))) {
1432 $OUT .= " <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_WEEKS--}</strong></td>\n";
1435 if (ereg("D", $display) || (empty($display))) {
1436 $OUT .= " <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_DAYS--}</strong></td>\n";
1439 if (ereg("h", $display) || (empty($display))) {
1440 $OUT .= " <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_HOURS--}</strong></td>\n";
1443 if (ereg("m", $display) || (empty($display))) {
1444 $OUT .= " <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_MINUTES--}</strong></td>\n";
1447 if (ereg("s", $display) || (empty($display))) {
1448 $OUT .= " <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_SECONDS--}</strong></td>\n";
1454 if (ereg('Y', $display) || (empty($display))) {
1455 // Generate year selection
1456 $OUT .= " <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_ye\" size=\"1\">\n";
1457 for ($idx = 0; $idx <= 10; $idx++) {
1458 $OUT .= " <option class=\"mini_select\" value=\"".$idx."\"";
1459 if ($idx == $Y) $OUT .= ' selected="selected"';
1460 $OUT .= ">".$idx."</option>\n";
1462 $OUT .= " </select></td>\n";
1464 $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ye\" value=\"0\" />\n";
1467 if (ereg("M", $display) || (empty($display))) {
1468 // Generate month selection
1469 $OUT .= " <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_mo\" size=\"1\">\n";
1470 for ($idx = 0; $idx <= 11; $idx++)
1472 $OUT .= " <option class=\"mini_select\" value=\"".$idx."\"";
1473 if ($idx == $M) $OUT .= ' selected="selected"';
1474 $OUT .= ">".$idx."</option>\n";
1476 $OUT .= " </select></td>\n";
1478 $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mo\" value=\"0\" />\n";
1481 if (ereg("W", $display) || (empty($display))) {
1482 // Generate week selection
1483 $OUT .= " <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_we\" size=\"1\">\n";
1484 for ($idx = 0; $idx <= 4; $idx++) {
1485 $OUT .= " <option class=\"mini_select\" value=\"".$idx."\"";
1486 if ($idx == $W) $OUT .= ' selected="selected"';
1487 $OUT .= ">".$idx."</option>\n";
1489 $OUT .= " </select></td>\n";
1491 $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_we\" value=\"0\" />\n";
1494 if (ereg("D", $display) || (empty($display))) {
1495 // Generate day selection
1496 $OUT .= " <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_da\" size=\"1\">\n";
1497 for ($idx = 0; $idx <= 31; $idx++) {
1498 $OUT .= " <option class=\"mini_select\" value=\"".$idx."\"";
1499 if ($idx == $D) $OUT .= ' selected="selected"';
1500 $OUT .= ">".$idx."</option>\n";
1502 $OUT .= " </select></td>\n";
1504 $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_da\" value=\"0\">\n";
1507 if (ereg("h", $display) || (empty($display))) {
1508 // Generate hour selection
1509 $OUT .= " <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_ho\" size=\"1\">\n";
1510 for ($idx = 0; $idx <= 23; $idx++) {
1511 $OUT .= " <option class=\"mini_select\" value=\"".$idx."\"";
1512 if ($idx == $h) $OUT .= ' selected="selected"';
1513 $OUT .= ">".$idx."</option>\n";
1515 $OUT .= " </select></td>\n";
1517 $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ho\" value=\"0\">\n";
1520 if (ereg("m", $display) || (empty($display))) {
1521 // Generate minute selection
1522 $OUT .= " <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_mi\" size=\"1\">\n";
1523 for ($idx = 0; $idx <= 59; $idx++) {
1524 $OUT .= " <option class=\"mini_select\" value=\"".$idx."\"";
1525 if ($idx == $m) $OUT .= ' selected="selected"';
1526 $OUT .= ">".$idx."</option>\n";
1528 $OUT .= " </select></td>\n";
1530 $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mi\" value=\"0\">\n";
1533 if (ereg("s", $display) || (empty($display))) {
1534 // Generate second selection
1535 $OUT .= " <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_se\" size=\"1\">\n";
1536 for ($idx = 0; $idx <= 59; $idx++) {
1537 $OUT .= " <option class=\"mini_select\" value=\"".$idx."\"";
1538 if ($idx == $s) $OUT .= ' selected="selected"';
1539 $OUT .= ">".$idx."</option>\n";
1541 $OUT .= " </select></td>\n";
1543 $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_se\" value=\"0\">\n";
1546 $OUT .= "</table>\n";
1548 // Return generated HTML code
1554 function CREATE_TIMESTAMP_FROM_SELECTIONS ($prefix, $POST) {
1555 // Initial return value
1558 // Do we have a leap year?
1560 $TEST = date('Y', time()) / 4;
1561 $M1 = date("m", time());
1562 // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1563 if ((floor($TEST) == $TEST) && ($M1 == "02") && ($POST[$prefix."_mo"] > "02")) $SWITCH = getConfig('one_day');
1564 // First add years...
1565 $ret += $POST[$prefix."_ye"] * (31536000 + $SWITCH);
1567 $ret += $POST[$prefix."_mo"] * 2628000;
1569 $ret += $POST[$prefix."_we"] * 604800;
1571 $ret += $POST[$prefix."_da"] * 86400;
1573 $ret += $POST[$prefix."_ho"] * 3600;
1575 $ret += $POST[$prefix."_mi"] * 60;
1576 // And at last seconds...
1577 $ret += $POST[$prefix."_se"];
1578 // Return calculated value
1582 // Sends out mail to all administrators
1583 // IMPORTANT: Please use SEND_ADMIN_NOTIFCATION() for now!
1584 function SEND_ADMIN_EMAILS_PRO ($subj, $template, $content, $UID) {
1585 // Trim template name
1586 $template = trim($template);
1588 // Load email template
1589 $msg = LOAD_EMAIL_TEMPLATE($template, $content, $UID);
1591 // Check which admin shall receive this mail
1592 $result = SQL_QUERY_ESC("SELECT DISTINCT admin_id FROM `{!_MYSQL_PREFIX!}_admins_mails` WHERE mail_template='%s' ORDER BY admin_id",
1593 array($template), __FUNCTION__, __LINE__);
1594 if (SQL_NUMROWS($result) == 0) {
1595 // Create new entry (to all admins)
1596 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_admins_mails` (admin_id, mail_template) VALUES (0, '%s')",
1597 array($template), __FUNCTION__, __LINE__);
1599 // Load admin IDs...
1600 // @TODO This can be, somehow, rewritten
1601 $adminIds = array();
1602 while ($content = SQL_FETCHARRAY($result)) {
1603 $adminIds[] = $content['admin_id'];
1607 SQL_FREERESULT($result);
1612 // "implode" IDs and query string
1613 $aid = implode(",", $adminIds);
1615 if (EXT_IS_ACTIVE('events')) {
1616 // Add line to user events
1617 EVENTS_ADD_LINE($subj, $msg, $UID);
1619 // Log error for debug
1620 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Extension 'events' missing: tpl=%s,subj=%s,UID=%s",
1626 } elseif ($aid == "0") {
1627 // Select all email adresses
1628 $result = SQL_QUERY("SELECT email FROM `{!_MYSQL_PREFIX!}_admins` ORDER BY `id`",
1629 __FUNCTION__, __LINE__);
1631 // If Admin-ID is not "to-all" select
1632 $result = SQL_QUERY_ESC("SELECT email FROM `{!_MYSQL_PREFIX!}_admins` WHERE id IN (%s) ORDER BY `id`",
1633 array($aid), __FUNCTION__, __LINE__);
1637 // Load email addresses and send away
1638 while ($content = SQL_FETCHARRAY($result)) {
1639 SEND_EMAIL($content['email'], $subj, $msg);
1643 SQL_FREERESULT($result);
1647 function CREATE_FANCY_TIME ($stamp) {
1648 // Get data array with years/months/weeks/days/...
1649 $data = CREATE_TIME_SELECTIONS($stamp, '', '', '', true);
1651 foreach($data as $k => $v) {
1653 // Value is greater than 0 "eval" data to return string
1654 $eval = "\$ret .= \", \".\$v.\" {--_".strtoupper($k)."--}\";";
1660 // Do we have something there?
1661 if (strlen($ret) > 0) {
1662 // Remove leading commata and space
1663 $ret = substr($ret, 2);
1666 $ret = "0 {--_SECONDS--}";
1669 // Return fancy time string
1674 function ADD_EMAIL_NAV ($PAGES, $offset, $show_form, $colspan, $return=false) {
1675 $SEP = ''; $TOP = '';
1678 $SEP = "<tr><td colspan=\"".$colspan."\" class=\"seperator\"> </td></tr>";
1682 for ($page = 1; $page <= $PAGES; $page++) {
1683 // Is the page currently selected or shall we generate a link to it?
1684 if (($page == REQUEST_GET('page')) || ((!REQUEST_ISSET_GET('page')) && ($page == "1"))) {
1685 // Is currently selected, so only highlight it
1686 $NAV .= "<strong>-";
1688 // Open anchor tag and add base URL
1689 $NAV .= "<a href=\"{!URL!}/modules.php?module=admin&what=".$GLOBALS['what']."&page=".$page."&offset=".$offset;
1691 // Add userid when we shall show all mails from a single member
1692 if ((REQUEST_ISSET_GET('uid')) && (bigintval(REQUEST_GET('uid')) > 0)) $NAV .= "&uid=".bigintval(REQUEST_GET('uid'));
1694 // Close open anchor tag
1698 if (($page == REQUEST_GET('page')) || ((!REQUEST_ISSET_GET('page')) && ($page == "1"))) {
1699 // Is currently selected, so only highlight it
1700 $NAV .= "-</strong>";
1706 // Add seperator if we have not yet reached total pages
1707 if ($page < $PAGES) $NAV .= " | ";
1710 // Define constants only once
1711 if (!defined('__NAV_OUTPUT')) {
1712 define('__NAV_OUTPUT' , $NAV);
1713 define('__NAV_COLSPAN', $colspan);
1714 define('__NAV_TOP' , $TOP);
1715 define('__NAV_SEP' , $SEP);
1718 // Load navigation template
1719 $OUT = LOAD_TEMPLATE("admin_email_nav_row", true);
1721 if ($return === true) {
1722 // Return generated HTML-Code
1730 // Extract host from script name
1731 function EXTRACT_HOST (&$script) {
1732 // Use default SERVER_URL by default... ;) So?
1733 $url = constant('SERVER_URL');
1735 // Is this URL valid?
1736 if (substr($script, 0, 7) == "http://") {
1737 // Use the hostname from script URL as new hostname
1738 $url = substr($script, 7);
1739 $extract = explode("/", $url);
1741 // Done extracting the URL :)
1744 // Extract host name
1745 $host = str_replace("http://", '', $url);
1746 if (ereg("/", $host)) $host = substr($host, 0, strpos($host, "/"));
1748 // Generate relative URL
1749 //* DEBUG: */ print("SCRIPT=".$script."<br />\n");
1750 if (substr(strtolower($script), 0, 7) == "http://") {
1751 // But only if http:// is in front!
1752 $script = substr($script, (strlen($url) + 7));
1753 } elseif (substr(strtolower($script), 0, 8) == "https://") {
1755 $script = substr($script, (strlen($url) + 8));
1758 //* DEBUG: */ print("SCRIPT=".$script."<br />\n");
1759 if (substr($script, 0, 1) == "/") $script = substr($script, 1);
1765 // Send a GET request
1766 function GET_URL ($script) {
1767 // Compile the script name
1768 $script = COMPILE_CODE($script);
1770 // Extract host name from script
1771 $host = EXTRACT_HOST($script);
1773 // Generate GET request header
1774 $request = "GET /" . trim($script) . " HTTP/1.1\r\n";
1775 $request .= "Host: " . $host . "\r\n";
1776 $request .= "Referer: " . constant('URL') . "/admin.php\r\n";
1777 if (defined('FULL_VERSION')) {
1778 $request .= "User-Agent: " . constant('TITLE') . "/" . constant('FULL_VERSION') . "\r\n";
1780 $request .= "User-Agent: " . constant('TITLE') . "/?.?.?\r\n";
1782 $request .= "Content-Type: text/plain\r\n";
1783 $request .= "Cache-Control: no-cache\r\n";
1784 $request .= "Connection: Close\r\n\r\n";
1786 // Send the raw request
1787 $response = SEND_RAW_REQUEST($host, $request);
1789 // Return the result to the caller function
1793 // Send a POST request
1794 function POST_URL ($script, $postData) {
1795 // Is postData an array?
1796 if (!is_array($postData)) {
1798 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("postData is not an array. Type: %s", gettype($postData)));
1799 return array("", '', '');
1802 // Compile the script name
1803 $script = COMPILE_CODE($script);
1805 // Extract host name from script
1806 $host = EXTRACT_HOST($script);
1808 // Construct request
1809 $data = http_build_query($postData, '','&');
1811 // Generate POST request header
1812 $request = "POST /" . trim($script) . " HTTP/1.1\r\n";
1813 $request .= "Host: " . $host . "\r\n";
1814 $request .= "Referer: " . constant('URL') . "/admin.php\r\n";
1815 $request .= "User-Agent: " . constant('TITLE') . "/" . constant('FULL_VERSION') . "\r\n";
1816 $request .= "Content-type: application/x-www-form-urlencoded\r\n";
1817 $request .= "Content-length: " . strlen($data) . "\r\n";
1818 $request .= "Cache-Control: no-cache\r\n";
1819 $request .= "Connection: Close\r\n\r\n";
1822 // Send the raw request
1823 $response = SEND_RAW_REQUEST($host, $request);
1825 // Return the result to the caller function
1829 // Sends a raw request to another host
1830 function SEND_RAW_REQUEST ($host, $request) {
1832 $response = array("", '', '');
1834 // Default is not to use proxy
1837 // Are proxy settins set?
1838 if ((getConfig('proxy_host') != "") && (getConfig('proxy_port') > 0)) {
1844 //* DEBUG: */ die("SCRIPT=".$script."<br />\n");
1846 $fp = @fsockopen(COMPILE_CODE(getConfig('proxy_host')), getConfig('proxy_port'), $errno, $errdesc, 30);
1848 $fp = @fsockopen($host, 80, $errno, $errdesc, 30);
1852 if (!is_resource($fp)) {
1859 // Generate CONNECT request header
1860 $proxyTunnel = "CONNECT ".$host.":80 HTTP/1.1\r\n";
1861 $proxyTunnel .= "Host: ".$host."\r\n";
1863 // Use login data to proxy? (username at least!)
1864 if (getConfig('proxy_username') != "") {
1866 $encodedAuth = base64_encode(COMPILE_CODE(getConfig('proxy_username')).":".COMPILE_CODE(getConfig('proxy_password')));
1867 $proxyTunnel .= "Proxy-Authorization: Basic ".$encodedAuth."\r\n";
1870 // Add last new-line
1871 $proxyTunnel .= "\r\n";
1872 //* DEBUG: */ print("<strong>proxyTunnel=</strong><pre>".$proxyTunnel."</pre>");
1875 fputs($fp, $proxyTunnel);
1879 // No response received
1883 // Read the first line
1884 $resp = trim(fgets($fp, 10240));
1885 $respArray = explode(" ", $resp);
1886 if ((strtolower($respArray[0]) !== "http/1.0") || ($respArray[1] != "200")) {
1887 // Invalid response!
1893 fputs($fp, $request);
1896 while (!feof($fp)) {
1897 $response[] = trim(fgets($fp, 1024));
1903 // Skip first empty lines
1905 foreach ($resp as $idx => $line) {
1907 $line = trim($line);
1909 // Is this line empty?
1912 array_shift($response);
1914 // Abort on first non-empty line
1919 //* DEBUG: */ print("<strong>Response:</strong><pre>".print_r($response, true)."</pre>");
1921 // Proxy agent found?
1922 if ((substr(strtolower($response[0]), 0, 11) == "proxy-agent") && ($useProxy)) {
1923 // Proxy header detected, so remove two lines
1924 array_shift($response);
1925 array_shift($response);
1928 // Was the request successfull?
1929 if ((!eregi("200 OK", $response[0])) || (empty($response[0]))) {
1930 // Not found / access forbidden
1931 $response = array("", '', '');
1938 // Taken from www.php.net eregi() user comments
1939 function VALIDATE_EMAIL ($email) {
1941 $email = COMPILE_CODE($email);
1943 // Check first part of email address
1944 $first = "[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*";
1947 $domain = "[a-z0-9-]+(\.[a-z0-9-]{2,5})+";
1950 $regex = "^".$first."@".$domain."$";
1952 // Return check result
1953 return eregi($regex, $email);
1956 // Function taken from user comments on www.php.net / function eregi()
1957 function VALIDATE_URL ($URL, $compile=true) {
1958 // Trim URL a little
1959 $URL = trim(urldecode($URL));
1960 //* DEBUG: */ echo $URL."<br />";
1962 // Compile some chars out...
1963 if ($compile) $URL = compileUriCode($URL, false, false, false);
1964 //* DEBUG: */ echo $URL."<br />";
1966 // Check for the extension filter
1967 if (EXT_IS_ACTIVE("filter")) {
1968 // Use the extension's filter set
1969 return FILTER_VALIDATE_URL($URL, false);
1972 // If not installed, perform a simple test. Just make it sure there is always a http:// or
1973 // https:// in front of the URLs
1974 return isUrlValid($URL);
1977 // Generate a list of administrative links to a given userid
1978 function MEMBER_ACTION_LINKS ($uid, $status = "") {
1979 // Define all main targets
1980 $TARGETS = array("del_user", "edit_user", "lock_user", "add_points", "sub_points");
1982 // Begin of navigation links
1983 $eval = "\$OUT = \"[ ";
1985 foreach ($TARGETS as $tar) {
1986 $eval .= "<span class=\\\"admin_user_link\\\"><a href=\\\"{!URL!}/modules.php?module=admin&what=".$tar."&uid=".$uid."\\\" title=\\\"{--ADMIN_LINK_";
1987 //* DEBUG: */ echo "*".$tar."/".$status."*<br />\n";
1988 if (($tar == "lock_user") && ($status == "LOCKED")) {
1989 // Locked accounts shall be unlocked
1990 $eval .= "UNLOCK_USER";
1992 // All other status is fine
1993 $eval .= strtoupper($tar);
1995 $eval .= "_TITLE--}\\\">{--ADMIN_";
1996 if (($tar == "lock_user") && ($status == "LOCKED")) {
1997 // Locked accounts shall be unlocked
1998 $eval .= "UNLOCK_USER";
2000 // All other status is fine
2001 $eval .= strtoupper($tar);
2003 $eval .= "--}</a></span> | ";
2006 // Finish navigation link
2007 $eval = substr($eval, 0, -7)."]\";";
2014 // Generate an email link
2015 function CREATE_EMAIL_LINK ($email, $table = 'admins') {
2016 // Default email link (INSECURE! Spammer can read this by harvester programs)
2017 $EMAIL = "mailto:".$email;
2019 // Check for several extensions
2020 if ((EXT_IS_ACTIVE('admins')) && ($table == 'admins')) {
2021 // Create email link for contacting admin in guest area
2022 $EMAIL = ADMINS_CREATE_EMAIL_LINK($email);
2023 } elseif ((EXT_IS_ACTIVE('user')) && (GET_EXT_VERSION('user') >= '0.3.3') && ($table == "user_data")) {
2024 // Create email link for contacting a member within admin area (or later in other areas, too?)
2025 $EMAIL = USER_CREATE_EMAIL_LINK($email);
2026 } elseif ((EXT_IS_ACTIVE('sponsor')) && ($table == "sponsor_data")) {
2027 // Create email link to contact sponsor within admin area (or like the link above?)
2028 $EMAIL = SPONSOR_CREATE_EMAIL_LINK($email);
2031 // Shall I close the link when there is no admin?
2032 if ((!IS_ADMIN()) && ($EMAIL == $email)) $EMAIL = "#"; // Closed!
2034 // Return email link
2038 // Generate a hash for extra-security for all passwords
2039 function generateHash ($plainText, $salt = "") {
2040 // Is the required extension 'sql_patches' there and a salt is not given?
2041 if (((EXT_VERSION_IS_OLDER('sql_patches', '0.3.6')) || (!EXT_IS_ACTIVE('sql_patches'))) && (empty($salt))) {
2042 // Extension sql_patches is missing/outdated so we hash the plain text with MD5
2043 return md5($plainText);
2046 // Do we miss an arry element here?
2047 if (!isConfigEntrySet('file_hash')) {
2049 debug_report_bug("Missing file_hash in ".__FUNCTION__.".");
2052 // When the salt is empty build a new one, else use the first x configured characters as the salt
2054 // Build server string
2055 $server = $_SERVER['PHP_SELF'].":".GET_USER_AGENT().":".getenv('SERVER_SOFTWARE').":".GET_REMOTE_ADDR().":".":".filemtime(constant('PATH')."inc/databases.php");
2058 $keys = constant('SITE_KEY').":".constant('DATE_KEY').":".getConfig('secret_key').":".getConfig('file_hash').":".date("d-m-Y (l-F-T)", getConfig(('patch_ctime'))).":".getConfig('master_salt');
2061 $data = $plainText.":".uniqid(mt_rand(), true).":".time();
2063 // Calculate number for generating the code
2064 $a = time() + constant('_ADD') - 1;
2066 // Generate SHA1 sum from modula of number and the prime number
2067 $sha1 = sha1(($a % constant('_PRIME')).$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a);
2068 //* DEBUG: */ echo "SHA1=".$sha1." (".strlen($sha1).")<br />";
2069 $sha1 = scrambleString($sha1);
2070 //* DEBUG: */ echo "Scrambled=".$sha1." (".strlen($sha1).")<br />";
2071 //* DEBUG: */ $sha1b = descrambleString($sha1);
2072 //* DEBUG: */ echo "Descrambled=".$sha1b." (".strlen($sha1b).")<br />";
2074 // Generate the password salt string
2075 $salt = substr($sha1, 0, getConfig('salt_length'));
2076 //* DEBUG: */ echo $salt." (".strlen($salt).")<br />";
2079 $salt = substr($salt, 0, getConfig('salt_length'));
2080 //* DEBUG: */ echo "GIVEN={$salt}<br />\n";
2084 return $salt.sha1($salt.$plainText);
2087 // Scramble a string
2088 function scrambleString($str) {
2092 // Final check, in case of failture it will return unscrambled string
2093 if (strlen($str) > 40) {
2094 // The string is to long
2096 } elseif (strlen($str) == 40) {
2098 $scrambleNums = explode(":", getConfig('pass_scramble'));
2100 // Generate new numbers
2101 $scrambleNums = explode(":", genScrambleString(strlen($str)));
2104 // Scramble string here
2105 //* DEBUG: */ echo "***Original=".$str."***<br />";
2106 for ($idx = 0; $idx < strlen($str); $idx++) {
2107 // Get char on scrambled position
2108 $char = substr($str, $scrambleNums[$idx], 1);
2110 // Add it to final output string
2111 $scrambled .= $char;
2114 // Return scrambled string
2115 //* DEBUG: */ echo "***Scrambled=".$scrambled."***<br />";
2119 // De-scramble a string scrambled by scrambleString()
2120 function descrambleString($str) {
2121 // Scramble only 40 chars long strings
2122 if (strlen($str) != 40) return $str;
2124 // Load numbers from config
2125 $scrambleNums = explode(":", getConfig('pass_scramble'));
2128 if (count($scrambleNums) != 40) return $str;
2130 // Begin descrambling
2131 $orig = str_repeat(" ", 40);
2132 //* DEBUG: */ echo "+++Scrambled=".$str."+++<br />";
2133 for ($idx = 0; $idx < 40; $idx++) {
2134 $char = substr($str, $idx, 1);
2135 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
2138 // Return scrambled string
2139 //* DEBUG: */ echo "+++Original=".$orig."+++<br />";
2143 // Generated a "string" for scrambling
2144 function genScrambleString ($len) {
2145 // Prepare array for the numbers
2146 $scrambleNumbers = array();
2148 // First we need to setup randomized numbers from 0 to 31
2149 for ($idx = 0; $idx < $len; $idx++) {
2151 $rand = mt_rand(0, ($len -1));
2153 // Check for it by creating more numbers
2154 while (array_key_exists($rand, $scrambleNumbers)) {
2155 $rand = mt_rand(0, ($len -1));
2159 $scrambleNumbers[$rand] = $rand;
2162 // So let's create the string for storing it in database
2163 $scrambleString = implode(":", $scrambleNumbers);
2164 return $scrambleString;
2167 // Append data like session ID or referal ID to the given URL which would
2168 // normally be stored in cookies
2169 function ADD_URL_DATA ($URL) {
2173 // Determine URL binder
2175 if (strpos($URL, "?") !== false) $BIND = "&";
2177 if ((!defined('__COOKIES')) || ((!__COOKIES))) {
2178 // Cookies are not accepted
2179 if ((REQUEST_ISSET_GET(('refid'))) && (strpos($URL, "refid=") == 0)) {
2180 // Cookie found in URL
2181 $add .= $BIND."refid=".bigintval(REQUEST_GET('refid'));
2182 } elseif ((GET_EXT_VERSION('sql_patches') != '') && (getConfig('def_refid') > 0)) {
2183 // Not found! So let's set default here
2184 $add .= $BIND."refid=".getConfig('def_refid');
2188 // Add all together and return it
2192 // Generate an PGP-like encrypted hash of given hash for e.g. cookies
2193 function generatePassString ($passHash) {
2194 // Return vanilla password hash
2197 // Is a secret key and master salt already initialized?
2198 if ((getConfig('secret_key') != "") && (getConfig('master_salt') != "")) {
2199 // Only calculate when the secret key is generated
2200 $newHash = ''; $start = 9;
2201 for ($idx = 0; $idx < 10; $idx++) {
2202 $part1 = hexdec(substr($passHash, $start, 4));
2203 $part2 = hexdec(substr(getConfig('secret_key'), $start, 4));
2204 $mod = dechex($idx);
2205 if ($part1 > $part2) {
2206 $mod = dechex(sqrt(($part1 - $part2) * constant('_PRIME') / pi()));
2207 } elseif ($part2 > $part1) {
2208 $mod = dechex(sqrt(($part2 - $part1) * constant('_PRIME') / pi()));
2210 $mod = substr(round($mod), 0, 4);
2211 $mod = str_repeat('0', 4-strlen($mod)).$mod;
2212 //* DEBUG: */ echo "*".$start."=".$mod."*<br />";
2217 //* DEBUG: */ print($passHash."<br />".$newHash." (".strlen($newHash).")");
2218 $ret = generateHash($newHash, getConfig('master_salt'));
2219 //* DEBUG: */ print($ret."<br />\n");
2222 //* DEBUG: */ echo "--".$passHash."--<br />\n";
2223 $ret = md5($passHash);
2224 //* DEBUG: */ echo "++".$ret."++<br />\n";
2231 // Fix "deleted" cookies
2232 function FIX_DELETED_COOKIES ($cookies) {
2233 // Is this an array with entries?
2234 if ((is_array($cookies)) && (count($cookies) > 0)) {
2235 // Then check all cookies if they are marked as deleted!
2236 foreach ($cookies as $cookieName) {
2237 // Is the cookie set to "deleted"?
2238 if (get_session($cookieName) == "deleted") {
2239 set_session($cookieName, '');
2245 // Output error messages in a fasioned way and die...
2246 function app_die ($F, $L, $msg) {
2248 LOAD_INC_ONCE('inc/header.php');
2250 // Prepare message for output
2251 $msg = sprintf(getMessage('MXCHANGE_HAS_DIED'), basename($F), $L, $msg);
2253 // Load the message template
2254 LOAD_TEMPLATE('admin_settings_saved', false, $msg);
2257 LOAD_INC_ONCE('inc/footer.php');
2263 // Display parsing time and number of SQL queries in footer
2264 function DISPLAY_PARSING_TIME_FOOTER() {
2265 // Is the timer started?
2266 if (!isset($GLOBALS['startTime'])) {
2272 $endTime = microtime(true);
2274 // "Explode" both times
2275 $start = explode(" ", $GLOBALS['startTime']);
2276 $end = explode(" ", $endTime);
2277 $runTime = $end[0] - $start[0];
2278 if ($runTime < 0) $runTime = 0;
2279 $runTime = TRANSLATE_COMMA($runTime);
2283 'runtime' => $runTime,
2284 'numSQLs' => (getConfig('sql_count') + 1),
2285 'numTemplates' => (getConfig('num_templates') + 1)
2288 // Load the template
2289 LOAD_TEMPLATE("show_timings", false, $content);
2292 // Check wether a boolean constant is set
2293 // Taken from user comments in PHP documentation for function constant()
2294 function isBooleanConstantAndTrue ($constName) { // : Boolean
2295 // Failed by default
2299 if (isset($GLOBALS['cache_array']['const'][$constName])) {
2301 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$constName."-CACHE!<br />\n";
2302 $res = ($GLOBALS['cache_array']['const'][$constName] === true);
2305 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$constName."-RESOLVE!<br />\n";
2306 if (defined($constName)) {
2308 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$constName."-FOUND!<br />\n";
2309 $res = (constant($constName) === true);
2313 $GLOBALS['cache_array']['const'][$constName] = $res;
2315 //* DEBUG: */ var_dump($res);
2321 // Checks if a given apache module is loaded
2322 function IF_APACHE_MODULE_LOADED ($apacheModule) {
2323 // Check it and return result
2324 return (((function_exists('apache_get_modules')) && (in_array($apacheModule, apache_get_modules()))) || (!function_exists('apache_get_modules')));
2327 // "Getter" for language strings
2328 // @TODO Rewrite all language constants to this function.
2329 function getMessage ($messageId) {
2330 // Default is not found!
2331 $return = "!".$messageId."!";
2333 // Is the language string found?
2334 if (isset($GLOBALS['msg'][strtolower($messageId)])) {
2335 // Language array element found in small_letters
2336 $return = $GLOBALS['msg'][$messageId];
2337 } elseif (isset($GLOBALS['msg'][strtoupper($messageId)])) {
2338 // @DEPRECATED Language array element found in BIG_LETTERS
2339 $return = $GLOBALS['msg'][$messageId];
2340 } elseif (defined($messageId)) {
2341 // @DEPRECATED Deprecated constant found
2342 $return = constant($messageId);
2344 // Missing language constant
2345 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Missing message string %s detected.", $messageId));
2348 // Return the string
2352 // Get current theme name
2353 function GET_CURR_THEME() {
2354 // The default theme is 'default'... ;-)
2357 // Load default theme if not empty from configuration
2358 if (getConfig('default_theme') != "") $ret = getConfig('default_theme');
2360 if (!isSessionVariableSet('mxchange_theme')) {
2361 // Set default theme
2362 set_session('mxchange_theme', $ret);
2363 } elseif ((isSessionVariableSet('mxchange_theme')) && (GET_EXT_VERSION('sql_patches') >= '0.1.4')) {
2364 //die("<pre>".print_r($GLOBALS['cache_array']['themes'], true)."</pre>");
2365 // Get theme from cookie
2366 $ret = get_session('mxchange_theme');
2369 if (THEME_GET_ID($ret) == 0) {
2370 // Fix it to default
2373 } elseif ((!isInstalled()) && ((isInstalling()) || ($GLOBALS['output_mode'] == true)) && ((REQUEST_ISSET_GET('theme')) || (REQUEST_ISSET_POST('theme')))) {
2374 // Prepare FQFN for checking
2375 $theme = sprintf("%stheme/%s/theme.php", constant('PATH'), REQUEST_GET('theme'));
2377 // Installation mode active
2378 if ((REQUEST_ISSET_GET('theme')) && (FILE_READABLE($theme))) {
2379 // Set cookie from URL data
2380 set_session('mxchange_theme', REQUEST_GET('theme'));
2381 } elseif (FILE_READABLE(sprintf("%stheme/%s/theme.php", constant('PATH'), SQL_ESCAPE(REQUEST_POST('theme'))))) {
2382 // Set cookie from posted data
2383 set_session('mxchange_theme', SQL_ESCAPE(REQUEST_POST('theme')));
2387 $ret = get_session('mxchange_theme');
2389 // Invalid design, reset cookie
2390 set_session('mxchange_theme', $ret);
2393 // Add (maybe) found theme.php file to inclusion list
2394 $INC = sprintf("theme/%s/theme.php", SQL_ESCAPE($ret));
2396 // Try to load the requested include file
2397 if (INCLUDE_READABLE($INC)) ADD_INC_TO_POOL($INC);
2399 // Return theme value
2403 // Get id from theme
2404 function THEME_GET_ID ($name) {
2405 // Is the extension 'theme' installed?
2406 if (!EXT_IS_ACTIVE('theme')) {
2414 // Is the cache entry there?
2415 if (isset($GLOBALS['cache_array']['themes']['id'][$name])) {
2416 // Get the version from cache
2417 $id = $GLOBALS['cache_array']['themes']['id'][$name];
2420 incrementConfigEntry('cache_hits');
2421 } elseif (GET_EXT_VERSION('cache') != '0.1.8') {
2422 // Check if current theme is already imported or not
2423 $result = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_themes` WHERE theme_path='%s' LIMIT 1",
2424 array($name), __FUNCTION__, __LINE__);
2427 if (SQL_NUMROWS($result) == 1) {
2429 list($id) = SQL_FETCHROW($result);
2433 SQL_FREERESULT($result);
2440 // Read a given file
2441 function READ_FILE ($FQFN, $sqlPrepare = false) {
2443 if (function_exists('file_get_contents')) {
2445 $content = file_get_contents($FQFN);
2447 // Fall-back to implode-file chain
2448 $content = implode("", file($FQFN));
2451 // Prepare SQL queries?
2452 if ($sqlPrepare === true) {
2453 // Remove some unwanted chars
2454 $content = str_replace("\r", '', $content);
2455 $content = str_replace("\n\n", "\n", $content);
2458 // Return the content
2462 // Writes content to a file
2463 function WRITE_FILE ($FQFN, $content) {
2464 // Is the file writeable?
2465 if ((FILE_READABLE($FQFN)) && (!is_writeable($FQFN)) && (!chmod($FQFN, 0644))) {
2467 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("File %s not writeable.", basename($FQFN)));
2473 // By default all is failed...
2476 // Is the function there?
2477 if (function_exists('file_put_contents')) {
2478 // Write it directly
2479 $return = file_put_contents($FQFN, $content);
2481 // Write it with fopen
2482 $fp = fopen($FQFN, 'w') or app_die(__FUNCTION__, __LINE__, "Cannot write file ".basename($FQFN)."!");
2483 fwrite($fp, $content);
2487 $return = chmod($FQFN, 0644);
2494 // Generates an error code from given account status
2495 function GEN_ERROR_CODE_FROM_ACCOUNT_STATUS ($status) {
2496 // Default error code if unknown account status
2497 $errorCode = getCode('UNKNOWN_STATUS');
2499 // Generate constant name
2500 $constantName = sprintf("ID_%s", $status);
2502 // Is the constant there?
2503 if (isCodeSet($constantName)) {
2505 $errorCode = getCode($constantName);
2508 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown error status %s detected.", $status));
2511 // Return error code
2515 // Clears the output buffer. This function does *NOT* backup sent content.
2516 function clearOutputBuffer () {
2517 // Trigger an error on failure
2518 if (!ob_end_clean()) {
2520 debug_report_bug(__FUNCTION__.": Failed to clean output buffer.");
2524 // Function to search for the last modifified file
2525 function searchDirsRecursive ($dir, &$last_changed) {
2527 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):dir=".$dir."<br />\n";
2528 // Does it match what we are looking for? (We skip a lot files already!)
2529 // RegexPattern to exclude ., .., .revision, .svn, debug.log or .cache in the filenames
2530 $excludePattern = '@(\.|\.\.|\.revision|\.svn|debug\.log|\.cache|config\.php)$@';
2531 $ds = GET_DIR_AS_ARRAY($dir, '', true, false, $excludePattern);
2532 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ds[]=".count($ds)."<br />\n";
2534 // Walk through all entries
2535 foreach ($ds as $d) {
2536 // Generate proper FQFN
2537 $FQFN = str_replace("//", "/", constant('PATH') . $dir. "/". $d);
2539 // Is it a file and readable?
2540 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):FQFN={$FQFN}<br />\n";
2541 if (isDirectory($FQFN)) {
2542 // $FQFN is a directory so also crawl into this directory
2544 if (!empty($dir)) $newDir = $dir . "/". $d;
2545 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):DESCENT: ".$newDir."<br />\n";
2546 searchDirsRecursive($newDir, $last_changed);
2547 } elseif (FILE_READABLE($FQFN)) {
2548 // $FQFN is a filename and no directory
2549 $time = filemtime($FQFN);
2550 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):File: ".$d." found. (".($last_changed['time'] - $time).")<br />\n";
2551 if ($last_changed['time'] < $time) {
2552 // This file is newer as the file before
2553 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>) - NEWER!<br />\n";
2554 $last_changed['path_name'] = $FQFN;
2555 $last_changed['time'] = $time;
2561 // "Getter" for revision/version data
2562 function getActualVersion ($type = 'Revision') {
2563 // By default nothing is new... ;-)
2566 if (EXT_IS_ACTIVE('cache')) {
2567 // Check if REQUEST_GET('check_revision_data') is setted (switch for manually rewrite the .revision-File)
2568 if (REQUEST_ISSET_GET('check_revision_data') && REQUEST_GET('check_revision_data') == 'yes') $new = true;
2569 if (!isset($GLOBALS['cache_array']['revision'][$type])
2570 || count($GLOBALS['cache_array']['revision']) < 3
2571 || !$GLOBALS['cache_instance']->loadCacheFile('revision')) $new = true;
2573 // Is the cache file outdated/invalid?
2575 $GLOBALS['cache_instance']->destroyCacheFile(); // @TODO isn't it better to do $GLOBALS['cache_instance']->destroyCacheFile('revision')?
2577 // @TODO shouldn't do the unset and the reloading $GLOBALS['cache_instance']->destroyCacheFile() Or a new methode like forceCacheReload('revision')?
2578 unset($GLOBALS['cache_array']['revision']);
2580 // Reload load_cach-revison.php
2581 LOAD_INC('inc/loader/load_cache-revision.php');
2584 // Return found value
2585 return $GLOBALS['cache_array']['revision'][$type][0];
2588 // Old Version without ext-cache active (deprecated ?)
2590 // FQFN of revision file
2591 $FQFN = sprintf("%sinc/cache/.revision", constant('PATH'));
2593 // Check if REQUEST_GET('check_revision_data') is setted (switch for manually rewrite the .revision-File)
2594 if ((REQUEST_ISSET_GET('check_revision_data')) && (REQUEST_GET('check_revision_data') == 'yes')) {
2598 // Check for revision file
2599 if (!FILE_READABLE($FQFN)) {
2600 // Not found, so we need to create it
2603 // Revision file found
2604 $ins_vers = explode("\n", READ_FILE($FQFN));
2606 // Get array for mapping information
2607 $mapper = array_flip(getSearchFor());
2608 //* DEBUG: */ print("<pre>".print_r($mapper, true).print_r($ins_vers, true)."</pre>");
2610 // Is the content valid?
2611 if ((!is_array($ins_vers)) || (count($ins_vers) <= 0) || (!isset($ins_vers[$mapper[$type]])) || (trim($ins_vers[$mapper[$type]]) == "") || ($ins_vers[0]) == "new") {
2612 // File needs update!
2615 // Return found value
2616 return trim($ins_vers[$mapper[$type]]);
2621 // Has it been updated?
2622 if ($new === true) {
2623 WRITE_FILE($FQFN, implode("\n", getAkt_vers()));
2628 // Repares an array we are looking for
2629 // The returned Array is needed twice (in getAkt_vers() and in getActualVersion() in the old .revision-fallback) so I puted it in an extra function to not polute the global namespace
2630 function getSearchFor () {
2631 // Add Revision, Date, Tag and Author
2632 $searchFor = array('Revision', 'Date', 'Tag', 'Author');
2634 // Return the created array
2638 function getAkt_vers () {
2640 $next_dir = ''; // Directory to start with search
2641 $last_changed = array(
2645 $akt_vers = array(); // Init return array
2646 $res = 0; // Init value for counting the founded keywords
2648 // Searches all Files and there date of the last modifikation and puts the newest File in $last_changed.
2649 searchDirsRecursive($next_dir, $last_changed); // @TODO small change to API to $last_changed = searchDirsRecursive($next_dir, $time);
2652 $last_file = READ_FILE($last_changed['path_name']);
2654 // Get all the keywords to search for
2655 $searchFor = getSearchFor();
2657 // This foreach loops the $searchFor-Tags (array('Revision', 'Date', 'Tag', 'Author') --> could easaly extended in the future)
2658 foreach ($searchFor as $search) {
2659 // Searches for "$search-tag:VALUE$" or "$search-tag::VALUE$"(the stylish keywordversion ;-)) in the lates modified file
2660 $res += preg_match('@\$'.$search.'(:|::) (.*) \$@U', $last_file, $t);
2661 // This trimms the search-result and puts it in the $akt_vers-return array
2662 if (isset($t[2])) $akt_vers[$search] = trim($t[2]);
2665 // Save the last-changed filename for debugging
2666 $akt_vers['File'] = $last_changed['path_name'];
2668 // at least 3 keyword-Tags are needed for propper values
2669 if ($res && $res >= 3
2670 && isset($akt_vers['Revision']) && $akt_vers['Revision'] != ''
2671 && isset($akt_vers['Date']) && $akt_vers['Date'] != ''
2672 && isset($akt_vers['Tag']) && $akt_vers['Tag'] != '') {
2673 // Prepare content witch need special treadment
2675 // Prepare timestamp for date
2676 preg_match('@(....)-(..)-(..) (..):(..):(..)@', $akt_vers['Date'], $match_d);
2677 $akt_vers['Date'] = mktime($match_d[4], $match_d[5], $match_d[6], $match_d[2], $match_d[3], $match_d[1]);
2679 // Add author to the Tag if the author is set and is not quix0r (lead coder)
2680 if ((isset($akt_vers['Author'])) && ($akt_vers['Author'] != "quix0r")) {
2681 $akt_vers['Tag'] .= '-'.strtoupper($akt_vers['Author']);
2685 // No valid Data from the last modificated file so read the Revision from the Server. Fallback-solution!! Should not be removed I think.
2686 $version = GET_URL("check-updates3.php");
2689 // Only sets not setted or not proper values to the Online-Server-Fallback-Solution
2690 if (!isset($akt_vers['Revision']) || $akt_vers['Revision'] == '') $akt_vers['Revision'] = trim($version[10]);
2691 if (!isset($akt_vers['Date']) || $akt_vers['Date'] == '') $akt_vers['Date'] = trim($version[9]);
2692 if (!isset($akt_vers['Tag']) || $akt_vers['Tag'] == '') $akt_vers['Tag'] = trim($version[8]);
2693 if (!isset($akt_vers['Author']) || $akt_vers['Author'] == '') $akt_vers['Author'] = "quix0r";
2696 // Return prepared array
2701 // Loads an include file and logs any missing files for debug purposes
2702 function LOAD_INC ($INC) {
2703 // Add the path. This is why we need a trailing slash in config.php
2704 $FQFN = constant('PATH') . $INC;
2706 // Is the include file there?
2707 if (!INCLUDE_READABLE($INC)) {
2708 // Not there so log it
2709 debug_report_bug(sprintf("Include file %s not found.", $INC));
2717 // Loads an include file once
2718 function LOAD_INC_ONCE ($INC) {
2719 // Is it not loaded?
2720 if (!isset($GLOBALS['load_once'][$INC])) {
2721 // Then try to load it
2724 // And mark it as loaded
2725 $GLOBALS['load_once'][$INC] = "loaded";
2729 // Back-ported from the new ship-simu engine. :-)
2730 function debug_get_printable_backtrace () {
2732 $backtrace = "<ol>\n";
2734 // Get and prepare backtrace for output
2735 $backtraceArray = debug_backtrace();
2736 foreach ($backtraceArray as $key => $trace) {
2737 if (!isset($trace['file'])) $trace['file'] = __FUNCTION__;
2738 if (!isset($trace['line'])) $trace['line'] = __LINE__;
2739 if (!isset($trace['args'])) $trace['args'] = array();
2740 $backtrace .= "<li class=\"debug_list\"><span class=\"backtrace_file\">".basename($trace['file'])."</span>:".$trace['line'].", <span class=\"backtrace_function\">".$trace['function']."(".count($trace['args']).")</span></li>\n";
2744 $backtrace .= "</ol>\n";
2746 // Return the backtrace
2750 // Output a debug backtrace to the user
2751 function debug_report_bug ($message = "") {
2754 // Is the optional message set?
2755 if (!empty($message)) {
2757 $debug = sprintf("Note: %s<br />\n",
2761 // @TODO Add a little more infos here
2762 DEBUG_LOG(__FUNCTION__, __LINE__, $message);
2766 $debug .= "Please report this bug at <a href=\"http://bugs.mxchange.org\" rel=\"external\" target=\"_blank\">bugs.mxchange.org</a>:<pre>";
2767 $debug .= debug_get_printable_backtrace();
2768 $debug .= "</pre>Request-URI: ".$_SERVER['REQUEST_URI']."<br />\n";
2769 $debug .= "Thank you for finding bugs.";
2772 // @TODO This cannot be rewritten to app_die(), try to find a solution for this.
2776 // Generates a ***weak*** seed (taken from de.php.net/mt_srand)
2777 function generateSeed () {
2778 list($usec, $sec) = explode(" ", microtime());
2779 return ((float)$sec + (float)$usec);
2782 // Converts a message code to a human-readable message
2783 function convertCodeToMessage ($code) {
2786 case getCode('LOGOUT_DONE') : $msg = getMessage('LOGOUT_DONE'); break;
2787 case getCode('LOGOUT_FAILED') : $msg = "<span class=\"guest_failed\">{--LOGOUT_FAILED--}</span>"; break;
2788 case getCode('DATA_INVALID') : $msg = getMessage('MAIL_DATA_INVALID'); break;
2789 case getCode('POSSIBLE_INVALID') : $msg = getMessage('MAIL_POSSIBLE_INVALID'); break;
2790 case getCode('ACCOUNT_LOCKED') : $msg = getMessage('MEMBER_ACCOUNT_LOCKED_UNC'); break;
2791 case getCode('USER_404') : $msg = getMessage('USER_NOT_FOUND'); break;
2792 case getCode('STATS_404') : $msg = getMessage('MAIL_STATS_404'); break;
2793 case getCode('ALREADY_CONFIRMED'): $msg = getMessage('MAIL_ALREADY_CONFIRMED'); break;
2795 case getCode('ERROR_MAILID'):
2796 if (EXT_IS_ACTIVE($ext, true)) {
2797 $msg = getMessage('ERROR_CONFIRMING_MAIL');
2799 $msg = sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), 'mailid');
2803 case getCode('EXTENSION_PROBLEM'):
2804 if (REQUEST_ISSET_GET(('ext'))) {
2805 $msg = sprintf(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), REQUEST_GET(('ext')));
2807 $msg = getMessage('EXTENSION_PROBLEM_UNSET_EXT');
2811 case getCode('COOKIES_DISABLED') : $msg = getMessage('LOGIN_NO_COOKIES'); break;
2812 case getCode('BEG_SAME_AS_OWN') : $msg = getMessage('BEG_SAME_UID_AS_OWN'); break;
2813 case getCode('LOGIN_FAILED') : $msg = getMessage('LOGIN_FAILED_GENERAL'); break;
2814 case getCode('MODULE_MEM_ONLY') : $msg = sprintf(getMessage('MODULE_MEM_ONLY'), REQUEST_GET('mod')); break;
2817 // Missing/invalid code
2818 $msg = sprintf(getMessage('UNKNOWN_MAILID_CODE'), $code);
2821 DEBUG_LOG(__FUNCTION__, __LINE__, $msg);
2825 // Return the message
2829 // Generate a "link" for the given admin id (aid)
2830 function GENERATE_AID_LINK ($aid) {
2831 // No assigned admin is default
2832 $admin = "<span class=\"admin_note\">{--ADMIN_NO_ADMIN_ASSIGNED--}</span>";
2834 // Zero? = Not assigned
2835 if (bigintval($aid) > 0) {
2836 // Load admin's login
2837 $login = GET_ADMIN_LOGIN($aid);
2839 // Is the login valid?
2840 if ($login != "***") {
2841 // Is the extension there?
2842 if (EXT_IS_ACTIVE('admins')) {
2844 $admin = "<a href=\"".ADMINS_CREATE_EMAIL_LINK(GET_ADMIN_EMAIL($aid))."\">".$login."</a>";
2846 // Extension not found
2847 $admin = sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), 'admins');
2851 $admin = "<div class=\"admin_note\">".sprintf(getMessage('ADMIN_ID_404'), $aid)."</div>";
2859 // Checks wether an include file (non-FQFN better) is readable
2860 function INCLUDE_READABLE ($INC) {
2862 $FQFN = constant('PATH') . $INC;
2865 return FILE_READABLE($FQFN);
2869 // @TODO Implement $compress
2870 function encodeString ($str, $compress=true) {
2871 $str = urlencode(base64_encode(compileUriCode($str)));
2875 // Decode strings encoded with encodeString()
2876 // @TODO Implement $decompress
2877 function decodeString ($str, $decompress=true) {
2878 $str = compileUriCode(base64_decode(urldecode(compileUriCode($str))));
2882 // Compile characters which are allowed in URLs
2883 function compileUriCode ($code, $simple=true) {
2884 // Compile constants
2885 if (!$simple) $code = str_replace("{--", '".', str_replace("--}", '."', $code));
2887 // Compile QUOT and other non-HTML codes
2888 $code = str_replace("{DOT}", ".",
2889 str_replace("{SLASH}", "/",
2890 str_replace("{QUOT}", "'",
2891 str_replace("{DOLLAR}", "$",
2892 str_replace("{OPEN_ANCHOR}", "(",
2893 str_replace("{CLOSE_ANCHOR}", ")",
2894 str_replace("{OPEN_SQR}", "[",
2895 str_replace("{CLOSE_SQR}", "]",
2896 str_replace("{PER}", "%",
2900 // Return compiled code
2904 // Function taken from user comments on www.php.net / function eregi()
2905 function isUrlValid ($url) {
2907 $url = strip_tags(str_replace("\\", '', compileUriCode(urldecode($url))));
2909 // Allows http and https
2910 $http = "(http|https)+(:\/\/)";
2912 $domain1 = "([[:alnum:]]([-[:alnum:]])*\.)?([[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})?";
2913 // Test double-domains (e.g. .de.vu)
2914 $domain2 = "([-[:alnum:]])?(\.[[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})(\.[[:alpha:]]{2,5})?";
2916 $ip = "([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})";
2918 $dir = "((/)+([-_\.[:alnum:]])+)*";
2920 $page = "/([-_[:alnum:]][-\._[:alnum:]]*\.[[:alnum:]]{2,5})?";
2921 // ... and the string after and including question character
2922 $getstring1 = "([\?/]([[:alnum:]][-\._%[:alnum:]]*(=)?([-\@\._:%[:alnum:]])+)(&([[:alnum:]]([-_%[:alnum:]])*(=)?([-\@\[\._:%[:alnum:]])+(\])*))*)?";
2923 // Pattern for URLs like http://url/dir/doc.html?var=value
2924 $pattern['d1dpg1'] = $http.$domain1.$dir.$page.$getstring1;
2925 $pattern['d2dpg1'] = $http.$domain2.$dir.$page.$getstring1;
2926 $pattern['ipdpg1'] = $http.$ip.$dir.$page.$getstring1;
2927 // Pattern for URLs like http://url/dir/?var=value
2928 $pattern['d1dg1'] = $http.$domain1.$dir."/".$getstring1;
2929 $pattern['d2dg1'] = $http.$domain2.$dir."/".$getstring1;
2930 $pattern['ipdg1'] = $http.$ip.$dir."/".$getstring1;
2931 // Pattern for URLs like http://url/dir/page.ext
2932 $pattern['d1dp'] = $http.$domain1.$dir.$page;
2933 $pattern['d1dp'] = $http.$domain2.$dir.$page;
2934 $pattern['ipdp'] = $http.$ip.$dir.$page;
2935 // Pattern for URLs like http://url/dir
2936 $pattern['d1d'] = $http.$domain1.$dir;
2937 $pattern['d2d'] = $http.$domain2.$dir;
2938 $pattern['ipd'] = $http.$ip.$dir;
2939 // Pattern for URLs like http://url/?var=value
2940 $pattern['d1g1'] = $http.$domain1."/".$getstring1;
2941 $pattern['d2g1'] = $http.$domain2."/".$getstring1;
2942 $pattern['ipg1'] = $http.$ip."/".$getstring1;
2943 // Pattern for URLs like http://url?var=value
2944 $pattern['d1g12'] = $http.$domain1.$getstring1;
2945 $pattern['d2g12'] = $http.$domain2.$getstring1;
2946 $pattern['ipg12'] = $http.$ip.$getstring1;
2947 // Test all patterns
2949 foreach ($pattern as $key=>$pat) {
2951 if (defined('DEBUG_REGEX')) {
2952 $pat = str_replace("[:alnum:]", "0-9a-zA-Z", $pat);
2953 $pat = str_replace("[:alpha:]", "a-zA-Z", $pat);
2954 $pat = str_replace("[:digit:]", "0-9", $pat);
2955 $pat = str_replace(".", "\.", $pat);
2956 $pat = str_replace("@", "\@", $pat);
2957 echo $key."= ".$pat."<br />";
2960 // Check if expression matches
2961 $reg = ($reg || preg_match(("^".$pat."^"), $url));
2964 if ($reg === true) break;
2967 // Return true/false
2971 // Smartly adds slashes
2972 function smartAddSlashes ($unquoted) {
2973 $unquoted = str_replace("\\", '', $unquoted);
2974 return addslashes($unquoted);
2977 // Decode entities in a nicer way
2978 function decodeEntities ($str) {
2979 // @TODO We may want to switch over to UTF-8 here!
2980 $decodedString = html_entity_decode($str, ENT_NOQUOTES, "ISO-8859-15");
2982 // Return decoded string
2983 return $decodedString;
2986 // Wtites data to a config.php-style file
2987 // @TODO Rewrite this function to use READ_FILE() and WRITE_FILE()
2988 function changeDataInFile ($FQFN, $comment, $prefix, $suffix, $DATA, $seek=0) {
2989 // Initialize some variables
2995 // Is the file there and read-/write-able?
2996 if ((FILE_READABLE($FQFN)) && (is_writeable($FQFN))) {
2997 $search = "CFG: ".$comment;
2998 $tmp = $FQFN.".tmp";
3000 // Open the source file
3001 $fp = fopen($FQFN, 'r') or OUTPUT_HTML("<strong>READ:</strong> ".$FQFN."<br />");
3003 // Is the resource valid?
3004 if (is_resource($fp)) {
3005 // Open temporary file
3006 $fp_tmp = fopen($tmp, 'w') or OUTPUT_HTML("<strong>WRITE:</strong> ".$tmp."<br />");
3008 // Is the resource again valid?
3009 if (is_resource($fp_tmp)) {
3010 while (!feof($fp)) {
3011 // Read from source file
3012 $line = fgets ($fp, 1024);
3014 if (strpos($line, $search) > -1) { $next = 0; $found = true; }
3017 if ($next === $seek) {
3019 $line = $prefix . $DATA . $suffix."\n";
3025 // Write to temp file
3026 fputs($fp_tmp, $line);
3032 // Finished writing tmp file
3036 // Close source file
3039 if (($done) && ($found)) {
3040 // Copy back tmp file and delete tmp :-)
3042 return unlink($tmp);
3043 } elseif (!$found) {
3044 OUTPUT_HTML("<strong>CHANGE:</strong> 404!");
3046 OUTPUT_HTML("<strong>TMP:</strong> UNDONE!");
3050 // File not found, not readable or writeable
3051 OUTPUT_HTML("<strong>404:</strong> ".$FQFN."<br />");
3054 // An error was detected!
3057 // Send notification to admin
3058 function SEND_ADMIN_NOTIFICATION ($subject, $templateName, $content=array(), $uid="0") {
3059 if (GET_EXT_VERSION('admins') >= '0.4.1') {
3061 SEND_ADMIN_EMAILS_PRO($subject, $templateName, $content, $uid);
3063 // Send out out-dated way
3064 $msg = LOAD_EMAIL_TEMPLATE($templateName, $content, $uid);
3065 SEND_ADMIN_EMAILS($subject, $msg);
3069 // Merges an array together but only if both are arrays
3070 function merge_array ($array1, $array2) {
3071 // Are both an array?
3072 if ((is_array($array1)) && (is_array($array2))) {
3073 // Merge all together
3074 return array_merge($array1, $array2);
3075 } elseif (is_array($array1)) {
3076 // Return left array
3077 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("array2 is not an array. array != %s", gettype($array2)));
3079 } elseif (is_array($array2)) {
3080 // Return right array
3081 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("array1 is not an array. array != %s", gettype($array1)));
3085 // Both are not arrays
3086 debug_report_bug(__FUNCTION__.": No arrays provided!");
3089 // Debug message logger
3090 function DEBUG_LOG ($funcFile, $line, $message, $force=true) {
3091 // Is debug mode enabled?
3092 if ((isDebugModeEnabled()) || ($force === true)) {
3094 $message = str_replace("\r", '', str_replace("\n", '', $message));
3096 // Log this message away
3097 $fp = fopen(constant('PATH')."inc/cache/debug.log", 'a') or app_die(__FUNCTION__, __LINE__, "Cannot write logfile debug.log!");
3098 fwrite($fp, date("d.m.Y|H:i:s", time())."|".$GLOBALS['module']."|".basename($funcFile)."|".$line."|".strip_tags($message)."\n");
3103 // Load more reset scripts
3104 function runResetIncludes () {
3105 // Is the reset set or old sql_patches?
3106 if ((!isResetModeEnabled()) || (EXT_VERSION_IS_OLDER('sql_patches', '0.4.5'))) {
3108 DEBUG_LOG(__FUNCTION__, __LINE__, "Cannot run reset! Please report this bug. Thanks");
3111 // Get more daily reset scripts
3112 SET_INC_POOL(GET_DIR_AS_ARRAY("inc/reset/", "reset_"));
3115 if (!defined('DEBUG_RESET')) UPDATE_CONFIG("last_update", time());
3117 // Is the config entry set?
3118 if (GET_EXT_VERSION('sql_patches') >= '0.4.2') {
3119 // Create current week mark
3120 $currWeek = date("W", time());
3123 if (getConfig('last_week') != $currWeek) {
3124 // Include weekly reset scripts
3125 MERGE_INC_POOL(GET_DIR_AS_ARRAY("inc/weekly/", "weekly_"));
3128 if (!defined('DEBUG_WEEKLY')) UPDATE_CONFIG("last_week", $currWeek);
3131 // Create current month mark
3132 $currMonth = date("m", time());
3135 if (getConfig('last_month') != $currMonth) {
3136 // Include monthly reset scripts
3137 MERGE_INC_POOL(GET_DIR_AS_ARRAY("inc/monthly/", "monthly_"));
3140 if (!defined('DEBUG_MONTHLY')) UPDATE_CONFIG("last_month", $currMonth);
3145 runFilterChain('load_includes');
3148 // Handle extra values
3149 function HANDLE_EXTRA_VALUES ($filterFunction, $value, $extraValue) {
3150 // Default is the value itself
3153 // Do we have a special filter function?
3154 if (!empty($filterFunction)) {
3155 // Does the filter function exist?
3156 if (function_exists($filterFunction)) {
3157 // Do we have extra parameters here?
3158 if (!empty($extraValue)) {
3159 // Put both parameters in one new array by default
3160 $args = array($value, $extraValue);
3162 // If we have an array simply use it and pre-extend it with our value
3163 if (is_array($extraValue)) {
3164 // Make the new args array
3165 $args = merge_array(array($value), $extraValue);
3168 // Call the multi-parameter call-back
3169 $ret = call_user_func_array($filterFunction, $args);
3171 // One parameter call
3172 $ret = call_user_func($filterFunction, $value);
3181 // Check if given FQFN is a readable file
3182 function FILE_READABLE ($FQFN) {
3184 return ((file_exists($FQFN)) && (is_file($FQFN)) && (is_readable($FQFN)));
3187 // Converts timestamp selections into a timestamp
3188 function CONVERT_SELECTIONS_TO_TIMESTAMP (&$POST, &$DATA, &$id, &$skip) {
3189 // Init test variable
3192 // Get last three chars
3193 $test = substr($id, -3);
3195 // Improved way of checking! :-)
3196 if (in_array($test, array("_ye", "_mo", "_we", "_da", "_ho", "_mi", "_se"))) {
3197 // Found a multi-selection for timings?
3198 $test = substr($id, 0, -3);
3199 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)) {
3200 // Generate timestamp
3201 $POST[$test] = CREATE_TIMESTAMP_FROM_SELECTIONS($test, $POST);
3202 $DATA[] = sprintf("%s='%s'", $test, $POST[$test]);
3204 // Remove data from array
3205 foreach (array("ye", "mo", "we", "da", "ho", "mi", "se") as $rem) {
3206 unset($POST[$test."_".$rem]);
3210 unset($id); $skip = true; $test2 = $test;
3213 // Process this entry
3219 // Reverts the german decimal comma into Computer decimal dot
3220 function REVERT_COMMA ($str) {
3221 // Default float is not a float... ;-)
3224 // Which language is selected?
3225 switch (GET_LANGUAGE()) {
3226 case "de": // German language
3227 // Remove german thousand dots first
3228 $str = str_replace(".", '', $str);
3230 // Replace german commata with decimal dot and cast it
3231 $float = (float)str_replace(",", ".", $str);
3234 default: // US and so on
3235 // Remove thousand dots first and cast
3236 $float = (float)str_replace(",", '', $str);
3244 // Handle menu-depending failed logins and return the rendered content
3245 function HANDLE_LOGIN_FAILTURES ($accessLevel) {
3246 // Default output is empty ;-)
3249 // Is the session data set?
3250 if ((isSessionVariableSet('mxchange_'.$accessLevel.'_failures')) && (isSessionVariableSet('mxchange_'.$accessLevel.'_last_fail'))) {
3251 // Ignore zero values
3252 if (get_session('mxchange_'.$accessLevel.'_failures') > 0) {
3253 // Non-guest has login failures found, get both data and prepare it for template
3254 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):accessLevel={$accessLevel}<br />\n";
3256 'login_failures' => get_session('mxchange_'.$accessLevel.'_failures'),
3257 'last_failure' => MAKE_DATETIME(get_session('mxchange_'.$accessLevel.'_last_fail'), "2")
3261 $OUT = LOAD_TEMPLATE("login_failures", true, $content);
3264 // Reset session data
3265 set_session('mxchange_'.$accessLevel.'_failures', '');
3266 set_session('mxchange_'.$accessLevel.'_last_fail', '');
3269 // Return rendered content
3274 function rebuildCacheFiles ($cache, $inc="") {
3275 // Shall I remove the cache file?
3276 if ((EXT_IS_ACTIVE('cache')) && (isCacheInstanceValid())) {
3278 if ($GLOBALS['cache_instance']->loadCacheFile($cache)) {
3280 $GLOBALS['cache_instance']->destroyCacheFile();
3283 // Include file given?
3286 $INC = sprintf("inc/loader/load_cache-%s.php", $inc);
3288 // Is the include there?
3289 if (INCLUDE_READABLE($INC)) {
3290 // And rebuild it from scratch
3291 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): inc={$inc} - LOADED!<br />\n";
3294 // Include not found!
3295 DEBUG_LOG(__FUNCTION__, __LINE__, "Include {$inc} not found. cache={$cache}");
3301 // Purge admin menu cache
3302 function CACHE_PURGE_ADMIN_MENU ($id=0, $action="", $what="", $str="") {
3303 // Is the cache extension enabled or no cache instance or admin menu cache disabled?
3304 if (!EXT_IS_ACTIVE('cache')) {
3305 // Cache extension not active
3307 } elseif (!isCacheInstanceValid()) {
3308 // No cache instance!
3309 DEBUG_LOG(__FUNCTION__, __LINE__, " No cache instance found.");
3311 } elseif ((!isConfigEntrySet('cache_admin_menu')) || (getConfig('cache_admin_menu') != 'Y')) {
3312 // Caching disabled (currently experiemental!)
3316 // Experiemental feature!
3317 debug_report_bug("<strong>Experimental feature:</strong> You have to delete the admin_*.cache files by yourself at this point.");
3320 // Translates the "pool type" into human-readable
3321 function TRANSLATE_POOL_TYPE ($type) {
3322 // Default?type is unknown
3323 $translated = sprintf(getMessage('POOL_TYPE_UNKNOWN'), $type);
3325 // Generate constant
3326 $constName = sprintf("POOL_TYPE_%s", $type);
3329 if (defined($constName)) {
3331 $translated = getMessage($constName);
3334 // Return "translation"
3338 // Determines the real remote address
3339 function determineRealRemoteAddress () {
3340 // Is a proxy in use?
3341 if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])){
3343 $address = $_SERVER['HTTP_X_FORWARDED_FOR'];
3344 } elseif (isset($_SERVER['HTTP_CLIENT_IP'])){
3345 // Yet, another proxy
3346 $address = $_SERVER['HTTP_CLIENT_IP'];
3348 // The regular address when no proxy was used
3349 $address = $_SERVER['REMOTE_ADDR'];
3352 // This strips out the real address from proxy output
3353 if (strstr($address, ",")){
3354 $addressArray = explode(",", $address);
3355 $address = $addressArray[0];
3358 // Return the result
3362 // "Getter" for remote IP number
3363 function GET_REMOTE_ADDR () {
3364 // Get remote ip from environment
3365 $remoteAddr = determineRealRemoteAddress();
3367 // Is removeip installed?
3368 if (EXT_IS_ACTIVE('removeip')) {
3369 // Then anonymize it
3370 $remoteAddr = GET_ANONYMOUS_REMOTE_ADDR($remoteAddr);
3377 // "Getter" for remote hostname
3378 function GET_REMOTE_HOST () {
3379 // Get remote ip from environment
3380 $remoteHost = getenv('REMOTE_HOST');
3382 // Is removeip installed?
3383 if (EXT_IS_ACTIVE('removeip')) {
3384 // Then anonymize it
3385 $remoteHost = GET_ANONYMOUS_REMOTE_HOST($remoteHost);
3392 // "Getter" for user agent
3393 function GET_USER_AGENT () {
3394 // Get remote ip from environment
3395 $userAgent = getenv('HTTP_USER_AGENT');
3397 // Is removeip installed?
3398 if (EXT_IS_ACTIVE('removeip')) {
3399 // Then anonymize it
3400 $userAgent = GET_ANONYMOUS_USER_AGENT($userAgent);
3407 // "Getter" for referer
3408 function GET_REFERER () {
3409 // Get remote ip from environment
3410 $referer = getenv('HTTP_REFERER');
3412 // Is removeip installed?
3413 if (EXT_IS_ACTIVE('removeip')) {
3414 // Then anonymize it
3415 $referer = GET_ANONYMOUS_REFERER($referer);
3422 // Adds a bonus mail to the queue
3423 // This is a high-level function!
3424 function ADD_NEW_BONUS_MAIL ($data, $mode="", $output=true) {
3425 // Use mode from data if not set and availble ;-)
3426 if ((empty($mode)) && (isset($data['mode']))) $mode = $data['mode'];
3428 // Generate receiver list
3429 $RECEIVER = GENERATE_RECEIVER_LIST($data['cat'], $data['receiver'], $mode);
3432 if (!empty($RECEIVER)) {
3433 // Add bonus mail to queue
3434 ADD_BONUS_MAIL_TO_QUEUE(
3446 // Mail inserted into bonus pool
3447 if ($output) LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BONUS_SEND'));
3448 } elseif ($output) {
3449 // More entered than can be reached!
3450 LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_MORE_SELECTED'));
3453 DEBUG_LOG(__FUNCTION__, __LINE__, " cat={$data['cat']},receiver={$data['receiver']},data=".base64_encode(serialize($data))." More selected, than available!");
3457 // Determines referal id and sets it
3458 function DETERMINE_REFID () {
3459 // Check if refid is set
3460 if ((!empty($_GET['user'])) && (basename($_SERVER['PHP_SELF']) == "click.php")) {
3461 // The variable user comes from the click-counter script click.php and we only accept this here
3462 $GLOBALS['refid'] = bigintval($_GET['user']);
3463 } elseif (!empty($_POST['refid'])) {
3464 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
3465 $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_POST['refid']));
3466 } elseif (!empty($_GET['refid'])) {
3467 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
3468 $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_GET['refid']));
3469 } elseif (!empty($_GET['ref'])) {
3470 // Set refid=ref (the referal link uses such variable)
3471 $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_GET['ref']));
3472 } elseif ((isSessionVariableSet('refid')) && (get_session('refid') != 0)) {
3473 // Set session refid als global
3474 $GLOBALS['refid'] = bigintval(get_session('refid'));
3475 } elseif ((GET_EXT_VERSION('sql_patches') != "") && (getConfig('def_refid') > 0)) {
3476 // Set default refid as refid in URL
3477 $GLOBALS['refid'] = getConfig(('def_refid'));
3478 } elseif ((GET_EXT_VERSION('user') >= '0.3.4') && (getConfig('select_user_zero_refid')) == 'Y') {
3479 // Select a random user which has confirmed enougth mails
3480 $GLOBALS['refid'] = SELECT_RANDOM_REFID();
3482 // No default ID when sql_patches is not installed or none set
3483 $GLOBALS['refid'] = 0;
3486 // Set cookie when default refid > 0
3487 if (!isSessionVariableSet('refid') || (!empty($GLOBALS['refid'])) || ((get_session('refid') == "0") && (getConfig('def_refid') > 0))) {
3489 set_session('refid', $GLOBALS['refid']);
3492 // Return determined refid
3493 return $GLOBALS['refid'];
3496 // Check wether we are installing
3497 function isInstalling () {
3498 $installing = ((isset($GLOBALS['mxchange_installing'])) || (REQUEST_ISSET_GET('installing')));
3499 //* DEBUG: */ var_dump($installing);
3503 // Check wether this script is installed
3504 function isInstalled () {
3505 return isBooleanConstantAndTrue('mxchange_installed');
3508 // Check wether an admin is registered
3509 function isAdminRegistered () {
3510 return isBooleanConstantAndTrue('admin_registered');
3513 // Enables the reset mode. Only call this function if you really want the
3515 function enableResetMode () {
3516 // Enable the reset mode
3517 $GLOBALS['reset_enabled'] = true;
3520 runFilterChain('reset_enabled');
3523 // Checks wether the reset mode is active
3524 function isResetModeEnabled () {
3525 // Now simply check it
3526 return ((isset($GLOBALS['reset_enabled'])) && ($GLOBALS['reset_enabled'] === true));
3529 // Checks wether the debug mode is enabled
3530 function isDebugModeEnabled () {
3532 return isBooleanConstantAndTrue('DEBUG_MODE');
3535 // Checks wether the cache instance is valid
3536 function isCacheInstanceValid () {
3537 return ((isset($GLOBALS['cache_instance'])) && (is_object($GLOBALS['cache_instance'])));
3540 // Our shutdown-function
3541 function shutdown () {
3542 // Call the filter chain 'shutdown'
3543 runFilterChain('shutdown', null, false);
3545 if (SQL_IS_LINK_UP()) {
3547 SQL_CLOSE(__FILE__, __LINE__);
3548 } elseif ((!isInstalling()) && (isInstalled())) {
3550 addFatalMessage(__FILE__, __LINE__, getMessage('NO_DB_LINK_SHUTDOWN'));
3553 // Stop executing here
3557 // Setter for userid
3558 function setUserId ($userid) {
3559 $GLOBALS['userid'] = bigintval($userid);
3562 // Getter for userid or returns zero
3563 function getUserId () {
3567 // Is the userid set?
3568 if (isUserIdSet()) {
3570 $userid = $GLOBALS['userid'];
3577 // Checks ether the userid is set
3578 function isUserIdSet () {
3579 return (isset($GLOBALS['userid']));
3582 // Checks wether the given FQFN is a directory and not .,.. or .svn
3583 function isDirectory ($FQFN) {
3584 // Generate baseName
3585 $baseName = basename($FQFN);
3588 $isDirectory = ((is_dir($FQFN)) && ($baseName != ".") && ($baseName != "..") && ($baseName != ".svn"));
3590 // Return the result
3591 return $isDirectory;
3594 // Handle message codes from URL
3595 function handleCodeMessage () {
3596 if (REQUEST_ISSET_GET(('msg'))) {
3597 // Default extension is "unknown"
3600 // Is extension given?
3601 if (REQUEST_ISSET_GET(('ext'))) $ext = REQUEST_GET(('ext'));
3603 // Convert the 'msg' parameter from URL to a human-readable message
3604 $msg = convertCodeToMessage(REQUEST_GET('msg'));
3606 // Load message template
3607 LOAD_TEMPLATE("message", false, $msg);
3611 //////////////////////////////////////////////////
3612 // AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS //
3613 //////////////////////////////////////////////////
3615 if (!function_exists('html_entity_decode')) {
3616 // Taken from documentation on www.php.net
3617 function html_entity_decode ($string) {
3618 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
3619 $trans_tbl = array_flip($trans_tbl);
3620 return strtr($string, $trans_tbl);