Login procedure rewritten to filters (internal TODO)
[mailer.git] / inc / functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/25/2003 *
4  * ===================                          Last change: 11/29/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : functions.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Many non-MySQL functions (also file access)      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Viele Nicht-MySQL-Funktionen (auch Dateizugriff) *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
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.                                  *
27  *                                                                      *
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.                         *
32  *                                                                      *
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,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Output HTML code directly or 'render' it. You addionally switch the new-line character off
45 function outputHtml ($htmlCode, $newLine = true) {
46         // Init output
47         if (!isset($GLOBALS['output'])) $GLOBALS['output'] = '';
48
49         // Transfer username
50         $username = getMessage('USERNAME_UNKNOWN');
51         if (isset($GLOBALS['username'])) $username = getUsername();
52
53         // Do we have HTML-Code here?
54         if (!empty($htmlCode)) {
55                 // Yes, so we handle it as you have configured
56                 switch (getConfig('OUTPUT_MODE')) {
57                         case 'render':
58                                 // That's why you don't need any \n at the end of your HTML code... :-)
59                                 if (getPhpCaching() == 'on') {
60                                         // Output into PHP's internal buffer
61                                         outputRawCode($htmlCode);
62
63                                         // That's why you don't need any \n at the end of your HTML code... :-)
64                                         if ($newLine === true) print("\n");
65                                 } else {
66                                         // Render mode for old or lame servers...
67                                         $GLOBALS['output'] .= $htmlCode;
68
69                                         // That's why you don't need any \n at the end of your HTML code... :-)
70                                         if ($newLine === true) $GLOBALS['output'] .= "\n";
71                                 }
72                                 break;
73
74                         case 'direct':
75                                 // If we are switching from render to direct output rendered code
76                                 if ((!empty($GLOBALS['output'])) && (getPhpCaching() != 'on')) { outputRawCode($GLOBALS['output']); $GLOBALS['output'] = ''; }
77
78                                 // The same as above... ^
79                                 outputRawCode($htmlCode);
80                                 if ($newLine === true) print("\n");
81                                 break;
82
83                         default:
84                                 // Huh, something goes wrong or maybe you have edited config.php ???
85                                 app_die(__FUNCTION__, __LINE__, '<strong>{--FATAL_ERROR--}:</strong> {--LANG_NO_RENDER_DIRECT--}');
86                                 break;
87                 } // END - switch
88         } elseif ((getPhpCaching() == 'on') && (isset($GLOBALS['footer_sent'])) && ($GLOBALS['footer_sent'] == 1)) {
89                 // Headers already sent?
90                 if (headers_sent()) {
91                         // Log this error
92                         logDebugMessage(__FUNCTION__, __LINE__, 'Headers already sent! We need debug backtrace here.');
93
94                         // Trigger an user error
95                         debug_report_bug('Headers are already sent!');
96                 } // END - if
97
98                 // Output cached HTML code
99                 $GLOBALS['output'] = ob_get_contents();
100
101                 // Clear output buffer for later output if output is found
102                 if (!empty($GLOBALS['output'])) {
103                         clearOutputBuffer();
104                 } // END - if
105
106                 // Extension 'rewrite' installed?
107                 if ((isExtensionActive('rewrite')) && (getOutputMode() != 1)) {
108                         $GLOBALS['output'] = rewriteLinksInCode($GLOBALS['output']);
109                 } // END - if
110
111                 // Compile and run finished rendered HTML code
112                 compileFinalOutput();
113
114                 // Send all HTTP headers
115                 sendHttpHeaders();
116
117                 // Output code here, DO NOT REMOVE! ;-)
118                 outputRawCode($GLOBALS['output']);
119         } elseif ((getConfig('OUTPUT_MODE') == 'render') && (!empty($GLOBALS['output']))) {
120                 // Rewrite links when rewrite extension is active
121                 if ((isExtensionActive('rewrite')) && (getOutputMode() != 1)) {
122                         $GLOBALS['output'] = rewriteLinksInCode($GLOBALS['output']);
123                 } // END - if
124
125                 // Compile and run finished rendered HTML code
126                 compileFinalOutput();
127
128                 // Send all HTTP headers
129                 sendHttpHeaders();
130
131                 // Output code here, DO NOT REMOVE! ;-)
132                 outputRawCode($GLOBALS['output']);
133         }
134 }
135
136 // Sends out all headers required for HTTP/1.1 reply
137 function sendHttpHeaders () {
138         // Used later
139         $now = gmdate('D, d M Y H:i:s') . ' GMT';
140
141         // Send HTTP header
142         sendHeader('HTTP/1.1 200');
143
144         // General headers for no caching
145         sendHeader('Expired: ' . $now); // RFC2616 - Section 14.21
146         sendHeader('Last-Modified: ' . $now);
147         sendHeader('Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
148         sendHeader('Pragma: no-cache'); // HTTP/1.0
149         sendHeader('Connection: Close');
150         sendHeader('Content-Type: ' . getContentType() . '; charset=UTF-8');
151         sendHeader('Content-Language: ' . getLanguage());
152 }
153
154 // Compiles the final output
155 function compileFinalOutput () {
156         // Init counter
157         $cnt = '0';
158
159         // Compile all out
160         while (((strpos($GLOBALS['output'], '{--') > 0) || (strpos($GLOBALS['output'], '{!') > 0) || (strpos($GLOBALS['output'], '{?') > 0)) && ($cnt < 3)) {
161                 // Init common variables
162                 $content = array();
163                 $newContent = '';
164
165                 // Compile it
166                 $eval = "\$newContent = \"".compileCode(escapeQuotes($GLOBALS['output']))."\";";
167                 eval($eval);
168
169                 // Was that eval okay?
170                 if (empty($newContent)) {
171                         // Something went wrong!
172                         debug_report_bug('Evaluation error:<pre>' . linenumberCode($eval) . '</pre>');
173                 } // END - if
174                 $GLOBALS['output'] = $newContent;
175
176                 // Count round
177                 $cnt++;
178         } // END - while
179
180         // Add final length
181         sendHeader('Content-Length: ' . strlen($GLOBALS['output']));
182 }
183
184 // Output the raw HTML code
185 function outputRawCode ($htmlCode) {
186         // Output stripped HTML code to avoid broken JavaScript code, etc.
187         print(str_replace('{BACK}', "\\", $htmlCode));
188
189         // Flush the output if only getPhpCaching() is not 'on'
190         if (getPhpCaching() != 'on') {
191                 // Flush it
192                 flush();
193         } // END - if
194 }
195
196 // Init fatal message array
197 function initFatalMessages () {
198         $GLOBALS['fatal_messages'] = array();
199 }
200
201 // Getter for whole fatal error messages
202 function getFatalArray () {
203         return $GLOBALS['fatal_messages'];
204 }
205
206 // Add a fatal error message to the queue array
207 function addFatalMessage ($F, $L, $message, $extra = '') {
208         if (is_array($extra)) {
209                 // Multiple extras for a message with masks
210                 $message = call_user_func_array('sprintf', $extra);
211         } elseif (!empty($extra)) {
212                 // $message is text with a mask plus extras to insert into the text
213                 $message = sprintf($message, $extra);
214         }
215
216         // Add message to $GLOBALS['fatal_messages']
217         $GLOBALS['fatal_messages'][] = $message;
218
219         // Log fatal messages away
220         debug_report_bug($message);
221         logDebugMessage($F, $L, 'Fatal error message: ' . $message);
222 }
223
224 // Getter for total fatal message count
225 function getTotalFatalErrors () {
226         // Init coun
227         $count = '0';
228
229         // Do we have at least the first entry?
230         if (!empty($GLOBALS['fatal_messages'][0])) {
231                 // Get total count
232                 $count = count($GLOBALS['fatal_messages']);
233         } // END - if
234
235         // Return value
236         return $count;
237 }
238
239 // Load a template file and return it's content (only it's name; do not use ' or ")
240 function loadTemplate ($template, $return = false, $content = array()) {
241         // @TODO Remove this sanity-check if all is fine
242         if (!is_bool($return)) debug_report_bug('return is not bool (' . gettype($return) . ')');
243
244         // @TODO Try to rewrite all $DATA to $content
245         global $DATA;
246
247         // Do we have cache?
248         if (isTemplateCached($template)) {
249                 // Evaluate the cache
250                 eval(readTemplateCache($template));
251         } elseif (!isset($GLOBALS['template_eval'][$template])) {
252                 // Add more variables which you want to use in your template files
253                 $username = getUsername();
254
255                 // Make all template names lowercase
256                 $template = strtolower($template);
257
258                 // Init some data
259                 $ret = '';
260                 if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = '0';
261
262                 // Base directory
263                 $basePath = sprintf("%stemplates/%s/html/", getConfig('PATH'), getLanguage());
264                 $extraPath = detectExtraTemplatePath($template);;
265
266                 ////////////////////////
267                 // Generate file name //
268                 ////////////////////////
269                 $FQFN = $basePath . $extraPath . $template . '.tpl';
270
271                 // Does the special template exists?
272                 if (!isFileReadable($FQFN)) {
273                         // Reset to default template
274                         $FQFN = $basePath . $template . '.tpl';
275                 } // END - if
276
277                 // Now does the final template exists?
278                 if (isFileReadable($FQFN)) {
279                         // Count the template load
280                         incrementConfigEntry('num_templates');
281
282                         // The local file does exists so we load it. :)
283                         $GLOBALS['tpl_content'] = readFromFile($FQFN);
284
285                         // Do we have to compile the code?
286                         $ret = '';
287                         if ((strpos($GLOBALS['tpl_content'], '$') !== false) || (strpos($GLOBALS['tpl_content'], '{--') !== false) || (strpos($GLOBALS['tpl_content'], '{!') !== false) || (strpos($GLOBALS['tpl_content'], '{?') !== false)) {
288                                 // Normal HTML output?
289                                 if (getOutputMode() == '0') {
290                                         // Add surrounding HTML comments to help finding bugs faster
291                                         $ret = '<!-- Template ' . $template . " - Start -->\n" . $GLOBALS['tpl_content'] . '<!-- Template ' . $template . " - End -->\n";
292
293                                         // Prepare eval() command
294                                         $eval = '$ret = "' . compileCode(escapeQuotes($ret)) . '";';
295                                 } elseif (substr($template, 0, 3) == 'js_') {
296                                         // JavaScripts don't like entities and timings
297                                         $eval = '$ret = decodeEntities("' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['tpl_content'])) . '");';
298                                 } else {
299                                         // Prepare eval() command, other output doesn't like entities, maybe
300                                         $eval = '$ret = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['tpl_content'])) . '");';
301                                 }
302                         } else {
303                                 // Add surrounding HTML comments to help finding bugs faster
304                                 $ret = '<!-- Template ' . $template . " - Start -->\n" . $GLOBALS['tpl_content'] . '<!-- Template ' . $template . " - End -->\n";
305                                 $eval = '$ret = "' . escapeQuotes($ret) . '";';
306                         } // END - if
307
308                         // Cache the eval() command here
309                         $GLOBALS['template_eval'][$template] = $eval;
310
311                         // Eval the code
312                         eval($GLOBALS['template_eval'][$template]);
313                 } elseif ((isAdmin()) || ((isInstalling()) && (!isInstalled()))) {
314                         // Only admins shall see this warning or when installation mode is active
315                         $ret = '<br /><span class="guest_failed">{--TEMPLATE_404--}</span><br />
316 (' . $template . ')<br />
317 <br />
318 {--TEMPLATE_CONTENT--}
319 <pre>' . print_r($content, true) . '</pre>
320 {--TEMPLATE_DATA--}
321 <pre>' . print_r($DATA, true) . '</pre>
322 <br /><br />';
323                 } else {
324                         // No file!
325                         $GLOBALS['template_eval'][$template] = '404';
326                 }
327         } else {
328                 // Eval the code
329                 eval($GLOBALS['template_eval'][$template]);
330         }
331
332         // Do we have some content to output or return?
333         if (!empty($ret)) {
334                 // Not empty so let's put it out! ;)
335                 if ($return === true) {
336                         // Return the HTML code
337                         return $ret;
338                 } else {
339                         // Output directly
340                         outputHtml($ret);
341                 }
342         } elseif (isDebugModeEnabled()) {
343                 // Warning, empty output!
344                 return 'E:' . $template . ',content=<pre>' . print_r($content, true) . '</pre>';
345         }
346 }
347
348 // Detects the extra template path from given template name
349 function detectExtraTemplatePath ($template) {
350         // Default is empty
351         $extraPath = '';
352
353         // Do we have cache?
354         if (!isset($GLOBALS['extra_path'][$template])) {
355                 // Check for admin/guest/member/etc. templates
356                 if (substr($template, 0, 6) == 'admin_') {
357                         // Admin template found
358                         $extraPath = 'admin/';
359                 } elseif (substr($template, 0, 6) == 'guest_') {
360                         // Guest template found
361                         $extraPath = 'guest/';
362                 } elseif (substr($template, 0, 7) == 'member_') {
363                         // Member template found
364                         $extraPath = 'member/';
365                 } elseif (substr($template, 0, 7) == 'select_') {
366                         // Selection template found
367                         $extraPath = 'select/';
368                 } elseif (substr($template, 0, 8) == 'install_') {
369                         // Installation template found
370                         $extraPath = 'install/';
371                 } elseif (substr($template, 0, 4) == 'ext_') {
372                         // Extension template found
373                         $extraPath = 'ext/';
374                 } elseif (substr($template, 0, 3) == 'la_') {
375                         // 'Logical-area' template found
376                         $extraPath = 'la/';
377                 } elseif (substr($template, 0, 3) == 'js_') {
378                         // JavaScript template found
379                         $extraPath = 'js/';
380                 } elseif (substr($template, 0, 5) == 'menu_') {
381                         // Menu template found
382                         $extraPath = 'menu/';
383                 } else {
384                         // Test for extension
385                         $test = substr($template, 0, strpos($template, '_'));
386
387                         // Probe for valid extension name
388                         if (isExtensionNameValid($test)) {
389                                 // Set extra path to extension's name
390                                 $extraPath = $test . '/';
391                         } // END - if
392                 }
393
394                 // Store it in cache
395                 $GLOBALS['extra_path'][$template] = $extraPath;
396         } // END - if
397
398         // Return result
399         return $GLOBALS['extra_path'][$template];
400 }
401
402 // Loads an email template and compiles it
403 function loadEmailTemplate ($template, $content = array(), $UID = '0') {
404         global $DATA;
405
406         // Make sure all template names are lowercase!
407         $template = strtolower($template);
408
409         // Default 'nickname' if extension is not installed
410         $nick = '---';
411
412         // Prepare IP number and User Agent
413         $REMOTE_ADDR     = detectRemoteAddr();
414         $HTTP_USER_AGENT = detectUserAgent();
415
416         // Default admin
417         $ADMIN = getConfig('MAIN_TITLE');
418
419         // Is the admin logged in?
420         if (isAdmin()) {
421                 // Get admin id
422                 $adminId = getCurrentAdminId();
423
424                 // Load Admin data
425                 $ADMIN = getAdminEmail($adminId);
426         } // END - if
427
428         // Neutral email address is default
429         $email = getConfig('WEBMASTER');
430
431         // Expiration in a nice output format
432         // NOTE: Use $content[expiration] in your templates instead of $EXPIRATION
433         if (getConfig('auto_purge') == '0') {
434                 // Will never expire!
435                 $EXPIRATION = getMessage('MAIL_WILL_NEVER_EXPIRE');
436         } else {
437                 // Create nice date string
438                 $EXPIRATION = createFancyTime(getConfig('auto_purge'));
439         }
440
441         // Is content an array?
442         if (is_array($content)) {
443                 // Add expiration to array, $EXPIRATION is now deprecated!
444                 $content['expiration'] = $EXPIRATION;
445         } // END - if
446
447         // Load user's data
448         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):UID={$UID},template={$template},content[]=".gettype($content).'<br />');
449         if (($UID > 0) && (is_array($content))) {
450                 // If nickname extension is installed, fetch nickname as well
451                 if ((isExtensionActive('nickname')) && (isNicknameUsed($UID))) {
452                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NICKNAME!<br />");
453                         // Load by nickname
454                         fetchUserData($UID, 'nickname');
455                 } else {
456                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NO-NICK!<br />");
457                         /// Load by userid
458                         fetchUserData($UID);
459                 }
460
461                 // Merge data if valid
462                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - PRE<br />");
463                 if (isUserDataValid()) {
464                         $content = merge_array($content, getUserDataArray());
465                 } // END - if
466                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - AFTER<br />");
467         } // END - if
468
469         // Translate M to male or F to female if present
470         if (isset($content['gender'])) $content['gender'] = translateGender($content['gender']);
471
472         // Overwrite email from data if present
473         if (isset($content['email'])) $email = $content['email'];
474
475         // Store email for some functions in global data array
476         // @TODO Do only use $contentn, not $DATA or raw variables
477         $DATA['email'] = $email;
478
479         // Base directory
480         $basePath = sprintf("%stemplates/%s/emails/", getConfig('PATH'), getLanguage());
481
482         // Detect extra path
483         $extraPath = detectExtraTemplatePath($template);
484
485         // Generate full FQFN
486         $FQFN = $basePath . $extraPath . $template . '.tpl';
487
488         // Does the special template exists?
489         if (!isFileReadable($FQFN)) {
490                 // Reset to default template
491                 $FQFN = $basePath . $template . '.tpl';
492         } // END - if
493
494         // Now does the final template exists?
495         $newContent = '';
496         if (isFileReadable($FQFN)) {
497                 // The local file does exists so we load it. :)
498                 $GLOBALS['tpl_content'] = readFromFile($FQFN);
499
500                 // Run code
501                 $GLOBALS['tpl_content'] = "\$newContent = decodeEntities(\"".compileRawCode(escapeQuotes($GLOBALS['tpl_content']))."\");";
502                 eval($GLOBALS['tpl_content']);
503         } elseif (!empty($template)) {
504                 // Template file not found!
505                 $newContent = '{--TEMPLATE_404--}: ' . $template . '<br />
506 {--TEMPLATE_CONTENT--}
507 <pre>' . print_r($content, true) . '</pre>
508 {--TEMPLATE_DATA--}
509 <pre>' . print_r($DATA, true) . '</pre>
510 <br /><br />';
511
512                 // Debug mode not active? Then remove the HTML tags
513                 if (!isDebugModeEnabled()) $newContent = secureString($newContent);
514         } else {
515                 // No template name supplied!
516                 $newContent = getMessage('NO_TEMPLATE_SUPPLIED');
517         }
518
519         // Is there some content?
520         if (empty($newContent)) {
521                 // Compiling failed
522                 $newContent = "Compiler error for template {$template}!\nUncompiled content:\n" . $GLOBALS['tpl_content'];
523
524                 // Add last error if the required function exists
525                 if (function_exists('error_get_last')) $newContent .= "\n--------------------------------------\nDebug:\n".print_r(error_get_last(), true)."--------------------------------------\nPlease don't alter these informations!\nThanx.";
526         } // END - if
527
528         // Remove content and data
529         unset($content);
530         unset($DATA);
531
532         // Return content
533         return $newContent;
534 }
535
536 // Send mail out to an email address
537 function sendEmail ($toEmail, $subject, $message, $isHtml = 'N', $mailHeader = '') {
538         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$toEmail},SUBJECT={$subject}<br />");
539
540         // Compile subject line (for POINTS constant etc.)
541         eval("\$subject = decodeEntities(\"".compileRawCode(escapeQuotes($subject))."\");");
542
543         // Set from header
544         if ((!eregi('@', $toEmail)) && ($toEmail > 0)) {
545                 // Value detected, is the message extension installed?
546                 // @TODO Extension 'msg' does not exist
547                 if (isExtensionActive('msg')) {
548                         ADD_MESSAGE_TO_BOX($toEmail, $subject, $message, $isHtml);
549                         return;
550                 } else {
551                         // Does the user exist?
552                         if (fetchUserData($toEmail)) {
553                                 // Get the email
554                                 $toEmail = getUserData('email');
555                         } else {
556                                 // Set webmaster
557                                 $toEmail = getConfig('WEBMASTER');
558                         }
559                 }
560         } elseif ($toEmail == '0') {
561                 // Is the webmaster!
562                 $toEmail = getConfig('WEBMASTER');
563         }
564         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$toEmail}<br />");
565
566         // Check for PHPMailer or debug-mode
567         if (!checkPhpMailerUsage()) {
568                 // Not in PHPMailer-Mode
569                 if (empty($mailHeader)) {
570                         // Load email header template
571                         $mailHeader = loadEmailTemplate('header');
572                 } else {
573                         // Append header
574                         $mailHeader .= loadEmailTemplate('header');
575                 }
576         } elseif (isDebugModeEnabled()) {
577                 if (empty($mailHeader)) {
578                         // Load email header template
579                         $mailHeader = loadEmailTemplate('header');
580                 } else {
581                         // Append header
582                         $mailHeader .= loadEmailTemplate('header');
583                 }
584         }
585
586         // Compile "TO"
587         eval("\$toEmail = \"".compileRawCode(escapeQuotes($toEmail))."\";");
588
589         // Compile "MSG"
590         eval("\$message = \"".compileRawCode(escapeQuotes($message))."\";");
591
592         // Fix HTML parameter (default is no!)
593         if (empty($isHtml)) $isHtml = 'N';
594         if (isDebugModeEnabled()) {
595                 // In debug mode we want to display the mail instead of sending it away so we can debug this part
596                 outputHtml('<pre>
597 Headers : ' . str_replace('<', '&lt', str_replace('>', '&gt;', secureString(trim($mailHeader)))) . '
598 To      : ' . $toEmail . '
599 Subject : ' . $subject . '
600 Message : ' . $message . '
601 </pre>');
602         } elseif (($isHtml == 'Y') && (isExtensionActive('html_mail'))) {
603                 // Send mail as HTML away
604                 sendHtmlEmail($toEmail, $subject, $message, $mailHeader);
605         } elseif (!empty($toEmail)) {
606                 // Send Mail away
607                 sendRawEmail($toEmail, $subject, $message, $mailHeader);
608         } elseif ($isHtml != 'Y') {
609                 // Problem found!
610                 sendRawEmail(getConfig('WEBMASTER'), '[PROBLEM:]' . $subject, $message, $mailHeader);
611         }
612 }
613
614 // Check to use wether legacy mail() command or PHPMailer class
615 // @TODO Rewrite this to an extension 'smtp'
616 // @private
617 function checkPhpMailerUsage() {
618         return ((getConfig('SMTP_HOSTNAME') != '') && (getConfig('SMTP_USER') != ''));
619 }
620
621 // Send out a raw email with PHPMailer class or legacy mail() command
622 function sendRawEmail ($toEmail, $subject, $message, $from) {
623         // Just compile all again, to put out all configs, etc.
624         eval('$toEmail = decodeEntities("' . compileRawCode(escapeQuotes($toEmail)) . '");');
625         eval('$subject = decodeEntities("' . compileRawCode(escapeQuotes($subject)) . '");');
626         eval('$message = decodeEntities("' . compileRawCode(escapeQuotes($message)) . '");');
627         eval('$from    = decodeEntities("' . compileRawCode(escapeQuotes($from))    . '");');
628
629         // Shall we use PHPMailer class or legacy mode?
630         if (checkPhpMailerUsage()) {
631                 // Use PHPMailer class with SMTP enabled
632                 loadIncludeOnce('inc/phpmailer/class.phpmailer.php');
633                 loadIncludeOnce('inc/phpmailer/class.smtp.php');
634
635                 // get new instance
636                 $mail = new PHPMailer();
637
638                 // Set charset to UTF-8
639                 $mail->CharSet('UTF-8');
640
641                 // Path for PHPMailer
642                 $mail->PluginDir  = sprintf("%sinc/phpmailer/", getConfig('PATH'));
643
644                 $mail->IsSMTP();
645                 $mail->SMTPAuth   = true;
646                 $mail->Host       = getConfig('SMTP_HOSTNAME');
647                 $mail->Port       = 25;
648                 $mail->Username   = getConfig('SMTP_USER');
649                 $mail->Password   = getConfig('SMTP_PASSWORD');
650                 if (empty($from)) {
651                         $mail->From = getConfig('WEBMASTER');
652                 } else {
653                         $mail->From = $from;
654                 }
655                 $mail->FromName   = getConfig('MAIN_TITLE');
656                 $mail->Subject    = $subject;
657                 if ((isExtensionActive('html_mail')) && (secureString($message) != $message)) {
658                         $mail->Body       = $message;
659                         $mail->AltBody    = 'Your mail program required HTML support to read this mail!';
660                         $mail->WordWrap   = 70;
661                         $mail->IsHTML(true);
662                 } else {
663                         $mail->Body       = decodeEntities($message);
664                 }
665                 $mail->AddAddress($toEmail, '');
666                 $mail->AddReplyTo(getConfig('WEBMASTER'), getConfig('MAIN_TITLE'));
667                 $mail->AddCustomHeader('Errors-To:' . getConfig('WEBMASTER'));
668                 $mail->AddCustomHeader('X-Loop:' . getConfig('WEBMASTER'));
669                 $mail->Send();
670         } else {
671                 // Use legacy mail() command
672                 mail($toEmail, $subject, decodeEntities($message), $from);
673         }
674 }
675
676 // Generate a password in a specified length or use default password length
677 function generatePassword ($length = '0') {
678         // Auto-fix invalid length of zero
679         if ($length == '0') $length = getConfig('pass_len');
680
681         // Initialize array with all allowed chars
682         $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,-,+,_,/,.');
683
684         // Start creating password
685         $PASS = '';
686         for ($i = '0'; $i < $length; $i++) {
687                 $PASS .= $ABC[mt_rand(0, count($ABC) -1)];
688         } // END - for
689
690         // When the size is below 40 we can also add additional security by scrambling
691         // it. Otherwise we may corrupt hashes
692         if (strlen($PASS) <= 40) {
693                 // Also scramble the password
694                 $PASS = scrambleString($PASS);
695         } // END - if
696
697         // Return the password
698         return $PASS;
699 }
700
701 // Generates a human-readable timestamp from the Uni* stamp
702 function generateDateTime ($time, $mode = '0') {
703         // Filter out numbers
704         $time = bigintval($time);
705
706         // If the stamp is zero it mostly didn't "happen"
707         if ($time == '0') {
708                 // Never happend
709                 return getMessage('NEVER_HAPPENED');
710         } // END - if
711
712         switch (getLanguage()) {
713                 case 'de': // German date / time format
714                         switch ($mode) {
715                                 case '0': $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
716                                 case '1': $ret = strtolower(date('d.m.Y - H:i', $time)); break;
717                                 case '2': $ret = date('d.m.Y|H:i', $time); break;
718                                 case '3': $ret = date('d.m.Y', $time); break;
719                                 default:
720                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
721                                         break;
722                         }
723                         break;
724
725                 default: // Default is the US date / time format!
726                         switch ($mode) {
727                                 case '0': $ret = date('r', $time); break;
728                                 case '1': $ret = date('Y-m-d - g:i A', $time); break;
729                                 case '2': $ret = date('y-m-d|H:i', $time); break;
730                                 case '3': $ret = date('y-m-d', $time); break;
731                                 default:
732                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
733                                         break;
734                         } // END - switch
735         } // END - switch
736
737         // Return result
738         return $ret;
739 }
740
741 // Translates Y/N to yes/no
742 function translateYesNo ($yn) {
743         // Default
744         $translated = '??? (' . $yn . ')';
745         switch ($yn) {
746                 case 'Y': $translated = getMessage('YES'); break;
747                 case 'N': $translated = getMessage('NO'); break;
748                 default:
749                         // Log unknown value
750                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown value %s. Expected Y/N!", $yn));
751                         break;
752         }
753
754         // Return it
755         return $translated;
756 }
757
758 // Translates the "pool type" into human-readable
759 function translatePoolType ($type) {
760         // Default?type is unknown
761         $translated = sprintf(getMessage('POOL_TYPE_UNKNOWN'), $type);
762
763         // Generate constant
764         $constName = sprintf("POOL_TYPE_%s", $type);
765
766         // Does it exist?
767         if (isMessageIdValid($constName)) {
768                 // Then use it
769                 $translated = getMessage($constName);
770         } // END - if
771
772         // Return "translation"
773         return $translated;
774 }
775
776 // Translates the american decimal dot into a german comma
777 function translateComma ($dotted, $cut = true, $max = '0') {
778         // Default is 3 you can change this in admin area "Misc -> Misc Options"
779         if (!isConfigEntrySet('max_comma')) setConfigEntry('max_comma', 3);
780
781         // Use from config is default
782         $maxComma = getConfig('max_comma');
783
784         // Use from parameter?
785         if ($max > 0) $maxComma = $max;
786
787         // Cut zeros off?
788         if (($cut === true) && ($max == '0')) {
789                 // Test for commata if in cut-mode
790                 $com = explode('.', $dotted);
791                 if (count($com) < 2) {
792                         // Don't display commatas even if there are none... ;-)
793                         $maxComma = '0';
794                 }
795         } // END - if
796
797         // Debug log
798         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "dotted={$dotted},maxComma={$maxComma}");
799
800         // Translate it now
801         switch (getLanguage()) {
802                 case 'de': // German language
803                         $dotted = number_format($dotted, $maxComma, ',', '.');
804                         break;
805
806                 default: // All others
807                         $dotted = number_format($dotted, $maxComma, '.', ',');
808                         break;
809         }
810
811         // Return translated value
812         return $dotted;
813 }
814
815 // Translate Uni*-like gender to human-readable
816 function translateGender ($gender) {
817         // Default
818         $ret = '!' . $gender . '!';
819
820         // Male/female or company?
821         switch ($gender) {
822                 case 'M': $ret = getMessage('GENDER_M'); break;
823                 case 'F': $ret = getMessage('GENDER_F'); break;
824                 case 'C': $ret = getMessage('GENDER_C'); break;
825                 default:
826                         // Log unknown gender
827                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown gender %s detected.", $gender));
828                         break;
829         }
830
831         // Return translated gender
832         return $ret;
833 }
834
835 // "Translates" the user status
836 function translateUserStatus ($status) {
837         // Generate message depending on status
838         switch ($status) {
839                 case 'UNCONFIRMED':
840                 case 'CONFIRMED':
841                 case 'LOCKED':
842                         $ret = getMessage(sprintf("ACCOUNT_%s", $status));
843                         break;
844
845                 case '':
846                 case null:
847                         $ret = getMessage('ACCOUNT_DELETED');
848                         break;
849
850                 default:
851                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
852                         $ret = sprintf(getMessage('UNKNOWN_STATUS'), $status);
853                         break;
854         } // END - switch
855
856         // Return it
857         return $ret;
858 }
859
860 // Generates an URL for the dereferer
861 function generateDerefererUrl ($URL) {
862         // Don't de-refer our own links!
863         if (substr($URL, 0, strlen(getConfig('URL'))) != getConfig('URL')) {
864                 // De-refer this link
865                 $URL = '{?URL?}/modules.php?module=loader&amp;url=' . encodeString(compileUriCode($URL));
866         } // END - if
867
868         // Return link
869         return $URL;
870 }
871
872 // Generates an URL for the frametester
873 function generateFrametesterUrl ($URL) {
874         // Prepare frametester URL
875         $frametesterUrl = sprintf("{?URL?}/modules.php?module=frametester&amp;url=%s",
876                 encodeString(compileUriCode($URL))
877         );
878
879         // Return the new URL
880         return $frametesterUrl;
881 }
882
883 // Count entries from e.g. a selection box
884 function countSelection ($array) {
885         // Integrity check
886         if (!is_array($array)) {
887                 // Not an array!
888                 debug_report_bug(__FUNCTION__.': No array provided.');
889         } // END - if
890
891         // Init count
892         $ret = '0';
893
894         // Count all entries
895         foreach ($array as $key => $selected) {
896                 // Is it checked?
897                 if (!empty($selected)) $ret++;
898         } // END - foreach
899
900         // Return counted selections
901         return $ret;
902 }
903
904 // Generate XHTML code for the CAPTCHA
905 function generateCaptchaCode ($code, $type, $DATA, $userid) {
906         return '<img border="0" alt="Code ' . $code . '" src="{?URL?}/mailid_top.php?userid=' . $userid . '&amp;' . $type . '=' . $DATA . '&amp;mode=img&amp;code=' . $code . '" />';
907 }
908
909 // Generates a timestamp (some wrapper for mktime())
910 function makeTime ($hours, $minutes, $seconds, $stamp) {
911         // Extract day, month and year from given timestamp
912         $days   = date('d', $stamp);
913         $months = date('m', $stamp);
914         $years  = date('Y', $stamp);
915
916         // Create timestamp for wished time which depends on extracted date
917         return mktime(
918                 $hours,
919                 $minutes,
920                 $seconds,
921                 $months,
922                 $days,
923                 $years
924         );
925 }
926
927 // Redirects to an URL and if neccessarry extends it with own base URL
928 function redirectToUrl ($URL) {
929         // Compile out codes
930         eval('$URL = "' . compileRawCode($URL) . '";');
931
932         // Check if http(s):// is there
933         if ((substr($URL, 0, 7) != 'http://') && (substr($URL, 0, 8) != 'https://')) {
934                 // Make all URLs full-qualified
935                 $URL = getConfig('URL') . '/' . $URL;
936         } // END - if
937
938         // Three different debug ways...
939         //* DEBUG: */ debug_report_bug(sprintf("%s[%s:] URL=%s", __FUNCTION__, __LINE__, $URL));
940         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'URL=' . $URL);
941         //* DEBUG: */ die($URL);
942
943         // Default 'rel' value is external, nofollow is evil from Google and hurts the Internet
944         $rel = ' rel="external"';
945
946         // Do we have internal or external URL?
947         if (substr($URL, 0, strlen(getConfig('URL'))) == getConfig('URL')) {
948                 // Own (=internal) URL
949                 $rel = '';
950         } // END - if
951
952         // Get output buffer
953         $GLOBALS['output'] = ob_get_contents();
954
955         // Clear it only if there is content
956         if (!empty($GLOBALS['output'])) {
957                 clearOutputBuffer();
958         } // END - if
959
960         // Simple probe for bots/spiders from search engines
961         if ((strpos(detectUserAgent(), 'spider') !== false) || (strpos(detectUserAgent(), 'bot') !== false)) {
962                 // Secure the URL against bad things such als HTML insertions and so on...
963                 $URL = secureString($URL);
964
965                 // Output new location link as anchor
966                 outputHtml('<a href="' . $URL . '"' . $rel . '>' . $URL . '</a>');
967         } elseif (!headers_sent()) {
968                 //* DEBUG: */ debug_report_bug("URL={$URL}");
969                 // Clear own output buffer
970                 $GLOBALS['output'] = '';
971
972                 // Load URL when headers are not sent
973                 sendHeader('Location: '.str_replace('&amp;', '&', $URL));
974         } else {
975                 // Output error message
976                 loadInclude('inc/header.php');
977                 loadTemplate('redirect_url', false, str_replace('&amp;', '&', $URL));
978                 loadInclude('inc/footer.php');
979         }
980
981         // Shut the mailer down here
982         shutdown();
983 }
984
985 // Wrapper for redirectToUrl but URL comes from a configuration entry
986 function redirectToConfiguredUrl ($configEntry) {
987         // Get the URL
988         $URL = getConfig($configEntry);
989
990         // Is this URL set?
991         if (is_null($URL)) {
992                 // Then abort here
993                 debug_report_bug(sprintf("Configuration entry %s is not set!", $configEntry));
994         } // END - if
995
996         // Load the URL
997         redirectToUrl($URL);
998 }
999
1000 // Compiles the given HTML/mail code
1001 function compileCode ($code, $simple = false, $constants = true, $full = true) {
1002         // Is the code a string?
1003         if (!is_string($code)) {
1004                 // Silently return it
1005                 return $code;
1006         } // END - if
1007
1008         // Start couting
1009         $startCompile = microtime(true);
1010
1011         // Comile the code
1012         $code = compileRawCode($code, $simple, $constants, $full);
1013
1014         // Get timing
1015         $compiled = microtime(true);
1016
1017         // Add timing
1018         $code .= '<!-- Compilation time: ' . (($compiled - $startCompile) * 1000). 'ms //-->';
1019
1020         // Return compiled code
1021         return $code;
1022 }
1023
1024 // Compiles the code (use compileCode() only for HTML because of the comments)
1025 // @TODO $simple is deprecated
1026 function compileRawCode ($code, $simple = false, $constants = true, $full = true) {
1027         // Is the code a string?
1028         if (!is_string($code)) {
1029                 // Silently return it
1030                 return $code;
1031         } // END - if
1032
1033         // Init replacement-array with smaller set of security characters
1034         $secChars = $GLOBALS['url_chars'];
1035
1036         // Select full set of chars to replace when we e.g. want to compile URLs
1037         if ($full === true) $secChars = $GLOBALS['security_chars'];
1038
1039         // Compile more through a filter
1040         $code = runFilterChain('compile_code', $code);
1041
1042         // Compile constants
1043         if ($constants === true) {
1044                 // BEFORE 0.2.1 : Language and data constants
1045                 // WITH 0.2.1+  : Only language constants
1046                 $code = str_replace('{--', "\".getMessage('", str_replace('--}', "').\"", $code));
1047
1048                 // BEFORE 0.2.1 : Not used
1049                 // WITH 0.2.1+  : Data constants
1050                 $code = str_replace('{!', "\".constant('", str_replace("!}", "').\"", $code));
1051         } // END - if
1052
1053         // Compile QUOT and other non-HTML codes
1054         foreach ($secChars['to'] as $k => $to) {
1055                 // Do the reversed thing as in inc/libs/security_functions.php
1056                 $code = str_replace($to, $secChars['from'][$k], $code);
1057         } // END - foreach
1058
1059         // Find $content[bla][blub] entries
1060         // @TODO Do only use $content and deprecate $GLOBALS and $DATA in templates
1061         preg_match_all('/\$(content|GLOBALS|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
1062
1063         // Are some matches found?
1064         if ((count($matches) > 0) && (count($matches[0]) > 0)) {
1065                 // Replace all matches
1066                 $matchesFound = array();
1067                 foreach ($matches[0] as $key => $match) {
1068                         // Fuzzy look has failed by default
1069                         $fuzzyFound = false;
1070
1071                         // Fuzzy look on match if already found
1072                         foreach ($matchesFound as $found => $set) {
1073                                 // Get test part
1074                                 $test = substr($found, 0, strlen($match));
1075
1076                                 // Does this entry exist?
1077                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):found={$found},match={$match},set={$set}<br />");
1078                                 if ($test == $match) {
1079                                         // Match found!
1080                                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):fuzzyFound!<br />");
1081                                         $fuzzyFound = true;
1082                                         break;
1083                                 } // END - if
1084                         } // END - foreach
1085
1086                         // Skip this entry?
1087                         if ($fuzzyFound === true) continue;
1088
1089                         // Take all string elements
1090                         if ((is_string($matches[4][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key."_" . $matches[4][$key]]))) {
1091                                 // Replace it in the code
1092                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):key={$key},match={$match}<br />");
1093                                 $newMatch = str_replace('[', "['", str_replace(']', "']", $match));
1094                                 $code = str_replace($match, '".' . $newMatch . '."', $code);
1095                                 $matchesFound[$key . '_' . $matches[4][$key]] = 1;
1096                                 $matchesFound[$match] = 1;
1097                         } elseif (!isset($matchesFound[$match])) {
1098                                 // Not yet replaced!
1099                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):match={$match}<br />");
1100                                 $code = str_replace($match, '".' . $match . '."', $code);
1101                                 $matchesFound[$match] = 1;
1102                         }
1103                 } // END - foreach
1104         } // END - if
1105
1106         // Return it
1107         return $code;
1108 }
1109
1110 /************************************************************************
1111  *                                                                      *
1112  * Gaenderter Sortier-Algorythmus, $array wird nach dem Array (!)       *
1113  * $a_sort sortiert:                                                    *
1114  *                                                                      *
1115  * $array - Das 3-dimensionale Array, das paralell sortiert werden soll *
1116  * $a_sort - Array, das die Sortiereihenfolge der ersten Elementeben    *
1117  * $primary_key - Prim.rschl.ssel aus $a_sort, nach dem sortiert wird   *
1118  * $order - Sortiereihenfolge: -1 = a-Z, 0 = keine, 1 = Z-a             *
1119  * $nums - true = Als Zahlen sortieren, false = Als Zeichen sortieren   *
1120  *                                                                      *
1121  * $a_sort muss Elemente enthalten, deren Wert Schluessel von $array    *
1122  * sind... Klingt kompliziert, suchen Sie mal mein Beispiel, dann sehen *
1123  * Sie, dass es doch nicht so schwer ist! :-)                           *
1124  *                                                                      *
1125  ************************************************************************/
1126 function array_pk_sort (&$array, $a_sort, $primary_key = '0', $order = -1, $nums = false) {
1127         $dummy = $array;
1128         while ($primary_key < count($a_sort)) {
1129                 foreach ($dummy[$a_sort[$primary_key]] as $key => $value) {
1130                         foreach ($dummy[$a_sort[$primary_key]] as $key2 => $value2) {
1131                                 $match = false;
1132                                 if ($nums === false) {
1133                                         // Sort byte-by-byte (also numbers will be interpreted as chars! E.g.: "9" > "10")
1134                                         if (($key != $key2) && (strcmp(strtolower($dummy[$a_sort[$primary_key]][$key]), strtolower($dummy[$a_sort[$primary_key]][$key2])) == $order)) $match = true;
1135                                 } elseif ($key != $key2) {
1136                                         // Sort numbers (E.g.: 9 < 10)
1137                                         if (($dummy[$a_sort[$primary_key]][$key] < $dummy[$a_sort[$primary_key]][$key2]) && ($order == -1)) $match = true;
1138                                         if (($dummy[$a_sort[$primary_key]][$key] > $dummy[$a_sort[$primary_key]][$key2]) && ($order == 1))  $match = true;
1139                                 }
1140
1141                                 if ($match) {
1142                                         // We have found two different values, so let's sort whole array
1143                                         foreach ($dummy as $sort_key => $sort_val) {
1144                                                 $t                       = $dummy[$sort_key][$key];
1145                                                 $dummy[$sort_key][$key]  = $dummy[$sort_key][$key2];
1146                                                 $dummy[$sort_key][$key2] = $t;
1147                                                 unset($t);
1148                                         } // END - foreach
1149                                 } // END - if
1150                         } // END - foreach
1151                 } // END - foreach
1152
1153                 // Count one up
1154                 $primary_key++;
1155         } // END - while
1156
1157         // Write back sorted array
1158         $array = $dummy;
1159 }
1160
1161 //
1162 function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'register_select') {
1163         $OUT = '';
1164
1165         if ($type == 'yn') {
1166                 // This is a yes/no selection only!
1167                 if ($id > 0) $prefix .= "[" . $id."]";
1168                 $OUT .= "    <select name=\"" . $prefix."\" class=\"" . $class . "\" size=\"1\">\n";
1169         } else {
1170                 // Begin with regular selection box here
1171                 if (!empty($prefix)) $prefix .= "_";
1172                 $type2 = $type;
1173                 if ($id > 0) $type2 .= "[" . $id."]";
1174                 $OUT .= "    <select name=\"".strtolower($prefix . $type2)."\" class=\"" . $class . "\" size=\"1\">\n";
1175         }
1176
1177         switch ($type) {
1178                 case 'day': // Day
1179                         for ($idx = 1; $idx < 32; $idx++) {
1180                                 $OUT .= "<option value=\"" . $idx."\"";
1181                                 if ($default == $idx) $OUT .= ' selected="selected"';
1182                                 $OUT .= ">" . $idx."</option>\n";
1183                         } // END - for
1184                         break;
1185
1186                 case 'month': // Month
1187                         foreach ($GLOBALS['month_descr'] as $month => $descr) {
1188                                 $OUT .= "<option value=\"" . $month."\"";
1189                                 if ($default == $month) $OUT .= ' selected="selected"';
1190                                 $OUT .= ">" . $descr."</option>\n";
1191                         } // END - for
1192                         break;
1193
1194                 case 'year': // Year
1195                         // Get current year
1196                         $year = date('Y', time());
1197
1198                         // Use configured min age or fixed?
1199                         if ((isExtensionActive('other')) && (getExtensionVersion('other') >= '0.2.1')) {
1200                                 // Configured
1201                                 $startYear = $year - getConfig('min_age');
1202                         } else {
1203                                 // Fixed 16 years
1204                                 $startYear = $year - 16;
1205                         }
1206
1207                         // Calculate earliest year (100 years old people can still enter Internet???)
1208                         $minYear = $year - 100;
1209
1210                         // Check if the default value is larger than minimum and bigger than actual year
1211                         if (($default > $minYear) && ($default >= $year)) {
1212                                 for ($idx = $year; $idx < ($year + 11); $idx++) {
1213                                         $OUT .= "<option value=\"" . $idx."\"";
1214                                         if ($default == $idx) $OUT .= ' selected="selected"';
1215                                         $OUT .= ">" . $idx."</option>\n";
1216                                 } // END - for
1217                         } elseif ($default == -1) {
1218                                 // Current year minus 1
1219                                 for ($idx = $startYear; $idx <= ($year + 1); $idx++)
1220                                 {
1221                                         $OUT .= "<option value=\"" . $idx."\">" . $idx."</option>\n";
1222                                 }
1223                         } else {
1224                                 // Get current year and subtract the configured minimum age
1225                                 $OUT .= "<option value=\"".($minYear - 1)."\">&lt;" . $minYear."</option>\n";
1226                                 // Calculate earliest year depending on extension version
1227                                 if ((isExtensionActive('other')) && (getExtensionVersion('other') >= '0.2.1')) {
1228                                         // Use configured minimum age
1229                                         $year = date('Y', time()) - getConfig('min_age');
1230                                 } else {
1231                                         // Use fixed 16 years age
1232                                         $year = date('Y', time()) - 16;
1233                                 }
1234
1235                                 // Construct year selection list
1236                                 for ($idx = $minYear; $idx <= $year; $idx++) {
1237                                         $OUT .= "<option value=\"" . $idx."\"";
1238                                         if ($default == $idx) $OUT .= ' selected="selected"';
1239                                         $OUT .= ">" . $idx."</option>\n";
1240                                 } // END - for
1241                         }
1242                         break;
1243
1244                 case 'sec':
1245                 case 'min':
1246                         for ($idx = '0'; $idx < 60; $idx+=5) {
1247                                 if (strlen($idx) == 1) $idx = '0' . $idx;
1248                                 $OUT .= "<option value=\"" . $idx."\"";
1249                                 if ($default == $idx) $OUT .= ' selected="selected"';
1250                                 $OUT .= ">" . $idx."</option>\n";
1251                         } // END - for
1252                         break;
1253
1254                 case 'hour':
1255                         for ($idx = '0'; $idx < 24; $idx++) {
1256                                 if (strlen($idx) == 1) $idx = '0' . $idx;
1257                                 $OUT .= "<option value=\"" . $idx."\"";
1258                                 if ($default == $idx) $OUT .= ' selected="selected"';
1259                                 $OUT .= ">" . $idx."</option>\n";
1260                         } // END - for
1261                         break;
1262
1263                 case 'yn':
1264                         $OUT .= "<option value=\"Y\"";
1265                         if ($default == 'Y') $OUT .= ' selected="selected"';
1266                         $OUT .= ">{--YES--}</option>\n<option value=\"N\"";
1267                         if ($default != 'Y') $OUT .= ' selected="selected"';
1268                         $OUT .= ">{--NO--}</option>\n";
1269                         break;
1270         }
1271         $OUT .= "    </select>\n";
1272         return $OUT;
1273 }
1274
1275 //
1276 // Deprecated : $length
1277 // Optional   : $DATA
1278 //
1279 function generateRandomCode ($length, $code, $userid, $DATA = '') {
1280         // Build server string
1281         $server = $_SERVER['PHP_SELF'] . getConfig('ENCRYPT_SEPERATOR') . detectUserAgent() . getConfig('ENCRYPT_SEPERATOR') . getenv('SERVER_SOFTWARE') . getConfig('ENCRYPT_SEPERATOR') . detectRemoteAddr().":'.':".filemtime(getConfig('PATH').'inc/databases.php');
1282
1283         // Build key string
1284         $keys = getConfig('SITE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY');
1285         if (isConfigEntrySet('secret_key'))  $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('secret_key');
1286         if (isConfigEntrySet('file_hash'))   $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('file_hash');
1287         $keys .= getConfig('ENCRYPT_SEPERATOR') . date('d-m-Y (l-F-T)', getConfig('patch_ctime'));
1288         if (isConfigEntrySet('master_salt')) $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('master_salt');
1289
1290         // Build string from misc data
1291         $data   = $code . getConfig('ENCRYPT_SEPERATOR') . $userid . getConfig('ENCRYPT_SEPERATOR') . $DATA;
1292
1293         // Add more additional data
1294         if (isSessionVariableSet('u_hash'))         $data .= getConfig('ENCRYPT_SEPERATOR') . getSession('u_hash');
1295
1296         // Add referal id, language, theme and userid
1297         $data .= getConfig('ENCRYPT_SEPERATOR') . determineReferalId();
1298         $data .= getConfig('ENCRYPT_SEPERATOR') . getLanguage();
1299         $data .= getConfig('ENCRYPT_SEPERATOR') . getCurrentTheme();
1300         $data .= getConfig('ENCRYPT_SEPERATOR') . getMemberId();
1301
1302         // Calculate number for generating the code
1303         $a = $code + getConfig('_ADD') - 1;
1304
1305         if (isConfigEntrySet('master_salt')) {
1306                 // Generate hash with master salt from modula of number with the prime number and other data
1307                 $saltedHash = generateHash(($a % getConfig('_PRIME')) . getConfig('ENCRYPT_SEPERATOR') . $server . getConfig('ENCRYPT_SEPERATOR') . $keys . getConfig('ENCRYPT_SEPERATOR') . $data . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . $a, getConfig('master_salt'));
1308
1309                 // Create number from hash
1310                 $rcode = hexdec(substr($saltedHash, strlen(getConfig('master_salt')), 9)) / abs(getConfig('rand_no') - $a + sqrt(getConfig('_ADD'))) / pi();
1311         } else {
1312                 // Generate hash with "hash of site key" from modula of number with the prime number and other data
1313                 $saltedHash = generateHash(($a % getConfig('_PRIME')) . getConfig('ENCRYPT_SEPERATOR') . $server . getConfig('ENCRYPT_SEPERATOR') . $keys . getConfig('ENCRYPT_SEPERATOR') . $data . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . $a, substr(sha1(getConfig('SITE_KEY')), 0, getConfig('salt_length')));
1314
1315                 // Create number from hash
1316                 $rcode = hexdec(substr($saltedHash, 8, 9)) / abs(getConfig('rand_no') - $a + sqrt(getConfig('_ADD'))) / pi();
1317         }
1318
1319         // At least 10 numbers shall be secure enought!
1320         $len = getConfig('code_length');
1321         if ($len == '0') $len = $length;
1322         if ($len == '0') $len = 10;
1323
1324         // Cut off requested counts of number
1325         $return = substr(str_replace('.', '', $rcode), 0, $len);
1326
1327         // Done building code
1328         return $return;
1329 }
1330
1331 // Does only allow numbers
1332 function bigintval ($num, $castValue = true) {
1333         // Filter all numbers out
1334         $ret = preg_replace('/[^0123456789]/', '', $num);
1335
1336         // Shall we cast?
1337         if ($castValue === true) $ret = (double)$ret;
1338
1339         // Has the whole value changed?
1340         if ('' . $ret . '' != '' . $num . '') {
1341                 // Log the values
1342                 debug_report_bug('Problem with number found. ret=' . $ret . ', num='. $num);
1343         } // END - if
1344
1345         // Return result
1346         return $ret;
1347 }
1348
1349 // Insert the code in $img_code into jpeg or PNG image
1350 function generateImageOrCode ($img_code, $headerSent = true) {
1351         // Is the code size oversized or shouldn't we display it?
1352         if ((strlen($img_code) > 6) || (empty($img_code)) || (getConfig('code_length') == '0')) {
1353                 // Stop execution of function here because of over-sized code length
1354                 debug_report_bug('img_code ' . $img_code .' has invalid length. img_code()=' . strlen($img_code) . ' code_length=' . getConfig('code_length'));
1355         } elseif ($headerSent === false) {
1356                 // Return an HTML code here
1357                 return "<img src=\"{?URL?}/img.php?code=" . $img_code."\" alt=\"Image\" />\n";
1358         }
1359
1360         // Load image
1361         $img = sprintf("%s/theme/%s/images/code_bg.%s",
1362                 getConfig('PATH'),
1363                 getCurrentTheme(),
1364                 getConfig('img_type')
1365         );
1366
1367         // Is it readable?
1368         if (isFileReadable($img)) {
1369                 // Switch image type
1370                 switch (getConfig('img_type'))
1371                 {
1372                         case 'jpg':
1373                                 // Okay, load image and hide all errors
1374                                 $image = imagecreatefromjpeg($img);
1375                                 break;
1376
1377                         case 'png':
1378                                 // Okay, load image and hide all errors
1379                                 $image = imagecreatefrompng($img);
1380                                 break;
1381                 }
1382         } else {
1383                 // Exit function here
1384                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("File for image type %s not found.", getConfig('img_type')));
1385                 return;
1386         }
1387
1388         // Generate text color (red/green/blue; 0 = dark, 255 = bright)
1389         $text_color = imagecolorallocate($image, 0, 0, 0);
1390
1391         // Insert code into image
1392         imagestring($image, 5, 14, 2, $img_code, $text_color);
1393
1394         // Return to browser
1395         sendHeader('Content-Type: image/' . getConfig('img_type'));
1396
1397         // Output image with matching image factory
1398         switch (getConfig('img_type')) {
1399                 case 'jpg': imagejpeg($image); break;
1400                 case 'png': imagepng($image);  break;
1401         }
1402
1403         // Remove image from memory
1404         imagedestroy($image);
1405 }
1406 // Create selection box or array of splitted timestamp
1407 function createTimeSelections ($timestamp, $prefix = '', $display = '', $align = 'center', $return_array=false) {
1408         // Calculate 2-seconds timestamp
1409         $stamp = round($timestamp);
1410         //* DEBUG: */ print("*" . $stamp.'/' . $timestamp."*<br />");
1411
1412         // Do we have a leap year?
1413         $SWITCH = '0';
1414         $TEST = date('Y', time()) / 4;
1415         $M1 = date('m', time());
1416         $M2 = date('m', (time() + $timestamp));
1417
1418         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1419         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($M2 > "02"))  $SWITCH = getConfig('ONE_DAY');
1420
1421         // First of all years...
1422         $Y = abs(floor($timestamp / (31536000 + $SWITCH)));
1423         //* DEBUG: */ print("Y={$Y}<br />");
1424         // Next months...
1425         $M = abs(floor($timestamp / 2628000 - $Y * 12));
1426         //* DEBUG: */ print("M={$M}<br />");
1427         // Next weeks
1428         $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / getConfig('ONE_DAY')) / 7) - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) / 7)));
1429         //* DEBUG: */ print("W={$W}<br />");
1430         // Next days...
1431         $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY'))) - $W * 7));
1432         //* DEBUG: */ print("D={$D}<br />");
1433         // Next hours...
1434         $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));
1435         //* DEBUG: */ print("h={$h}<br />");
1436         // Next minutes..
1437         $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));
1438         //* DEBUG: */ print("m={$m}<br />");
1439         // And at last seconds...
1440         $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));
1441         //* DEBUG: */ print("s={$s}<br />");
1442
1443         // Is seconds zero and time is < 60 seconds?
1444         if (($s == '0') && ($timestamp < 60)) {
1445                 // Fix seconds
1446                 $s = round($timestamp);
1447         } // END - if
1448
1449         //
1450         // Now we convert them in seconds...
1451         //
1452         if ($return_array) {
1453                 // Just put all data in an array for later use
1454                 $OUT = array(
1455                         'YEARS'   => $Y,
1456                         'MONTHS'  => $M,
1457                         'WEEKS'   => $W,
1458                         'DAYS'    => $D,
1459                         'HOURS'   => $h,
1460                         'MINUTES' => $m,
1461                         'SECONDS' => $s
1462                 );
1463         } else {
1464                 // Generate table
1465                 $OUT  = "<div align=\"" . $align."\">\n";
1466                 $OUT .= "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"timebox_table dashed\">\n";
1467                 $OUT .= "<tr>\n";
1468
1469                 if (ereg('Y', $display) || (empty($display))) {
1470                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_YEARS--}</strong></td>\n";
1471                 }
1472
1473                 if (ereg('M', $display) || (empty($display))) {
1474                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_MONTHS--}</strong></td>\n";
1475                 }
1476
1477                 if (ereg('W', $display) || (empty($display))) {
1478                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_WEEKS--}</strong></td>\n";
1479                 }
1480
1481                 if (ereg('D', $display) || (empty($display))) {
1482                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_DAYS--}</strong></td>\n";
1483                 }
1484
1485                 if (ereg('h', $display) || (empty($display))) {
1486                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_HOURS--}</strong></td>\n";
1487                 }
1488
1489                 if (ereg('m', $display) || (empty($display))) {
1490                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_MINUTES--}</strong></td>\n";
1491                 }
1492
1493                 if (ereg('s', $display) || (empty($display))) {
1494                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_SECONDS--}</strong></td>\n";
1495                 }
1496
1497                 $OUT .= "</tr>\n";
1498                 $OUT .= "<tr>\n";
1499
1500                 if (ereg('Y', $display) || (empty($display))) {
1501                         // Generate year selection
1502                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_ye\" size=\"1\">\n";
1503                         for ($idx = '0'; $idx <= 10; $idx++) {
1504                                 $OUT .= "    <option class=\"mini_select\" value=\"" . $idx."\"";
1505                                 if ($idx == $Y) $OUT .= ' selected="selected"';
1506                                 $OUT .= ">" . $idx."</option>\n";
1507                         }
1508                         $OUT .= "  </select></td>\n";
1509                 } else {
1510                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_ye\" value=\"0\" />\n";
1511                 }
1512
1513                 if (ereg('M', $display) || (empty($display))) {
1514                         // Generate month selection
1515                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_mo\" size=\"1\">\n";
1516                         for ($idx = '0'; $idx <= 11; $idx++)
1517                         {
1518                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1519                                 if ($idx == $M) $OUT .= ' selected="selected"';
1520                                 $OUT .= ">" . $idx."</option>\n";
1521                         }
1522                         $OUT .= "  </select></td>\n";
1523                 } else {
1524                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_mo\" value=\"0\" />\n";
1525                 }
1526
1527                 if (ereg('W', $display) || (empty($display))) {
1528                         // Generate week selection
1529                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_we\" size=\"1\">\n";
1530                         for ($idx = '0'; $idx <= 4; $idx++) {
1531                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1532                                 if ($idx == $W) $OUT .= ' selected="selected"';
1533                                 $OUT .= ">" . $idx."</option>\n";
1534                         }
1535                         $OUT .= "  </select></td>\n";
1536                 } else {
1537                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_we\" value=\"0\" />\n";
1538                 }
1539
1540                 if (ereg('D', $display) || (empty($display))) {
1541                         // Generate day selection
1542                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_da\" size=\"1\">\n";
1543                         for ($idx = '0'; $idx <= 31; $idx++) {
1544                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1545                                 if ($idx == $D) $OUT .= ' selected="selected"';
1546                                 $OUT .= ">" . $idx."</option>\n";
1547                         }
1548                         $OUT .= "  </select></td>\n";
1549                 } else {
1550                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_da\" value=\"0\" />\n";
1551                 }
1552
1553                 if (ereg('h', $display) || (empty($display))) {
1554                         // Generate hour selection
1555                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_ho\" size=\"1\">\n";
1556                         for ($idx = '0'; $idx <= 23; $idx++)    {
1557                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1558                                 if ($idx == $h) $OUT .= ' selected="selected"';
1559                                 $OUT .= ">" . $idx."</option>\n";
1560                         }
1561                         $OUT .= "  </select></td>\n";
1562                 } else {
1563                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_ho\" value=\"0\" />\n";
1564                 }
1565
1566                 if (ereg('m', $display) || (empty($display))) {
1567                         // Generate minute selection
1568                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_mi\" size=\"1\">\n";
1569                         for ($idx = '0'; $idx <= 59; $idx++) {
1570                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1571                                 if ($idx == $m) $OUT .= ' selected="selected"';
1572                                 $OUT .= ">" . $idx."</option>\n";
1573                         }
1574                         $OUT .= "  </select></td>\n";
1575                 } else {
1576                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_mi\" value=\"0\" />\n";
1577                 }
1578
1579                 if (ereg('s', $display) || (empty($display))) {
1580                         // Generate second selection
1581                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_se\" size=\"1\">\n";
1582                         for ($idx = '0'; $idx <= 59; $idx++) {
1583                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1584                                 if ($idx == $s) $OUT .= ' selected="selected"';
1585                                 $OUT .= ">" . $idx."</option>\n";
1586                         }
1587                         $OUT .= "  </select></td>\n";
1588                 } else {
1589                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_se\" value=\"0\" />\n";
1590                 }
1591                 $OUT .= "</tr>\n";
1592                 $OUT .= "</table>\n";
1593                 $OUT .= "</div>\n";
1594                 // Return generated HTML code
1595         }
1596         return $OUT;
1597 }
1598
1599 //
1600 function createTimestampFromSelections ($prefix, $postData) {
1601         // Initial return value
1602         $ret = '0';
1603
1604         // Do we have a leap year?
1605         $SWITCH = '0';
1606         $TEST = date('Y', time()) / 4;
1607         $M1   = date('m', time());
1608         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1609         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($postData[$prefix."_mo"] > "02"))  $SWITCH = getConfig('ONE_DAY');
1610         // First add years...
1611         $ret += $postData[$prefix."_ye"] * (31536000 + $SWITCH);
1612         // Next months...
1613         $ret += $postData[$prefix."_mo"] * 2628000;
1614         // Next weeks
1615         $ret += $postData[$prefix."_we"] * 604800;
1616         // Next days...
1617         $ret += $postData[$prefix."_da"] * 86400;
1618         // Next hours...
1619         $ret += $postData[$prefix."_ho"] * 3600;
1620         // Next minutes..
1621         $ret += $postData[$prefix."_mi"] * 60;
1622         // And at last seconds...
1623         $ret += $postData[$prefix."_se"];
1624         // Return calculated value
1625         return $ret;
1626 }
1627
1628 // Creates a 'fancy' human-readable timestamp from a Uni* stamp
1629 function createFancyTime ($stamp) {
1630         // Get data array with years/months/weeks/days/...
1631         $data = createTimeSelections($stamp, '', '', '', true);
1632         $ret = '';
1633         foreach($data as $k => $v) {
1634                 if ($v > 0) {
1635                         // Value is greater than 0 "eval" data to return string
1636                         eval("\$ret .= \", \".\$v.\" {--_".strtoupper($k)."--}\";");
1637                         break;
1638                 } // END - if
1639         } // END - foreach
1640
1641         // Do we have something there?
1642         if (strlen($ret) > 0) {
1643                 // Remove leading commata and space
1644                 $ret = substr($ret, 2);
1645         } else {
1646                 // Zero seconds
1647                 $ret = "0 {--_SECONDS--}";
1648         }
1649
1650         // Return fancy time string
1651         return $ret;
1652 }
1653
1654 // Generates a navigation row for listing emails
1655 function addEmailNavigation ($PAGES, $offset, $show_form, $colspan, $return=false) {
1656         $SEP = ''; $TOP = '';
1657         if ($show_form === false) {
1658                 $TOP = " top";
1659                 $SEP = "<tr><td colspan=\"" . $colspan."\" class=\"seperator\">&nbsp;</td></tr>";
1660         }
1661
1662         $NAV = '';
1663         for ($page = 1; $page <= $PAGES; $page++) {
1664                 // Is the page currently selected or shall we generate a link to it?
1665                 if (($page == getRequestElement('page')) || ((!isGetRequestElementSet('page')) && ($page == 1))) {
1666                         // Is currently selected, so only highlight it
1667                         $NAV .= '<strong>-';
1668                 } else {
1669                         // Open anchor tag and add base URL
1670                         $NAV .= '<a href="{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;page=' . $page . '&amp;offset=' . $offset;
1671
1672                         // Add userid when we shall show all mails from a single member
1673                         if ((isGetRequestElementSet('userid')) && (bigintval(getRequestElement('userid')) > 0)) $NAV .= '&amp;userid=' . bigintval(getRequestElement('userid'));
1674
1675                         // Close open anchor tag
1676                         $NAV .= '">';
1677                 }
1678                 $NAV .= $page;
1679                 if (($page == getRequestElement('page')) || ((!isGetRequestElementSet('page')) && ($page == 1))) {
1680                         // Is currently selected, so only highlight it
1681                         $NAV .= '-</strong>';
1682                 } else {
1683                         // Close anchor tag
1684                         $NAV .= '</a>';
1685                 }
1686
1687                 // Add seperator if we have not yet reached total pages
1688                 if ($page < $PAGES) $NAV .= '&nbsp;|&nbsp;';
1689         } // END - for
1690
1691         // Define constants only once
1692         $content['nav']  = $NAV;
1693         $content['span'] = $colspan;
1694         $content['top']  = $TOP;
1695         $content['sep']  = $SEP;
1696
1697         // Load navigation template
1698         $OUT = loadTemplate('admin_email_nav_row', true, $content);
1699
1700         if ($return === true) {
1701                 // Return generated HTML-Code
1702                 return $OUT;
1703         } else {
1704                 // Output HTML-Code
1705                 outputHtml($OUT);
1706         }
1707 }
1708
1709 // Extract host from script name
1710 function extractHostnameFromUrl (&$script) {
1711         // Use default SERVER_URL by default... ;) So?
1712         $url = getConfig('SERVER_URL');
1713
1714         // Is this URL valid?
1715         if (substr($script, 0, 7) == 'http://') {
1716                 // Use the hostname from script URL as new hostname
1717                 $url = substr($script, 7);
1718                 $extract = explode('/', $url);
1719                 $url = $extract[0];
1720                 // Done extracting the URL :)
1721         } // END - if
1722
1723         // Extract host name
1724         $host = str_replace('http://', '', $url);
1725         if (ereg('/', $host)) $host = substr($host, 0, strpos($host, '/'));
1726
1727         // Generate relative URL
1728         //* DEBUG: */ print("SCRIPT=" . $script.'<br />');
1729         if (substr(strtolower($script), 0, 7) == 'http://') {
1730                 // But only if http:// is in front!
1731                 $script = substr($script, (strlen($url) + 7));
1732         } elseif (substr(strtolower($script), 0, 8) == 'https://') {
1733                 // Does this work?!
1734                 $script = substr($script, (strlen($url) + 8));
1735         }
1736
1737         //* DEBUG: */ print("SCRIPT=" . $script.'<br />');
1738         if (substr($script, 0, 1) == '/') $script = substr($script, 1);
1739
1740         // Return host name
1741         return $host;
1742 }
1743
1744 // Send a GET request
1745 function sendGetRequest ($script, $data = array()) {
1746         // Extract host name from script
1747         $host = extractHostnameFromUrl($script);
1748
1749         // Add data
1750         $scriptData = http_build_query($data, '', '&');
1751
1752         // Do we have a question-mark in the script?
1753         if (strpos($script, '?') === false) {
1754                 // No, so first char must be question mark
1755                 $scriptData = '?' . $scriptData;
1756         } else {
1757                 // Ok, add &
1758                 $scriptData = '&' . $scriptData;
1759         }
1760
1761         // Add script data
1762         $script .= $scriptData;
1763
1764         // Generate GET request header
1765         $request  = 'GET /' . trim($script) . ' HTTP/1.1' . getConfig('HTTP_EOL');
1766         $request .= 'Host: ' . $host . getConfig('HTTP_EOL');
1767         $request .= 'Referer: ' . getConfig('URL') . '/admin.php' . getConfig('HTTP_EOL');
1768         if (isConfigEntrySet('FULL_VERSION')) {
1769                 $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('FULL_VERSION') . getConfig('HTTP_EOL');
1770         } else {
1771                 $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('VERSION') . getConfig('HTTP_EOL');
1772         }
1773         $request .= 'Content-Type: text/plain' . getConfig('HTTP_EOL');
1774         $request .= 'Cache-Control: no-cache' . getConfig('HTTP_EOL');
1775         $request .= 'Connection: Close' . getConfig('HTTP_EOL') . getConfig('HTTP_EOL');
1776
1777         // Send the raw request
1778         $response = sendRawRequest($host, $request);
1779
1780         // Return the result to the caller function
1781         return $response;
1782 }
1783
1784 // Send a POST request
1785 function sendPostRequest ($script, $postData) {
1786         // Is postData an array?
1787         if (!is_array($postData)) {
1788                 // Abort here
1789                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("postData is not an array. Type: %s", gettype($postData)));
1790                 return array('', '', '');
1791         } // END - if
1792
1793         // Extract host name from script
1794         $host = extractHostnameFromUrl($script);
1795
1796         // Construct request
1797         $data = http_build_query($postData, '', '&');
1798
1799         // Generate POST request header
1800         $request  = 'POST /' . trim($script) . ' HTTP/1.1' . getConfig('HTTP_EOL');
1801         $request .= 'Host: ' . $host . getConfig('HTTP_EOL');
1802         $request .= 'Referer: ' . getConfig('URL') . '/admin.php' . getConfig('HTTP_EOL');
1803         $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('FULL_VERSION') . getConfig('HTTP_EOL');
1804         $request .= 'Content-Type: application/x-www-form-urlencoded' . getConfig('HTTP_EOL');
1805         $request .= 'Content-length: ' . strlen($data) . getConfig('HTTP_EOL');
1806         $request .= 'Cache-Control: no-cache' . getConfig('HTTP_EOL');
1807         $request .= 'Connection: Close' . getConfig('HTTP_EOL') . getConfig('HTTP_EOL');
1808         $request .= $data;
1809
1810         // Send the raw request
1811         $response = sendRawRequest($host, $request);
1812
1813         // Return the result to the caller function
1814         return $response;
1815 }
1816
1817 // Sends a raw request to another host
1818 function sendRawRequest ($host, $request) {
1819         // Init errno and errdesc with 'all fine' values
1820         $errno = '0'; $errdesc = '';
1821
1822         // Initialize array
1823         $response = array('', '', '');
1824
1825         // Default is not to use proxy
1826         $useProxy = false;
1827
1828         // Are proxy settins set?
1829         if ((isConfigEntrySet('proxy_host')) && (getConfig('proxy_host') != '') && (isConfigEntrySet('proxy_port')) && (getConfig('proxy_port') > 0)) {
1830                 // Then use it
1831                 $useProxy = true;
1832         } // END - if
1833
1834         // Open connection
1835         //* DEBUG: */ die("SCRIPT=" . $script.'<br />');
1836         if ($useProxy === true) {
1837                 // Connect to host through proxy connection
1838                 $fp = @fsockopen(compileRawCode(getConfig('proxy_host')), bigintval(getConfig('proxy_port')), $errno, $errdesc, 30);
1839         } else {
1840                 // Connect to host directly
1841                 $fp = @fsockopen($host, 80, $errno, $errdesc, 30);
1842         }
1843
1844         // Is there a link?
1845         if (!is_resource($fp)) {
1846                 // Failed!
1847                 return $response;
1848         } // END - if
1849
1850         // Do we use proxy?
1851         if ($useProxy === true) {
1852                 // Generate CONNECT request header
1853                 $proxyTunnel  = "CONNECT " . $host . ":80 HTTP/1.1" . getConfig('HTTP_EOL');
1854                 $proxyTunnel .= "Host: " . $host . getConfig('HTTP_EOL');
1855
1856                 // Use login data to proxy? (username at least!)
1857                 if (getConfig('proxy_username') != '') {
1858                         // Add it as well
1859                         $encodedAuth = base64_encode(compileRawCode(getConfig('proxy_username')) . getConfig('ENCRYPT_SEPERATOR') . compileRawCode(getConfig('proxy_password')));
1860                         $proxyTunnel .= "Proxy-Authorization: Basic " . $encodedAuth . getConfig('HTTP_EOL');
1861                 } // END - if
1862
1863                 // Add last new-line
1864                 $proxyTunnel .= getConfig('HTTP_EOL');
1865                 //* DEBUG: */ print("<strong>proxyTunnel=</strong><pre>" . $proxyTunnel."</pre>");
1866
1867                 // Write request
1868                 fputs($fp, $proxyTunnel);
1869
1870                 // Got response?
1871                 if (feof($fp)) {
1872                         // No response received
1873                         return $response;
1874                 } // END - if
1875
1876                 // Read the first line
1877                 $resp = trim(fgets($fp, 10240));
1878                 $respArray = explode(' ', $resp);
1879                 if ((strtolower($respArray[0]) !== 'http/1.0') || ($respArray[1] != '200')) {
1880                         // Invalid response!
1881                         return $response;
1882                 } // END - if
1883         } // END - if
1884
1885         // Write request
1886         fputs($fp, $request);
1887
1888         // Read response
1889         while (!feof($fp)) {
1890                 $response[] = trim(fgets($fp, 1024));
1891         } // END - while
1892
1893         // Close socket
1894         fclose($fp);
1895
1896         // Skip first empty lines
1897         $resp = $response;
1898         foreach ($resp as $idx => $line) {
1899                 // Trim space away
1900                 $line = trim($line);
1901
1902                 // Is this line empty?
1903                 if (empty($line)) {
1904                         // Then remove it
1905                         array_shift($response);
1906                 } else {
1907                         // Abort on first non-empty line
1908                         break;
1909                 }
1910         } // END - foreach
1911
1912         //* DEBUG: */ print("<strong>Response:</strong><pre>".print_r($response, true)."</pre>");
1913
1914         // Proxy agent found?
1915         if ((substr(strtolower($response[0]), 0, 11) == 'proxy-agent') && ($useProxy === true)) {
1916                 // Proxy header detected, so remove two lines
1917                 array_shift($response);
1918                 array_shift($response);
1919         } // END - if
1920
1921         // Was the request successfull?
1922         if ((!eregi('200 OK', $response[0])) || (empty($response[0]))) {
1923                 // Not found / access forbidden
1924                 $response = array('', '', '');
1925         } // END - if
1926
1927         // Return response
1928         return $response;
1929 }
1930
1931 // Taken from www.php.net eregi() user comments
1932 function isEmailValid ($email) {
1933         // Check first part of email address
1934         $first = '[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*';
1935
1936         //  Check domain
1937         $domain = '[a-z0-9-]+(\.[a-z0-9-]{2,5})+';
1938
1939         // Generate pattern
1940         $regex = '@^' . $first . '\@' . $domain . '$@iU';
1941
1942         // Return check result
1943         return preg_match($regex, $email);
1944 }
1945
1946 // Function taken from user comments on www.php.net / function eregi()
1947 function isUrlValid ($URL, $compile=true) {
1948         // Trim URL a little
1949         $URL = trim(urldecode($URL));
1950         //* DEBUG: */ outputHtml($URL.'<br />');
1951
1952         // Compile some chars out...
1953         if ($compile === true) $URL = compileUriCode($URL, false, false, false);
1954         //* DEBUG: */ outputHtml($URL.'<br />');
1955
1956         // Check for the extension filter
1957         if (isExtensionActive('filter')) {
1958                 // Use the extension's filter set
1959                 return FILTER_VALIDATE_URL($URL, false);
1960         } // END - if
1961
1962         // If not installed, perform a simple test. Just make it sure there is always a http:// or
1963         // https:// in front of the URLs
1964         return isUrlValidSimple($URL);
1965 }
1966
1967 // Generate a list of administrative links to a given userid
1968 function generateMemberAdminActionLinks ($userid, $status = '') {
1969         // Make sure userid is a number
1970         if ($userid != bigintval($userid)) debug_report_bug('userid is not a number!');
1971
1972         // Define all main targets
1973         $targetArray = array('del_user', 'edit_user', 'lock_user', 'add_points', 'sub_points');
1974
1975         // Begin of navigation links
1976         $OUT = "[&nbsp;";
1977
1978         foreach ($targetArray as $tar) {
1979                 $OUT .= "<span class=\"admin_user_link\"><a href=\"{?URL?}/modules.php?module=admin&amp;what=" . $tar . "&amp;userid=" . $userid . "\" title=\"{--ADMIN_LINK_";
1980                 //* DEBUG: */ outputHtml("*" . $tar.'/' . $status."*<br />");
1981                 if (($tar == 'lock_user') && ($status == 'LOCKED')) {
1982                         // Locked accounts shall be unlocked
1983                         $OUT .= 'UNLOCK_USER';
1984                 } else {
1985                         // All other status is fine
1986                         $OUT .= strtoupper($tar);
1987                 }
1988                 $OUT .= "_TITLE--}\">{--ADMIN_";
1989                 if (($tar == 'lock_user') && ($status == 'LOCKED')) {
1990                         // Locked accounts shall be unlocked
1991                         $OUT .= 'UNLOCK_USER';
1992                 } else {
1993                         // All other status is fine
1994                         $OUT .= strtoupper($tar);
1995                 }
1996                 $OUT .= "--}</a></span>&nbsp;|&nbsp;";
1997         }
1998
1999         // Finish navigation link
2000         $OUT = substr($OUT, 0, -7) . ']';
2001
2002         // Return string
2003         return $OUT;
2004 }
2005
2006 // Generate an email link
2007 function generateEmailLink ($email, $table = 'admins') {
2008         // Default email link (INSECURE! Spammer can read this by harvester programs)
2009         $EMAIL = 'mailto:' . $email;
2010
2011         // Check for several extensions
2012         if ((isExtensionActive('admins')) && ($table == 'admins')) {
2013                 // Create email link for contacting admin in guest area
2014                 $EMAIL = generateAdminEmailLink($email);
2015         } elseif ((isExtensionActive('user')) && (getExtensionVersion('user') >= '0.3.3') && ($table == 'user_data')) {
2016                 // Create email link for contacting a member within admin area (or later in other areas, too?)
2017                 $EMAIL = generateUserEmailLink($email, 'admin');
2018         } elseif ((isExtensionActive('sponsor')) && ($table == 'sponsor_data')) {
2019                 // Create email link to contact sponsor within admin area (or like the link above?)
2020                 $EMAIL = generateSponsorEmailLink($email, 'sponsor_data');
2021         }
2022
2023         // Shall I close the link when there is no admin?
2024         if ((!isAdmin()) && ($EMAIL == $email)) $EMAIL = '#'; // Closed!
2025
2026         // Return email link
2027         return $EMAIL;
2028 }
2029
2030 // Generate a hash for extra-security for all passwords
2031 function generateHash ($plainText, $salt = '') {
2032         // Is the required extension 'sql_patches' there and a salt is not given?
2033         if (((isExtensionInstalledAndOlder('sql_patches', '0.3.6')) || (!isExtensionActive('sql_patches')) || (!isExtensionInstalledAndNewer('other', '0.2.5'))) && (empty($salt))) {
2034                 // Extension sql_patches is missing/outdated so we hash the plain text with MD5
2035                 return md5($plainText);
2036         } // END - if
2037
2038         // Do we miss an arry element here?
2039         if (!isConfigEntrySet('file_hash')) {
2040                 // Stop here
2041                 debug_report_bug('Missing file_hash in ' . __FUNCTION__ . '.');
2042         } // END - if
2043
2044         // When the salt is empty build a new one, else use the first x configured characters as the salt
2045         if (empty($salt)) {
2046                 // Build server string (inc/databases.php is no longer updated with every commit)
2047                 $server = $_SERVER['PHP_SELF'] . getConfig('ENCRYPT_SEPERATOR') . detectUserAgent() . getConfig('ENCRYPT_SEPERATOR') . getenv('SERVER_SOFTWARE') . getConfig('ENCRYPT_SEPERATOR') . detectRemoteAddr();
2048
2049                 // Build key string
2050                 $keys   = getConfig('SITE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('secret_key') . getConfig('ENCRYPT_SEPERATOR') . getConfig('file_hash') . getConfig('ENCRYPT_SEPERATOR') . date('d-m-Y (l-F-T)', getConfig('patch_ctime')) . getConfig('ENCRYPT_SEPERATOR') . getConfig('master_salt');
2051
2052                 // Additional data
2053                 $data = $plainText . getConfig('ENCRYPT_SEPERATOR') . uniqid(mt_rand(), true) . getConfig('ENCRYPT_SEPERATOR') . time();
2054
2055                 // Calculate number for generating the code
2056                 $a = time() + getConfig('_ADD') - 1;
2057
2058                 // Generate SHA1 sum from modula of number and the prime number
2059                 $sha1 = sha1(($a % getConfig('_PRIME')) . $server . getConfig('ENCRYPT_SEPERATOR') . $keys . getConfig('ENCRYPT_SEPERATOR') . $data . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . $a);
2060                 //* DEBUG: */ outputHtml("SHA1=" . $sha1." (".strlen($sha1).")<br />");
2061                 $sha1 = scrambleString($sha1);
2062                 //* DEBUG: */ outputHtml("Scrambled=" . $sha1." (".strlen($sha1).")<br />");
2063                 //* DEBUG: */ $sha1b = descrambleString($sha1);
2064                 //* DEBUG: */ outputHtml("Descrambled=" . $sha1b." (".strlen($sha1b).")<br />");
2065
2066                 // Generate the password salt string
2067                 $salt = substr($sha1, 0, getConfig('salt_length'));
2068                 //* DEBUG: */ outputHtml($salt." (".strlen($salt).")<br />");
2069         } else {
2070                 // Use given salt
2071                 //* DEBUG: */ print 'salt=' . $salt . '<br />';
2072                 $salt = substr($salt, 0, getConfig('salt_length'));
2073                 //* DEBUG: */ print 'salt=' . $salt . '(' . strlen($salt) . '/' . getConfig('salt_length') . ')<br />';
2074
2075                 // Sanity check on salt
2076                 if (strlen($salt) != getConfig('salt_length')) {
2077                         // Not the same!
2078                         debug_report_bug(__FUNCTION__.': salt length mismatch! ('.strlen($salt).'/'.getConfig('salt_length').')');
2079                 } // END - if
2080         }
2081
2082         // Return hash
2083         return $salt.sha1($salt . $plainText);
2084 }
2085
2086 // Scramble a string
2087 function scrambleString($str) {
2088         // Init
2089         $scrambled = '';
2090
2091         // Final check, in case of failture it will return unscrambled string
2092         if (strlen($str) > 40) {
2093                 // The string is to long
2094                 return $str;
2095         } elseif (strlen($str) == 40) {
2096                 // From database
2097                 $scrambleNums = explode(':', getConfig('pass_scramble'));
2098         } else {
2099                 // Generate new numbers
2100                 $scrambleNums = explode(':', genScrambleString(strlen($str)));
2101         }
2102
2103         // Scramble string here
2104         //* DEBUG: */ outputHtml("***Original=" . $str."***<br />");
2105         for ($idx = '0'; $idx < strlen($str); $idx++) {
2106                 // Get char on scrambled position
2107                 $char = substr($str, $scrambleNums[$idx], 1);
2108
2109                 // Add it to final output string
2110                 $scrambled .= $char;
2111         } // END - for
2112
2113         // Return scrambled string
2114         //* DEBUG: */ outputHtml("***Scrambled=" . $scrambled."***<br />");
2115         return $scrambled;
2116 }
2117
2118 // De-scramble a string scrambled by scrambleString()
2119 function descrambleString($str) {
2120         // Scramble only 40 chars long strings
2121         if (strlen($str) != 40) return $str;
2122
2123         // Load numbers from config
2124         $scrambleNums = explode(':', getConfig('pass_scramble'));
2125
2126         // Validate numbers
2127         if (count($scrambleNums) != 40) return $str;
2128
2129         // Begin descrambling
2130         $orig = str_repeat(' ', 40);
2131         //* DEBUG: */ outputHtml("+++Scrambled=" . $str."+++<br />");
2132         for ($idx = '0'; $idx < 40; $idx++) {
2133                 $char = substr($str, $idx, 1);
2134                 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
2135         } // END - for
2136
2137         // Return scrambled string
2138         //* DEBUG: */ outputHtml("+++Original=" . $orig."+++<br />");
2139         return $orig;
2140 }
2141
2142 // Generated a "string" for scrambling
2143 function genScrambleString ($len) {
2144         // Prepare array for the numbers
2145         $scrambleNumbers = array();
2146
2147         // First we need to setup randomized numbers from 0 to 31
2148         for ($idx = '0'; $idx < $len; $idx++) {
2149                 // Generate number
2150                 $rand = mt_rand(0, ($len -1));
2151
2152                 // Check for it by creating more numbers
2153                 while (array_key_exists($rand, $scrambleNumbers)) {
2154                         $rand = mt_rand(0, ($len -1));
2155                 } // END - while
2156
2157                 // Add number
2158                 $scrambleNumbers[$rand] = $rand;
2159         } // END - for
2160
2161         // So let's create the string for storing it in database
2162         $scrambleString = implode(':', $scrambleNumbers);
2163         return $scrambleString;
2164 }
2165
2166 // Generate an PGP-like encrypted hash of given hash for e.g. cookies
2167 function generatePassString ($passHash) {
2168         // Return vanilla password hash
2169         $ret = $passHash;
2170
2171         // Is a secret key and master salt already initialized?
2172         if ((isExtensionInstalled('sql_patches')) && (isExtensionInstalledAndNewer('other', '0.2.5')) && (isConfigEntrySet('_PRIME')) && (isConfigEntrySet('secret_key')) && (isConfigEntrySet('master_salt'))) {
2173                 // Only calculate when the secret key is generated
2174                 $newHash = ''; $start = 9;
2175                 for ($idx = '0'; $idx < 10; $idx++) {
2176                         $part1 = hexdec(substr($passHash, $start, 4));
2177                         $part2 = hexdec(substr(getConfig('secret_key'), $start, 4));
2178                         $mod = dechex($idx);
2179                         if ($part1 > $part2) {
2180                                 $mod = dechex(sqrt(($part1 - $part2) * getConfig('_PRIME') / pi()));
2181                         } elseif ($part2 > $part1) {
2182                                 $mod = dechex(sqrt(($part2 - $part1) * getConfig('_PRIME') / pi()));
2183                         }
2184                         $mod = substr($mod, 0, 4);
2185                         //* DEBUG: */ outputHtml('part1='.$part1.'/part2='.$part2.'/mod=' . $mod . '('.strlen($mod).')<br />');
2186                         $mod = str_repeat(0, (4 - strlen($mod))) . $mod;
2187                         //* DEBUG: */ outputHtml('*' . $start . '=' . $mod . '*<br />');
2188                         $start += 4;
2189                         $newHash .= $mod;
2190                 } // END - for
2191
2192                 //* DEBUG: */ print($passHash.'<br />' . $newHash." (".strlen($newHash).')<br />');
2193                 $ret = generateHash($newHash, getConfig('master_salt'));
2194                 //* DEBUG: */ print('ret='.$ret.'<br />');
2195         } else {
2196                 // Hash it simple
2197                 //* DEBUG: */ outputHtml("--" . $passHash."--<br />");
2198                 $ret = md5($passHash);
2199                 //* DEBUG: */ outputHtml("++" . $ret."++<br />");
2200         }
2201
2202         // Return result
2203         return $ret;
2204 }
2205
2206 // Fix "deleted" cookies
2207 function fixDeletedCookies ($cookies) {
2208         // Is this an array with entries?
2209         if ((is_array($cookies)) && (count($cookies) > 0)) {
2210                 // Then check all cookies if they are marked as deleted!
2211                 foreach ($cookies as $cookieName) {
2212                         // Is the cookie set to "deleted"?
2213                         if (getSession($cookieName) == 'deleted') {
2214                                 setSession($cookieName, '');
2215                         } // END - if
2216                 } // END - foreach
2217         } // END - if
2218 }
2219
2220 // Output error messages in a fasioned way and die...
2221 function app_die ($F, $L, $message) {
2222         // Check if Script is already dieing and not let it kill itself another 1000 times
2223         if (!isset($GLOBALS['app_died'])) {
2224                 // Make sure, that the script realy realy diese here and now
2225                 $GLOBALS['app_died'] = true;
2226
2227                 // Load header
2228                 loadIncludeOnce('inc/header.php');
2229
2230                 // Rewrite message for output
2231                 $message = sprintf(getMessage('MXCHANGE_HAS_DIED'), basename($F), $L, $message);
2232
2233                 // Better log this message away
2234                 logDebugMessage($F, $L, $message);
2235
2236                 // Load the message template
2237                 loadTemplate('admin_settings_saved', false, $message);
2238
2239                 // Load footer
2240                 loadIncludeOnce('inc/footer.php');
2241         } else {
2242                 // Script tried to kill itself twice
2243                 debug_report_bug('Script wanted to kill itself more than once! Raw message=' . $message . ', file/function=' . $F . ', line=' . $L);
2244         }
2245 }
2246
2247 // Display parsing time and number of SQL queries in footer
2248 function displayParsingTime() {
2249         // Is the timer started?
2250         if (!isset($GLOBALS['startTime'])) {
2251                 // Abort here
2252                 return false;
2253         } // END - if
2254
2255         // Get end time
2256         $endTime = microtime(true);
2257
2258         // "Explode" both times
2259         $start = explode(' ', $GLOBALS['startTime']);
2260         $end = explode(' ', $endTime);
2261         $runTime = $end[0] - $start[0];
2262         if ($runTime < 0) $runTime = '0';
2263
2264         // Prepare output
2265         $content = array(
2266                 'runtime'  => translateComma($runTime),
2267                 'timeSQLs' => translateComma(getConfig('sql_time') * 1000),
2268         );
2269
2270         // Load the template
2271         loadTemplate('show_timings', false, $content);
2272 }
2273
2274 // Check wether a boolean constant is set
2275 // Taken from user comments in PHP documentation for function constant()
2276 function isBooleanConstantAndTrue ($constName) { // : Boolean
2277         // Failed by default
2278         $res = false;
2279
2280         // In cache?
2281         if (isset($GLOBALS['cache_array']['const'][$constName])) {
2282                 // Use cache
2283                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-CACHE!<br />");
2284                 $res = ($GLOBALS['cache_array']['const'][$constName] === true);
2285         } else {
2286                 // Check constant
2287                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-RESOLVE!<br />");
2288                 if (defined($constName)) {
2289                         // Found!
2290                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-FOUND!<br />");
2291                         $res = (constant($constName) === true);
2292                 } // END - if
2293
2294                 // Set cache
2295                 $GLOBALS['cache_array']['const'][$constName] = $res;
2296         }
2297         //* DEBUG: */ var_dump($res);
2298
2299         // Return value
2300         return $res;
2301 }
2302
2303 // Checks if a given apache module is loaded
2304 function isApacheModuleLoaded ($apacheModule) {
2305         // Check it and return result
2306         return (((function_exists('apache_get_modules')) && (in_array($apacheModule, apache_get_modules()))) || (!function_exists('apache_get_modules')));
2307 }
2308
2309 // Get current theme name
2310 function getCurrentTheme () {
2311         // The default theme is 'default'... ;-)
2312         $ret = 'default';
2313
2314         // Do we have ext-theme installed and active?
2315         if (isExtensionActive('theme')) {
2316                 // Call inner method
2317                 $ret = getActualTheme();
2318         } // END - if
2319
2320         // Return theme value
2321         return $ret;
2322 }
2323
2324 // Generates an error code from given account status
2325 function generateErrorCodeFromUserStatus ($status='') {
2326         // If no status is provided, use the default, cached
2327         if ((empty($status)) && (isMember())) {
2328                 // Get user status
2329                 $status = getUserData('status');
2330         } // END - if
2331
2332         // Default error code if unknown account status
2333         $errorCode = getCode('UNKNOWN_STATUS');
2334
2335         // Generate constant name
2336         $codeName = sprintf("ID_%s", $status);
2337
2338         // Is the constant there?
2339         if (isCodeSet($codeName)) {
2340                 // Then get it!
2341                 $errorCode = getCode($codeName);
2342         } else {
2343                 // Unknown status
2344                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown error status %s detected.", $status));
2345         }
2346
2347         // Return error code
2348         return $errorCode;
2349 }
2350
2351 // Function to search for the last modifified file
2352 function searchDirsRecursive ($dir, &$last_changed) {
2353         // Get dir as array
2354         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):dir=" . $dir.'<br />');
2355         // Does it match what we are looking for? (We skip a lot files already!)
2356         // RegexPattern to exclude  ., .., .revision,  .svn, debug.log or .cache in the filenames
2357         $excludePattern = '@(\.revision|debug\.log|\.cache|config\.php)$@';
2358         $ds = getArrayFromDirectory($dir, '', true, false, array(), '.php', $excludePattern);
2359         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ds[]=".count($ds).'<br />');
2360
2361         // Walk through all entries
2362         foreach ($ds as $d) {
2363                 // Generate proper FQFN
2364                 $FQFN = str_replace('//', '/', getConfig('PATH') . $dir. '/'. $d);
2365
2366                 // Is it a file and readable?
2367                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):FQFN={$FQFN}<br />");
2368                 if (isDirectory($FQFN)) {
2369                         // $FQFN is a directory so also crawl into this directory
2370                         $newDir = $d;
2371                         if (!empty($dir)) $newDir = $dir . '/'. $d;
2372                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):DESCENT: " . $newDir.'<br />');
2373                         searchDirsRecursive($newDir, $last_changed);
2374                 } elseif (isFileReadable($FQFN)) {
2375                         // $FQFN is a filename and no directory
2376                         $time = filemtime($FQFN);
2377                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):File: " . $d." found. (".($last_changed['time'] - $time).")<br />");
2378                         if ($last_changed['time'] < $time) {
2379                                 // This file is newer as the file before
2380                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>) - NEWER!<br />");
2381                                 $last_changed['path_name'] = $FQFN;
2382                                 $last_changed['time'] = $time;
2383                         } // END - if
2384                 }
2385         } // END - foreach
2386 }
2387
2388 // "Getter" for revision/version data
2389 function getActualVersion ($type = 'Revision') {
2390         // By default nothing is new... ;-)
2391         $new = false;
2392
2393         // Is the cache entry there?
2394         if (isset($GLOBALS['cache_array']['revision'][$type])) {
2395                 // Found so increase cache hit
2396                 incrementStatsEntry('cache_hits');
2397
2398                 // Return it
2399                 return $GLOBALS['cache_array']['revision'][$type][0];
2400         } else {
2401                 // FQFN of revision file
2402                 $FQFN = sprintf("%s/.revision", getConfig('CACHE_PATH'));
2403
2404                 // Check if 'check_revision_data' is setted (switch for manually rewrite the .revision-File)
2405                 if ((isGetRequestElementSet('check_revision_data')) && (getRequestElement('check_revision_data') == 'yes')) {
2406                         // Forced rebuild of .revision file
2407                         $new = true;
2408                 } else {
2409                         // Check for revision file
2410                         if (!isFileReadable($FQFN)) {
2411                                 // Not found, so we need to create it
2412                                 $new = true;
2413                         } else {
2414                                 // Revision file found
2415                                 $ins_vers = explode("\n", readFromFile($FQFN));
2416
2417                                 // Get array for mapping information
2418                                 $mapper = array_flip(getSearchFor());
2419                                 //* DEBUG: */ print('<pre>mapper='.print_r($mapper, true).'</pre>ins_vers=<pre>'.print_r($ins_vers, true).'</pre>');
2420
2421                                 // Is the content valid?
2422                                 if ((!is_array($ins_vers)) || (count($ins_vers) <= 0) || (!isset($ins_vers[$mapper[$type]])) || (trim($ins_vers[$mapper[$type]]) == '') || ($ins_vers[0]) == 'new') {
2423                                         // File needs update!
2424                                         $new = true;
2425                                 } else {
2426                                         // Generate fake cache entry
2427                                         foreach ($mapper as $map => $idx) {
2428                                                 $GLOBALS['cache_array']['revision'][$map][0] = $ins_vers[$idx];
2429                                         } // END - foreach
2430
2431                                         // Return found value
2432                                         return trim($ins_vers[$mapper[$type]]);
2433                                 }
2434                         }
2435                 }
2436
2437                 // Has it been updated?
2438                 if ($new === true)  {
2439                         // Write it
2440                         writeToFile($FQFN, implode("\n", getArrayFromActualVersion()));
2441
2442                         // ... and call recursive
2443                         return getActualVersion($type);
2444                 } // END - if
2445         }
2446 }
2447
2448 // Repares an array we are looking for
2449 // The returned Array is needed twice (in getArrayFromActualVersion() and in getActualVersion() in the old .revision-fallback) so I puted it in an extra function to not polute the global namespace
2450 function getSearchFor () {
2451         // Add Revision, Date, Tag and Author
2452         $searchFor = array('Revision', 'Date', 'Tag', 'Author', 'File');
2453
2454         // Return the created array
2455         return $searchFor;
2456 }
2457
2458 // @TODO Please describe this function
2459 function getArrayFromActualVersion () {
2460         // Init variables
2461         $next_dir = '';
2462
2463         // Directory to start with search
2464         $last_changed = array(
2465                 'path_name' => '',
2466                 'time'      => 0
2467         );
2468
2469         // Init return array
2470         $akt_vers = array();
2471
2472         // Init value for counting the founded keywords
2473         $res = '0';
2474
2475         // Searches all Files and there date of the last modifikation and puts the newest File in $last_changed.
2476         searchDirsRecursive($next_dir, $last_changed); // @TODO small change to API to $last_changed = searchDirsRecursive($next_dir, $time);
2477
2478         // Get file
2479         $last_file = readFromFile($last_changed['path_name']);
2480
2481         // Get all the keywords to search for
2482         $searchFor = getSearchFor();
2483
2484         // This foreach loops the $searchFor-Tags (array('Revision', 'Date', 'Tag', 'Author') --> could easaly extended in the future)
2485         foreach ($searchFor as $search) {
2486                 // Searches for "$search-tag:VALUE$" or "$search-tag::VALUE$"(the stylish keywordversion ;-)) in the lates modified file
2487                 $res += preg_match('@\$' . $search.'(:|::) (.*) \$@U', $last_file, $t);
2488                 // This trimms the search-result and puts it in the $GLOBALS['cache_array']['revision']-return array
2489                 if (isset($t[2])) $GLOBALS['cache_array']['revision'][$search] = trim($t[2]);
2490         } // END - foreach
2491
2492         // Save the last-changed filename for debugging
2493         $GLOBALS['cache_array']['revision']['File'] = $last_changed['path_name'];
2494
2495         // at least 3 keyword-Tags are needed for propper values
2496         if ($res && $res >= 3
2497         && isset($GLOBALS['cache_array']['revision']['Revision']) && $GLOBALS['cache_array']['revision']['Revision'] != ''
2498         && isset($GLOBALS['cache_array']['revision']['Date']) && $GLOBALS['cache_array']['revision']['Date'] != ''
2499         && isset($GLOBALS['cache_array']['revision']['Tag']) && $GLOBALS['cache_array']['revision']['Tag'] != '') {
2500                 // Prepare content witch need special treadment
2501
2502                 // Prepare timestamp for date
2503                 preg_match('@(....)-(..)-(..) (..):(..):(..)@', $GLOBALS['cache_array']['revision']['Date'], $match_d);
2504                 $GLOBALS['cache_array']['revision']['Date'] = mktime($match_d[4], $match_d[5], $match_d[6], $match_d[2], $match_d[3], $match_d[1]);
2505
2506                 // Add author to the Tag if the author is set and is not quix0r (lead coder)
2507                 if ((isset($GLOBALS['cache_array']['revision']['Author'])) && ($GLOBALS['cache_array']['revision']['Author'] != 'quix0r')) {
2508                         $GLOBALS['cache_array']['revision']['Tag'] .= '-'.strtoupper($GLOBALS['cache_array']['revision']['Author']);
2509                 } // END - if
2510
2511         } else {
2512                 // No valid Data from the last modificated file so read the Revision from the Server. Fallback-solution!! Should not be removed I think.
2513                 $version = sendGetRequest('check-updates3.php');
2514
2515                 // Prepare content
2516                 // Only sets not setted or not proper values to the Online-Server-Fallback-Solution
2517                 if (!isset($GLOBALS['cache_array']['revision']['Revision']) || $GLOBALS['cache_array']['revision']['Revision'] == '') $GLOBALS['cache_array']['revision']['Revision'] = trim($version[10]);
2518                 if (!isset($GLOBALS['cache_array']['revision']['Date'])     || $GLOBALS['cache_array']['revision']['Date']     == '') $GLOBALS['cache_array']['revision']['Date']     = trim($version[9]);
2519                 if (!isset($GLOBALS['cache_array']['revision']['Tag'])      || $GLOBALS['cache_array']['revision']['Tag']      == '') $GLOBALS['cache_array']['revision']['Tag']      = trim($version[8]);
2520                 if (!isset($GLOBALS['cache_array']['revision']['Author'])   || $GLOBALS['cache_array']['revision']['Author']   == '') $GLOBALS['cache_array']['revision']['Author']   = 'quix0r';
2521                 if (!isset($GLOBALS['cache_array']['revision']['File'])     || $GLOBALS['cache_array']['revision']['File']     == '') $GLOBALS['cache_array']['revision']['File']     = trim($version[11]);
2522         }
2523
2524         // Return prepared array
2525         return $GLOBALS['cache_array']['revision'];
2526 }
2527
2528 // Back-ported from the new ship-simu engine. :-)
2529 function debug_get_printable_backtrace () {
2530         // Init variable
2531         $backtrace = "<ol>\n";
2532
2533         // Get and prepare backtrace for output
2534         $backtraceArray = debug_backtrace();
2535         foreach ($backtraceArray as $key => $trace) {
2536                 if (!isset($trace['file'])) $trace['file'] = __FUNCTION__;
2537                 if (!isset($trace['line'])) $trace['line'] = __LINE__;
2538                 if (!isset($trace['args'])) $trace['args'] = array();
2539                 $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";
2540         } // END - foreach
2541
2542         // Close it
2543         $backtrace .= "</ol>\n";
2544
2545         // Return the backtrace
2546         return $backtrace;
2547 }
2548
2549 // Output a debug backtrace to the user
2550 function debug_report_bug ($message = '') {
2551         // Is this already called?
2552         if (isset($GLOBALS[__FUNCTION__])) {
2553                 // Other backtrace
2554                 print 'Message:'.$message.'<br />Backtrace:<pre>';
2555                 debug_print_backtrace();
2556                 die('</pre>');
2557         } // END - if
2558
2559         // Set this function as called
2560         $GLOBALS[__FUNCTION__] = true;
2561
2562         // Init message
2563         $debug = '';
2564
2565         // Is the optional message set?
2566         if (!empty($message)) {
2567                 // Use and log it
2568                 $debug = sprintf("Note: %s<br />\n",
2569                         $message
2570                 );
2571
2572                 // @TODO Add a little more infos here
2573                 logDebugMessage(__FUNCTION__, __LINE__, strip_tags($message));
2574         } // END - if
2575
2576         // Add output
2577         $debug .= "Please report this bug at <a title=\"Direct link to the bug-tracker\" href=\"http://bugs.mxchange.org\" rel=\"external\" target=\"_blank\">bugs.mxchange.org</a> and include the logfile from <strong>" . str_replace(getConfig('PATH'), '', getConfig('CACHE_PATH')) . "debug.log</strong> in your report (you can now attach files):<pre>";
2578         $debug .= debug_get_printable_backtrace();
2579         $debug .= "</pre>\nRequest-URI: " . getRequestUri()."<br />\n";
2580         $debug .= "Thank you for finding bugs.";
2581
2582         // And abort here
2583         // @TODO This cannot be rewritten to app_die(), try to find a solution for this.
2584         die($debug);
2585 }
2586
2587 // Generates a ***weak*** seed
2588 function generateSeed () {
2589         return microtime(true) * 100000;
2590 }
2591
2592 // Converts a message code to a human-readable message
2593 function getMessageFromErrorCode ($code) {
2594         $message = '';
2595         switch ($code) {
2596                 case '': break;
2597                 case getCode('LOGOUT_DONE')      : $message = getMessage('LOGOUT_DONE'); break;
2598                 case getCode('LOGOUT_FAILED')    : $message = "<span class=\"guest_failed\">{--LOGOUT_FAILED--}</span>"; break;
2599                 case getCode('DATA_INVALID')     : $message = getMessage('MAIL_DATA_INVALID'); break;
2600                 case getCode('POSSIBLE_INVALID') : $message = getMessage('MAIL_POSSIBLE_INVALID'); break;
2601                 case getCode('ACCOUNT_LOCKED')   : $message = getMessage('MEMBER_ACCOUNT_LOCKED_UNC'); break;
2602                 case getCode('USER_404')         : $message = getMessage('USER_404'); break;
2603                 case getCode('STATS_404')        : $message = getMessage('MAIL_STATS_404'); break;
2604                 case getCode('ALREADY_CONFIRMED'): $message = getMessage('MAIL_ALREADY_CONFIRMED'); break;
2605                 case getCode('WRONG_PASS')       : $message = getMessage('LOGIN_WRONG_PASS'); break;
2606                 case getCode('WRONG_ID')         : $message = getMessage('LOGIN_WRONG_ID'); break;
2607                 case getCode('ID_LOCKED')        : $message = getMessage('LOGIN_ID_LOCKED'); break;
2608                 case getCode('ID_UNCONFIRMED')   : $message = getMessage('LOGIN_ID_UNCONFIRMED'); break;
2609                 case getCode('ID_GUEST')         : $message = getMessage('LOGIN_ID_GUEST'); break;
2610                 case getCode('NO_COOKIES')       : $message = getMessage('LOGIN_NO_COOKIES'); break;
2611                 case getCode('COOKIES_DISABLED') : $message = getMessage('LOGIN_NO_COOKIES'); break;
2612                 case getCode('BEG_SAME_AS_OWN')  : $message = getMessage('BEG_SAME_UID_AS_OWN'); break;
2613                 case getCode('LOGIN_FAILED')     : $message = getMessage('LOGIN_FAILED_GENERAL'); break;
2614                 case getCode('MODULE_MEM_ONLY')  : $message = sprintf(getMessage('MODULE_MEM_ONLY'), getRequestElement('mod')); break;
2615                 case getCode('OVERLENGTH')       : $message = getMessage('MEMBER_TEXT_OVERLENGTH'); break;
2616                 case getCode('URL_FOUND')        : $message = getMessage('MEMBER_TEXT_CONTAINS_URL'); break;
2617                 case getCode('SUBJ_URL')         : $message = getMessage('MEMBER_SUBJ_CONTAINS_URL'); break;
2618                 case getCode('BLIST_URL')        : $message = "{--MEMBER_URL_BLACK_LISTED--}<br />\n{--MEMBER_BLIST_TIME--}: ".generateDateTime(getRequestElement('blist'), 0); break;
2619                 case getCode('NO_RECS_LEFT')     : $message = getMessage('MEMBER_SELECTED_MORE_RECS'); break;
2620                 case getCode('INVALID_TAGS')     : $message = getMessage('MEMBER_HTML_INVALID_TAGS'); break;
2621                 case getCode('MORE_POINTS')      : $message = getMessage('MEMBER_MORE_POINTS_NEEDED'); break;
2622                 case getCode('MORE_RECEIVERS1')  : $message = getMessage('MEMBER_ENTER_MORE_RECEIVERS'); break;
2623                 case getCode('MORE_RECEIVERS2')  : $message = getMessage('MEMBER_NO_MORE_RECEIVERS_FOUND'); break;
2624                 case getCode('MORE_RECEIVERS3')  : $message = sprintf(getMessage('MEMBER_ENTER_MORE_MIN_RECEIVERS'), getConfig('order_min')); break;
2625                 case getCode('INVALID_URL')      : $message = getMessage('MEMBER_ENTER_INVALID_URL'); break;
2626
2627                 case getCode('ERROR_MAILID'):
2628                         if (isExtensionActive('mailid', true)) {
2629                                 $message = getMessage('ERROR_CONFIRMING_MAIL');
2630                         } else {
2631                                 $message = sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), 'mailid');
2632                         }
2633                         break;
2634
2635                 case getCode('EXTENSION_PROBLEM'):
2636                         if (isGetRequestElementSet('ext')) {
2637                                 $message = generateExtensionInactiveNotInstalledMessage(getRequestElement('ext'));
2638                         } else {
2639                                 $message = getMessage('EXTENSION_PROBLEM_UNSET_EXT');
2640                         }
2641                         break;
2642
2643                 case getCode('URL_TLOCK'):
2644                         $result = SQL_QUERY_ESC("SELECT `timestamp` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
2645                                 array(bigintval(getRequestElement('id'))), __FILE__, __LINE__);
2646
2647                         // Load timestamp from last order
2648                         list($timestamp) = SQL_FETCHROW($result);
2649                         $timestamp = generateDateTime($timestamp, 1);
2650
2651                         // Free memory
2652                         SQL_FREERESULT($result);
2653
2654                         // Calculate hours...
2655                         $STD = round(getConfig('url_tlock') / 60 / 60);
2656
2657                         // Minutes...
2658                         $MIN = round((getConfig('url_tlock') - $STD * 60 * 60) / 60);
2659
2660                         // And seconds
2661                         $SEC = getConfig('url_tlock') - $STD * 60 * 60 - $MIN * 60;
2662
2663                         // Finally contruct the message
2664                         // @TODO Rewrite this old lost code to a template
2665                         $message = "{--MEMBER_URL_TIME_LOCK--}<br />{--CONFIG_URL_TLOCK--} ".$STD."
2666                         {--_HOURS--}, ".$MIN." {--_MINUTES--} {--_AND--} ".$SEC." {--_SECONDS--}<br />
2667                         {--MEMBER_LAST_TLOCK--}: ".$timestamp;
2668                         break;
2669
2670                 default:
2671                         // Missing/invalid code
2672                         $message = sprintf(getMessage('UNKNOWN_MAILID_CODE'), $code);
2673
2674                         // Log it
2675                         logDebugMessage(__FUNCTION__, __LINE__, $message);
2676                         break;
2677         } // END - switch
2678
2679         // Return the message
2680         return $message;
2681 }
2682
2683 // Compile characters which are allowed in URLs
2684 function compileUriCode ($code, $simple = true) {
2685         // Compile constants
2686         if ($simple === false) $code = str_replace('{--', '".', str_replace('--}', '."', $code));
2687
2688         // Compile QUOT and other non-HTML codes
2689         $code = str_replace('{DOT}', '.',
2690                 str_replace('{SLASH}', '/',
2691                 str_replace('{QUOT}', "'",
2692                 str_replace('{DOLLAR}', '$',
2693                 str_replace('{OPEN_ANCHOR}', '(',
2694                 str_replace('{CLOSE_ANCHOR}', ')',
2695                 str_replace('{OPEN_SQR}', '[',
2696                 str_replace('{CLOSE_SQR}', ']',
2697                 str_replace('{PER}', '%',
2698                 $code
2699         )))))))));
2700
2701         // Return compiled code
2702         return $code;
2703 }
2704
2705 // Function taken from user comments on www.php.net / function eregi()
2706 function isUrlValidSimple ($url) {
2707         // Prepare URL
2708         $url = secureString(str_replace("\\", '', compileRawCode(urldecode($url))));
2709
2710         // Allows http and https
2711         $http      = "(http|https)+(:\/\/)";
2712         // Test domain
2713         $domain1   = "([[:alnum:]]([-[:alnum:]])*\.)?([[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})?";
2714         // Test double-domains (e.g. .de.vu)
2715         $domain2   = "([-[:alnum:]])?(\.[[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})(\.[[:alpha:]]{2,5})?";
2716         // Test IP number
2717         $ip        = "([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})";
2718         // ... directory
2719         $dir       = "((/)+([-_\.[:alnum:]])+)*";
2720         // ... page
2721         $page      = "/([-_[:alnum:]][-\._[:alnum:]]*\.[[:alnum:]]{2,5})?";
2722         // ... and the string after and including question character
2723         $getstring1 = "([\?/]([[:alnum:]][-\._%[:alnum:]]*(=)?([-\@\._:%[:alnum:]])+)(&([[:alnum:]]([-_%[:alnum:]])*(=)?([-\@\[\._:%[:alnum:]])+(\])*))*)?";
2724         // Pattern for URLs like http://url/dir/doc.html?var=value
2725         $pattern['d1dpg1']  = $http . $domain1 . $dir . $page . $getstring1;
2726         $pattern['d2dpg1']  = $http . $domain2 . $dir . $page . $getstring1;
2727         $pattern['ipdpg1']  = $http . $ip . $dir . $page . $getstring1;
2728         // Pattern for URLs like http://url/dir/?var=value
2729         $pattern['d1dg1']  = $http . $domain1 . $dir.'/' . $getstring1;
2730         $pattern['d2dg1']  = $http . $domain2 . $dir.'/' . $getstring1;
2731         $pattern['ipdg1']  = $http . $ip . $dir.'/' . $getstring1;
2732         // Pattern for URLs like http://url/dir/page.ext
2733         $pattern['d1dp']  = $http . $domain1 . $dir . $page;
2734         $pattern['d1dp']  = $http . $domain2 . $dir . $page;
2735         $pattern['ipdp']  = $http . $ip . $dir . $page;
2736         // Pattern for URLs like http://url/dir
2737         $pattern['d1d']  = $http . $domain1 . $dir;
2738         $pattern['d2d']  = $http . $domain2 . $dir;
2739         $pattern['ipd']  = $http . $ip . $dir;
2740         // Pattern for URLs like http://url/?var=value
2741         $pattern['d1g1']  = $http . $domain1 . '/' . $getstring1;
2742         $pattern['d2g1']  = $http . $domain2 . '/' . $getstring1;
2743         $pattern['ipg1']  = $http . $ip . '/' . $getstring1;
2744         // Pattern for URLs like http://url?var=value
2745         $pattern['d1g12']  = $http . $domain1 . $getstring1;
2746         $pattern['d2g12']  = $http . $domain2 . $getstring1;
2747         $pattern['ipg12']  = $http . $ip . $getstring1;
2748         // Test all patterns
2749         $reg = false;
2750         foreach ($pattern as $key => $pat) {
2751                 // Debug regex?
2752                 if (isDebugRegExpressionEnabled()) {
2753                         // @TODO Are these convertions still required?
2754                         $pat = str_replace('.', "&#92;&#46;", $pat);
2755                         $pat = str_replace('@', "&#92;&#64;", $pat);
2756                         //* DEBUG: */ outputHtml($key."=&nbsp;" . $pat . '<br />');
2757                 } // END - if
2758
2759                 // Check if expression matches
2760                 $reg = ($reg || preg_match(('^' . $pat.'^'), $url));
2761
2762                 // Does it match?
2763                 if ($reg === true) break;
2764         }
2765
2766         // Return true/false
2767         return $reg;
2768 }
2769
2770 // Wtites data to a config.php-style file
2771 // @TODO Rewrite this function to use readFromFile() and writeToFile()
2772 function changeDataInFile ($FQFN, $comment, $prefix, $suffix, $DATA, $seek=0) {
2773         // Initialize some variables
2774         $done = false;
2775         $seek++;
2776         $next  = -1;
2777         $found = false;
2778
2779         // Is the file there and read-/write-able?
2780         if ((isFileReadable($FQFN)) && (is_writeable($FQFN))) {
2781                 $search = 'CFG: ' . $comment;
2782                 $tmp = $FQFN . '.tmp';
2783
2784                 // Open the source file
2785                 $fp = fopen($FQFN, 'r') or outputHtml('<strong>READ:</strong> ' . $FQFN . '<br />');
2786
2787                 // Is the resource valid?
2788                 if (is_resource($fp)) {
2789                         // Open temporary file
2790                         $fp_tmp = fopen($tmp, 'w') or outputHtml('<strong>WRITE:</strong> ' . $tmp . '<br />');
2791
2792                         // Is the resource again valid?
2793                         if (is_resource($fp_tmp)) {
2794                                 // Mark temporary file as readable
2795                                 $GLOBALS['file_readable'][$tmp] = true;
2796
2797                                 // Start reading
2798                                 while (!feof($fp)) {
2799                                         // Read from source file
2800                                         $line = fgets ($fp, 1024);
2801
2802                                         if (strpos($line, $search) > -1) { $next = '0'; $found = true; }
2803
2804                                         if ($next > -1) {
2805                                                 if ($next === $seek) {
2806                                                         $next = -1;
2807                                                         $line = $prefix . $DATA . $suffix . "\n";
2808                                                 } else {
2809                                                         $next++;
2810                                                 }
2811                                         } // END - if
2812
2813                                         // Write to temp file
2814                                         fputs($fp_tmp, $line);
2815                                 } // END - while
2816
2817                                 // Close temp file
2818                                 fclose($fp_tmp);
2819
2820                                 // Finished writing tmp file
2821                                 $done = true;
2822                         } // END - if
2823
2824                         // Close source file
2825                         fclose($fp);
2826
2827                         if (($done === true) && ($found === true)) {
2828                                 // Copy back tmp file and delete tmp :-)
2829                                 copyFileVerified($tmp, $FQFN, 0644);
2830                                 return removeFile($tmp);
2831                         } elseif ($found === false) {
2832                                 outputHtml('<strong>CHANGE:</strong> 404!');
2833                         } else {
2834                                 outputHtml('<strong>TMP:</strong> UNDONE!');
2835                         }
2836                 }
2837         } else {
2838                 // File not found, not readable or writeable
2839                 outputHtml('<strong>404:</strong> ' . $FQFN . '<br />');
2840         }
2841
2842         // An error was detected!
2843         return false;
2844 }
2845 // Send notification to admin
2846 function sendAdminNotification ($subject, $templateName, $content=array(), $userid = '0') {
2847         if (isExtensionInstalledAndNewer('admins', '0.4.1')) {
2848                 // Send new way
2849                 sendAdminsEmails($subject, $templateName, $content, $userid);
2850         } else {
2851                 // Send out out-dated way
2852                 $message = loadEmailTemplate($templateName, $content, $userid);
2853                 sendAdminEmails($subject, $message);
2854         }
2855 }
2856
2857 // Debug message logger
2858 function logDebugMessage ($funcFile, $line, $message, $force=true) {
2859         // Is debug mode enabled?
2860         if ((isDebugModeEnabled()) || ($force === true)) {
2861                 // Remove CRLF
2862                 $message = str_replace("\r", '', str_replace("\n", '', $message));
2863
2864                 // Log this message away, we better don't call app_die() here to prevent an endless loop
2865                 $fp = fopen(getConfig('CACHE_PATH') . 'debug.log', 'a') or die(__FUNCTION__.'['.__LINE__.']: Cannot write logfile debug.log!');
2866                 fwrite($fp, date('d.m.Y|H:i:s', time()) . '|' . getModule(false) . '|' . basename($funcFile) . '|' . $line . '|' . $message . "\n");
2867                 fclose($fp);
2868         } // END - if
2869 }
2870
2871 // Handle extra values
2872 function handleExtraValues ($filterFunction, $value, $extraValue) {
2873         // Default is the value itself
2874         $ret = $value;
2875
2876         // Do we have a special filter function?
2877         if (!empty($filterFunction)) {
2878                 // Does the filter function exist?
2879                 if (function_exists($filterFunction)) {
2880                         // Do we have extra parameters here?
2881                         if (!empty($extraValue)) {
2882                                 // Put both parameters in one new array by default
2883                                 $args = array($value, $extraValue);
2884
2885                                 // If we have an array simply use it and pre-extend it with our value
2886                                 if (is_array($extraValue)) {
2887                                         // Make the new args array
2888                                         $args = merge_array(array($value), $extraValue);
2889                                 } // END - if
2890
2891                                 // Call the multi-parameter call-back
2892                                 $ret = call_user_func_array($filterFunction, $args);
2893                         } else {
2894                                 // One parameter call
2895                                 $ret = call_user_func($filterFunction, $value);
2896                         }
2897                 } // END - if
2898         } // END - if
2899
2900         // Return the value
2901         return $ret;
2902 }
2903
2904 // Converts timestamp selections into a timestamp
2905 function convertSelectionsToTimestamp (&$postData, &$DATA, &$id, &$skip) {
2906         // Init test variable
2907         $skip  = false;
2908         $test2 = '';
2909
2910         // Get last three chars
2911         $test = substr($id, -3);
2912
2913         // Improved way of checking! :-)
2914         if (in_array($test, array('_ye', '_mo', '_we', '_da', '_ho', '_mi', '_se'))) {
2915                 // Found a multi-selection for timings?
2916                 $test = substr($id, 0, -3);
2917                 if ((isset($postData[$test.'_ye'])) && (isset($postData[$test.'_mo'])) && (isset($postData[$test.'_we'])) && (isset($postData[$test.'_da'])) && (isset($postData[$test.'_ho'])) && (isset($postData[$test.'_mi'])) && (isset($postData[$test.'_se'])) && ($test != $test2)) {
2918                         // Generate timestamp
2919                         $postData[$test] = createTimestampFromSelections($test, $postData);
2920                         $DATA[] = sprintf("`%s`='%s'", $test, $postData[$test]);
2921                         $GLOBALS['skip_config'][$test] = true;
2922
2923                         // Remove data from array
2924                         foreach (array('ye', 'mo', 'we', 'da', 'ho', 'mi', 'se') as $rem) {
2925                                 unset($postData[$test . '_' . $rem]);
2926                         } // END - foreach
2927
2928                         // Skip adding
2929                         unset($id);
2930                         $skip = true;
2931                         $test2 = $test;
2932                 } // END - if
2933         } // END - if
2934 }
2935
2936 // Reverts the german decimal comma into Computer decimal dot
2937 function convertCommaToDot ($str) {
2938         // Default float is not a float... ;-)
2939         $float = false;
2940
2941         // Which language is selected?
2942         switch (getLanguage()) {
2943                 case 'de': // German language
2944                         // Remove german thousand dots first
2945                         $str = str_replace('.', '', $str);
2946
2947                         // Replace german commata with decimal dot and cast it
2948                         $float = (float)str_replace(',', '.', $str);
2949                         break;
2950
2951                 default: // US and so on
2952                         // Remove thousand dots first and cast
2953                         $float = (float)str_replace(',', '', $str);
2954                         break;
2955         }
2956
2957         // Return float
2958         return $float;
2959 }
2960
2961 // Handle menu-depending failed logins and return the rendered content
2962 function handleLoginFailtures ($accessLevel) {
2963         // Default output is empty ;-)
2964         $OUT = '';
2965
2966         // Is the session data set?
2967         if ((isSessionVariableSet('mxchange_' . $accessLevel.'_failures')) && (isSessionVariableSet('mxchange_' . $accessLevel.'_last_fail'))) {
2968                 // Ignore zero values
2969                 if (getSession('mxchange_' . $accessLevel.'_failures') > 0) {
2970                         // Non-guest has login failures found, get both data and prepare it for template
2971                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):accessLevel={$accessLevel}<br />");
2972                         $content = array(
2973                                 'login_failures' => getSession('mxchange_' . $accessLevel.'_failures'),
2974                                 'last_failure'   => generateDateTime(getSession('mxchange_' . $accessLevel.'_last_fail'), 2)
2975                         );
2976
2977                         // Load template
2978                         $OUT = loadTemplate('login_failures', true, $content);
2979                 } // END - if
2980
2981                 // Reset session data
2982                 setSession('mxchange_' . $accessLevel.'_failures', '');
2983                 setSession('mxchange_' . $accessLevel.'_last_fail', '');
2984         } // END - if
2985
2986         // Return rendered content
2987         return $OUT;
2988 }
2989
2990 // Rebuild cache
2991 function rebuildCacheFile ($cache, $inc = '', $force = false) {
2992         // Debug message
2993         /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, sprintf("cache=%s, inc=%s, force=%s", $cache, $inc, intval($force)));
2994
2995         // Shall I remove the cache file?
2996         if (isCacheInstanceValid()) {
2997                 // Rebuild cache
2998                 if ($GLOBALS['cache_instance']->loadCacheFile($cache)) {
2999                         // Destroy it
3000                         $GLOBALS['cache_instance']->removeCacheFile($force);
3001                 } // END - if
3002
3003                 // Include file given?
3004                 if (!empty($inc)) {
3005                         // Construct FQFN
3006                         $inc = sprintf("inc/loader/load_cache-%s.php", $inc);
3007
3008                         // Is the include there?
3009                         if (isIncludeReadable($inc)) {
3010                                 // And rebuild it from scratch
3011                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): inc={$inc} - LOADED!<br />");
3012                                 loadInclude($inc);
3013                         } else {
3014                                 // Include not found!
3015                                 logDebugMessage(__FUNCTION__, __LINE__, "Include {$inc} not found. cache={$cache}");
3016                         }
3017                 } // END - if
3018         } // END - if
3019 }
3020
3021 // Determines the real remote address
3022 function determineRealRemoteAddress () {
3023         // Is a proxy in use?
3024         if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
3025                 // Proxy was used
3026                 $address = $_SERVER['HTTP_X_FORWARDED_FOR'];
3027         } elseif (isset($_SERVER['HTTP_CLIENT_IP'])) {
3028                 // Yet, another proxy
3029                 $address = $_SERVER['HTTP_CLIENT_IP'];
3030         } else {
3031                 // The regular address when no proxy was used
3032                 $address = $_SERVER['REMOTE_ADDR'];
3033         }
3034
3035         // This strips out the real address from proxy output
3036         if (strstr($address, ',')) {
3037                 $addressArray = explode(',', $address);
3038                 $address = $addressArray[0];
3039         } // END - if
3040
3041         // Return the result
3042         return $address;
3043 }
3044
3045 // Adds a bonus mail to the queue
3046 // This is a high-level function!
3047 function addNewBonusMail ($data, $mode = '', $output=true) {
3048         // Use mode from data if not set and availble ;-)
3049         if ((empty($mode)) && (isset($data['mode']))) $mode = $data['mode'];
3050
3051         // Generate receiver list
3052         $RECEIVER = generateReceiverList($data['cat'], $data['receiver'], $mode);
3053
3054         // Receivers added?
3055         if (!empty($RECEIVER)) {
3056                 // Add bonus mail to queue
3057                 addBonusMailToQueue(
3058                 $data['subject'],
3059                 $data['text'],
3060                 $RECEIVER,
3061                 $data['points'],
3062                 $data['seconds'],
3063                 $data['url'],
3064                 $data['cat'],
3065                 $mode,
3066                 $data['receiver']
3067                 );
3068
3069                 // Mail inserted into bonus pool
3070                 if ($output) loadTemplate('admin_settings_saved', false, getMessage('ADMIN_BONUS_SEND'));
3071         } elseif ($output) {
3072                 // More entered than can be reached!
3073                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_MORE_SELECTED'));
3074         } else {
3075                 // Debug log
3076                 logDebugMessage(__FUNCTION__, __LINE__, "cat={$data['cat']},receiver={$data['receiver']},data=".base64_encode(serialize($data))." More selected, than available!");
3077         }
3078 }
3079
3080 // Determines referal id and sets it
3081 function determineReferalId () {
3082         // Skip this in non-html-mode and outside ref.php
3083         if ((getOutputMode() != 0) && (basename($_SERVER['PHP_SELF']) != 'ref.php')) return false;
3084
3085         // Check if refid is set
3086         if ((isset($GLOBALS['refid'])) && ($GLOBALS['refid'] > 0)) {
3087                 // This is fine...
3088         } elseif ((isGetRequestElementSet('user')) && (basename($_SERVER['PHP_SELF']) == 'click.php')) {
3089                 // The variable user comes from the click-counter script click.php and we only accept this here
3090                 $GLOBALS['refid'] = bigintval(getRequestElement('user'));
3091         } elseif (isPostRequestElementSet('refid')) {
3092                 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
3093                 $GLOBALS['refid'] = secureString(postRequestElement('refid'));
3094         } elseif (isGetRequestElementSet('refid')) {
3095                 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
3096                 $GLOBALS['refid'] = secureString(getRequestElement('refid'));
3097         } elseif (isGetRequestElementSet('ref')) {
3098                 // Set refid=ref (the referal link uses such variable)
3099                 $GLOBALS['refid'] = secureString(getRequestElement('ref'));
3100         } elseif ((isSessionVariableSet('refid')) && (getSession('refid') != 0)) {
3101                 // Set session refid als global
3102                 $GLOBALS['refid'] = bigintval(getSession('refid'));
3103         } elseif ((isExtensionInstalledAndNewer('user', '0.3.4')) && (getConfig('select_user_zero_refid') == 'Y')) {
3104                 // Select a random user which has confirmed enougth mails
3105                 $GLOBALS['refid'] = determineRandomReferalId();
3106         } elseif ((isExtensionInstalled('sql_patches')) && (getConfig('def_refid') > 0)) {
3107                 // Set default refid as refid in URL
3108                 $GLOBALS['refid'] = getConfig('def_refid');
3109         } else {
3110                 // No default id when sql_patches is not installed or none set
3111                 $GLOBALS['refid'] = '0';
3112         }
3113
3114         // Set cookie when default refid > 0
3115         if (!isSessionVariableSet('refid') || (!empty($GLOBALS['refid'])) || ((getSession('refid') == '0') && (isConfigEntrySet('def_refid')) && (getConfig('def_refid') > 0))) {
3116                 // Default is not found
3117                 $found = false;
3118
3119                 // Do we have nickname or userid set?
3120                 if ((isExtensionActive('nickname')) && (isNicknameUsed($GLOBALS['refid']))) {
3121                         // Nickname in URL, so load the id
3122                         $found = fetchUserData($GLOBALS['refid'], 'nickname');
3123                 } elseif ($GLOBALS['refid'] > 0) {
3124                         // Direct userid entered
3125                         $found = fetchUserData($GLOBALS['refid']);
3126                 }
3127
3128                 // Is the record valid?
3129                 if ((($found === false) || (!isUserDataValid())) && (isConfigEntrySet('def_refid'))) {
3130                         // No, then reset referal id
3131                         $GLOBALS['refid'] = getConfig('def_refid');
3132                 } // END - if
3133
3134                 // Set cookie
3135                 setSession('refid', $GLOBALS['refid']);
3136         } // END - if
3137
3138         // Return determined refid
3139         return $GLOBALS['refid'];
3140 }
3141
3142 // Enables the reset mode and runs it
3143 function doReset () {
3144         // Enable the reset mode
3145         $GLOBALS['reset_enabled'] = true;
3146
3147         // Run filters
3148         runFilterChain('reset');
3149 }
3150
3151 // Our shutdown-function
3152 function shutdown () {
3153         // Call the filter chain 'shutdown'
3154         runFilterChain('shutdown', null);
3155
3156         if (SQL_IS_LINK_UP()) {
3157                 // Close link
3158                 SQL_CLOSE(__FILE__, __LINE__);
3159         } elseif (!isInstallationPhase()) {
3160                 // No database link
3161                 addFatalMessage(__FILE__, __LINE__, getMessage('NO_DB_LINK_SHUTDOWN'));
3162         }
3163
3164         // Stop executing here
3165         exit;
3166 }
3167
3168 // Init member id
3169 function initMemberId () {
3170         $GLOBALS['member_id'] = '0';
3171 }
3172
3173 // Setter for member id
3174 function setMemberId ($memberid) {
3175         // We should not set member id to zero
3176         if ($memberid == '0') debug_report_bug('Userid should not be set zero.');
3177
3178         // Set it secured
3179         $GLOBALS['member_id'] = bigintval($memberid);
3180 }
3181
3182 // Getter for member id or returns zero
3183 function getMemberId () {
3184         // Default member id
3185         $memberid = '0';
3186
3187         // Is the member id set?
3188         if (isMemberIdSet()) {
3189                 // Then use it
3190                 $memberid = $GLOBALS['member_id'];
3191         } // END - if
3192
3193         // Return it
3194         return $memberid;
3195 }
3196
3197 // Checks ether the member id is set
3198 function isMemberIdSet () {
3199         return (isset($GLOBALS['member_id']));
3200 }
3201
3202 // Handle message codes from URL
3203 function handleCodeMessage () {
3204         if (isGetRequestElementSet('code')) {
3205                 // Default extension is 'unknown'
3206                 $ext = 'unknown';
3207
3208                 // Is extension given?
3209                 if (isGetRequestElementSet('ext')) $ext = getRequestElement('ext');
3210
3211                 // Convert the 'code' parameter from URL to a human-readable message
3212                 $message = getMessageFromErrorCode(getRequestElement('code'));
3213
3214                 // Load message template
3215                 loadTemplate('message', false, $message);
3216         } // END - if
3217 }
3218
3219 // Setter for extra title
3220 function setExtraTitle ($extraTitle) {
3221         $GLOBALS['extra_title'] = $extraTitle;
3222 }
3223
3224 // Getter for extra title
3225 function getExtraTitle () {
3226         // Is the extra title set?
3227         if (!isExtraTitleSet()) {
3228                 // No, then abort here
3229                 debug_report_bug('extra_title is not set!');
3230         } // END - if
3231
3232         // Return it
3233         return $GLOBALS['extra_title'];
3234 }
3235
3236 // Checks if the extra title is set
3237 function isExtraTitleSet () {
3238         return ((isset($GLOBALS['extra_title'])) && (!empty($GLOBALS['extra_title'])));
3239 }
3240
3241 // Generates a 'extension foo inactive' message
3242 function generateExtensionInactiveMessage ($ext_name) {
3243         // Is the extension empty?
3244         if (empty($ext_name)) {
3245                 // This should not happen
3246                 debug_report_bug(__FUNCTION__ . ': Parameter ext is empty. This should not happen.');
3247         } // END - if
3248
3249         // Default message
3250         $message = sprintf(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), $ext_name);
3251
3252         // Is an admin logged in?
3253         if (isAdmin()) {
3254                 // Then output admin message
3255                 $message = sprintf(getMessage('ADMIN_EXTENSION_PROBLEM_EXT_INACTIVE'), $ext_name);
3256         } // END - if
3257
3258         // Return prepared message
3259         return $message;
3260 }
3261
3262 // Generates a 'extension foo not installed' message
3263 function generateExtensionNotInstalledMessage ($ext_name) {
3264         // Is the extension empty?
3265         if (empty($ext_name)) {
3266                 // This should not happen
3267                 debug_report_bug(__FUNCTION__ . ': Parameter ext is empty. This should not happen.');
3268         } // END - if
3269
3270         // Default message
3271         $message = sprintf(getMessage('EXTENSION_PROBLEM_EXT_NOT_INSTALLED'), $ext_name);
3272
3273         // Is an admin logged in?
3274         if (isAdmin()) {
3275                 // Then output admin message
3276                 $message = sprintf(getMessage('ADMIN_EXTENSION_PROBLEM_EXT_NOT_INSTALLED'), $ext_name);
3277         } // END - if
3278
3279         // Return prepared message
3280         return $message;
3281 }
3282
3283 // Generates a message depending on if the extension is not installed or not
3284 // just activated
3285 function generateExtensionInactiveNotInstalledMessage ($ext_name) {
3286         // Init message
3287         $message = '';
3288
3289         // Is the extension not installed or just deactivated?
3290         switch (isExtensionInstalled($ext_name)) {
3291                 case true; // Deactivated!
3292                         $message = generateExtensionInactiveMessage($ext_name);
3293                         break;
3294
3295                 case false; // Not installed!
3296                         $message = generateExtensionNotInstalledMessage($ext_name);
3297                         break;
3298
3299                 default: // Should not happen!
3300                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid state of extension %s detected.", $ext_name));
3301                         $message = sprintf("Invalid state of extension %s detected.", $ext_name);
3302                         break;
3303         } // END - switch
3304
3305         // Return the message
3306         return $message;
3307 }
3308
3309 // Reads a directory recursively by default and searches for files not matching
3310 // an exclusion pattern. You can now keep the exclusion pattern empty for reading
3311 // a whole directory.
3312 function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = false, $addBaseDir = true, $excludeArray = array(), $extension = '.php', $excludePattern = '@(\.|\.\.)$@', $recursive = true) {
3313         // Add default entries we should exclude
3314         $excludeArray[] = '.';
3315         $excludeArray[] = '..';
3316         $excludeArray[] = '.svn';
3317         $excludeArray[] = '.htaccess';
3318
3319         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix} - Entered!");
3320         // Init includes
3321         $files = array();
3322
3323         // Open directory
3324         $dirPointer = opendir(getConfig('PATH') . $baseDir) or app_die(__FUNCTION__, __LINE__, 'Cannot read directory ' . basename($baseDir) . '.');
3325
3326         // Read all entries
3327         while ($baseFile = readdir($dirPointer)) {
3328                 // Exclude '.', '..' and entries in $excludeArray automatically
3329                 if (in_array($baseFile, $excludeArray, true))  {
3330                         // Exclude them
3331                         //* DEBUG: */ outputHtml('excluded=' . $baseFile . '<br />');
3332                         continue;
3333                 } // END - if
3334
3335                 // Construct include filename and FQFN
3336                 $fileName = $baseDir . $baseFile;
3337                 $FQFN = getConfig('PATH') . $fileName;
3338
3339                 // Remove double slashes
3340                 $FQFN = str_replace('//', '/', $FQFN);
3341
3342                 // Check if the base filename matches an exclusion pattern and if the pattern is not empty
3343                 if ((!empty($excludePattern)) && (preg_match($excludePattern, $baseFile, $match))) {
3344                         // These Lines are only for debugging!!
3345                         //* DEBUG: */ outputHtml('baseDir:' . $baseDir . '<br />');
3346                         //* DEBUG: */ outputHtml('baseFile:' . $baseFile . '<br />');
3347                         //* DEBUG: */ outputHtml('FQFN:' . $FQFN . '<br />');
3348
3349                         // Exclude this one
3350                         continue;
3351                 } // END - if
3352
3353                 // Skip also files with non-matching prefix genericly
3354                 if (($recursive === true) && (isDirectory($FQFN))) {
3355                         // Is a redirectory so read it as well
3356                         $files = merge_array($files, getArrayFromDirectory($baseDir . $baseFile . '/', $prefix, $fileIncludeDirs, $addBaseDir, $excludeArray, $extension, $excludePattern, $recursive));
3357
3358                         // And skip further processing
3359                         continue;
3360                 } elseif (substr($baseFile, 0, strlen($prefix)) != $prefix) {
3361                         // Skip this file
3362                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Invalid prefix in file " . $baseFile . ", prefix=" . $prefix);
3363                         continue;
3364                 } elseif (!isFileReadable($FQFN)) {
3365                         // Not readable so skip it
3366                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "File " . $FQFN . " is not readable!");
3367                         continue;
3368                 }
3369
3370                 // Is the file a PHP script or other?
3371                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix},baseFile={$baseFile}");
3372                 if ((substr($baseFile, -4, 4) == '.php') || (($fileIncludeDirs === true) && (isDirectory($FQFN)))) {
3373                         // Is this a valid include file?
3374                         if ($extension == '.php') {
3375                                 // Remove both for extension name
3376                                 $extName = substr($baseFile, strlen($prefix), -4);
3377
3378                                 // Is the extension valid and active?
3379                                 if (isExtensionNameValid($extName)) {
3380                                         // Then add this file
3381                                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Extension entry ' . $baseFile . ' added.');
3382                                         $files[] = $fileName;
3383                                 } else {
3384                                         // Add non-extension files as well
3385                                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Regular entry ' . $baseFile . ' added.');
3386                                         if ($addBaseDir === true) {
3387                                                 $files[] = $fileName;
3388                                         } else {
3389                                                 $files[] = $baseFile;
3390                                         }
3391                                 }
3392                         } else {
3393                                 // We found .php file but should not search for them, why?
3394                                 debug_report_bug('We should find files with extension=' . $extension . ', but we found a PHP script.');
3395                         }
3396                 } elseif (substr($baseFile, -4, 4) == $extension) {
3397                         // Other, generic file found
3398                         $files[] = $fileName;
3399                 }
3400         } // END - while
3401
3402         // Close directory
3403         closedir($dirPointer);
3404
3405         // Sort array
3406         asort($files);
3407
3408         // Return array with include files
3409         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '- Left!');
3410         return $files;
3411 }
3412
3413 // Maps a module name into a database table name
3414 function mapModuleToTable ($moduleName) {
3415         // Map only these, still lame code...
3416         switch ($moduleName) {
3417                 // 'index' is the guest's menu
3418                 case 'index': $moduleName = 'guest';  break;
3419                 // ... and 'login' the member's menu
3420                 case 'login': $moduleName = 'member'; break;
3421                 // Anything else will not be mapped, silently.
3422         } // END - switch
3423
3424         // Return result
3425         return $moduleName;
3426 }
3427
3428 // Add SQL debug data to array for later output
3429 function addSqlToDebug ($result, $sqlString, $timing, $F, $L) {
3430         // Already executed?
3431         if (isset($GLOBALS['debug_sqls'][$F][$L][$sqlString])) {
3432                 // Then abort here, we don't need to profile a query twice
3433                 return;
3434         } // END - if
3435
3436         // Remeber this as profiled (or not, but we don't care here)
3437         $GLOBALS['debug_sqls'][$F][$L][$sqlString] = true;
3438
3439         // Do we have cache?
3440         if (!isset($GLOBALS['debug_sql_available'])) {
3441                 // Check it and cache it in $GLOBALS
3442                 $GLOBALS['debug_sql_available'] = ((isConfigurationLoaded()) && (isExtensionInstalledAndNewer('other', '0.2.2')) && (getConfig('display_debug_sqls') == 'Y'));
3443         } // END - if
3444         
3445         // Don't execute anything here if we don't need or ext-other is missing
3446         if ($GLOBALS['debug_sql_available'] === false) {
3447                 return;
3448         } // END - if
3449
3450         // Generate record
3451         $record = array(
3452                 'num_rows' => SQL_NUMROWS($result),
3453                 'affected' => SQL_AFFECTEDROWS(),
3454                 'sql_str'  => $sqlString,
3455                 'timing'   => $timing,
3456                 'file'     => basename($F),
3457                 'line'     => $L
3458         );
3459
3460         // Add it
3461         $GLOBALS['debug_sqls'][] = $record;
3462 }
3463
3464 // Initializes the cache instance
3465 function initCacheInstance () {
3466         // Load include for CacheSystem class
3467         loadIncludeOnce('inc/classes/cachesystem.class.php');
3468
3469         // Initialize cache system only when it's needed
3470         $GLOBALS['cache_instance'] = new CacheSystem();
3471         if ($GLOBALS['cache_instance']->getStatus() != 'done') {
3472                 // Failed to initialize cache sustem
3473                 addFatalMessage(__FILE__, __LINE__, '(<font color="#0000aa">' . __LINE__ . '</font>): ' . getMessage('CACHE_CANNOT_INITIALIZE'));
3474         } // END - if
3475 }
3476
3477 // Getter for message from array or raw message
3478 function getMessageFromIndexedArray ($message, $pos, $array) {
3479         // Check if the requested message was found in array
3480         if (isset($array[$pos])) {
3481                 // ... if yes then use it!
3482                 $ret = $array[$pos];
3483         } else {
3484                 // ... else use default message
3485                 $ret = $message;
3486         }
3487
3488         // Return result
3489         return $ret;
3490 }
3491
3492 // Print code with line numbers
3493 function linenumberCode ($code)    {
3494         if (!is_array($code)) $codeE = explode("\n", $code); else $codeE = $code;
3495         $count_lines = count($codeE);
3496
3497         $r = 'Line | Code:<br />';
3498         foreach($codeE as $line => $c) {
3499                 $r .= '<div class="line"><span class="linenum">';
3500                 if ($count_lines == 1) {
3501                         $r .= 1;
3502                 } else {
3503                         $r .= ($line == ($count_lines - 1)) ? '' :  ($line+1);
3504                 }
3505                 $r .= '</span>|';
3506
3507                 // Add code
3508                 $r .= '<span class="linetext">' . htmlentities($c) . '</span></div>';
3509         }
3510
3511         return '<div class="code">' . $r . '</div>';
3512 }
3513
3514 // Convert ';' to ', ' for e.g. receiver list
3515 function convertReceivers ($old) {
3516         return str_replace(';', ', ', $old);
3517 }
3518
3519 // Determines the right page title
3520 function determinePageTitle () {
3521         // Config and database connection valid?
3522         if ((isConfigLocalLoaded()) && (isConfigurationLoaded()) && (SQL_IS_LINK_UP()) && (isExtensionInstalledAndNewer('sql_patches', '0.1.6'))) {
3523                 // Init title
3524                 $TITLE = '';
3525
3526                 // Title decoration enabled?
3527                 if ((getConfig('enable_title_deco') == 'Y') && (getConfig('title_left') != '')) $TITLE .= trim(getConfig('title_left'))." ";
3528
3529                 // Do we have some extra title?
3530                 if (isExtraTitleSet()) {
3531                         // Then prepent it
3532                         $TITLE .= getExtraTitle() . ' by ';
3533                 } // END - if
3534
3535                 // Add main title
3536                 $TITLE .= getConfig('MAIN_TITLE');
3537
3538                 // Add title of module? (middle decoration will also be added!)
3539                 if ((getConfig('enable_mod_title') == 'Y') || ((!isWhatSet()) && (!isActionSet())) || (getModule() == 'admin')) {
3540                         $TITLE .= ' ' . trim(getConfig('title_middle')) . ' ' . getModuleTitle(getModule());
3541                 } // END - if
3542
3543                 // Add title from what file
3544                 $mode = '';
3545                 if (getModule() == 'login') $mode = 'member';
3546                 elseif (getModule() == 'index') $mode = 'guest';
3547                 if ((!empty($mode)) && (getConfig('enable_what_title') == 'Y')) $TITLE .= ' ' . trim(getConfig('title_middle')) . ' ' . getTitleFromMenu($mode, getWhat());
3548
3549                 // Add title decorations? (right)
3550                 if ((getConfig('enable_title_deco') == 'Y') && (getConfig('title_right') != '')) $TITLE .= ' ' . trim(getConfig('title_right'));
3551
3552                 // Remember title in constant for the template
3553                 $pageTitle = $TITLE;
3554         } elseif ((isInstalled()) && (isAdminRegistered())) {
3555                 // Installed, admin registered but no ext-sql_patches
3556                 $pageTitle = '[-- ' . getConfig('MAIN_TITLE').' - '.getModuleTitle(getModule()) . ' --]';
3557         } elseif ((isInstalled()) && (!isAdminRegistered())) {
3558                 // Installed but no admin registered
3559                 $pageTitle = sprintf(getMessage('SETUP_OF_MXCHANGE'), getConfig('MAIN_TITLE'));
3560         } elseif ((!isInstalled()) || (!isAdminRegistered())) {
3561                 // Installation mode
3562                 $pageTitle = getMessage('INSTALLATION_OF_MXCHANGE');
3563         } else {
3564                 // Configuration not found!
3565                 $pageTitle = getMessage('NO_CONFIG_FOUND_TITLE');
3566
3567                 // Do not add the fatal message in installation mode
3568                 if ((!isInstalling()) && (!isConfigurationLoaded())) addFatalMessage(__FILE__, __LINE__, getMessage('NO_CONFIG_FOUND'));
3569         }
3570
3571         // Return title
3572         return $pageTitle;
3573 }
3574
3575 // Checks wethere there is a cache file there. This function is cached.
3576 function isTemplateCached ($template) {
3577         // Do we have cached this result?
3578         if (!isset($GLOBALS['template_cache'][$template])) {
3579                 // Generate FQFN
3580                 $FQFN = sprintf("%s_compiled/templates/%s.tpl.cache", getConfig('CACHE_PATH'), $template);
3581
3582                 // Is it there?
3583                 $GLOBALS['template_cache'][$template] = isFileReadable($FQFN);
3584         } // END - if
3585
3586         // Return it
3587         return $GLOBALS['template_cache'][$template];
3588 }
3589
3590 // Flushes non-flushed template cache to disk
3591 function flushTemplateCache ($template, $eval) {
3592         // Is this cache flushed?
3593         if ((isDebuggingTemplateCache() === false) && (isTemplateCached($template) === false) && ($eval != '404')) {
3594                 // Generate FQFN
3595                 $FQFN = sprintf("%s_compiled/templates/%s.tpl.cache", getConfig('CACHE_PATH'), $template);
3596
3597                 // Replace username with a call
3598                 $eval = str_replace('$username', '".getUsername()."', $eval);
3599
3600                 // And flush it
3601                 writeToFile($FQFN, $eval, true);
3602         } // END - if
3603 }
3604
3605 // Reads a template cache
3606 function readTemplateCache ($template) {
3607         // Check it again
3608         if ((isDebuggingTemplateCache() === false) && (isTemplateCached($template))) {
3609                 // Generate FQFN
3610                 $FQFN = sprintf("%s_compiled/templates/%s.tpl.cache", getConfig('CACHE_PATH'), $template);
3611
3612                 // And read from it
3613                 $GLOBALS['template_eval'][$template] = readFromFile($FQFN);
3614         } // END - if
3615
3616         // And return it
3617         return $GLOBALS['template_eval'][$template];
3618 }
3619
3620 // Escapes quotes (default is only double-quotes)
3621 function escapeQuotes ($str, $single = false) {
3622         // Should we escape all?
3623         if ($single === true) {
3624                 // Escape all (including null)
3625                 $str = addslashes($str);
3626         } else {
3627                 // Escape only double-quotes but prevent double-quoting
3628                 $str = str_replace("\\\\", "\\", str_replace('"', "\\\"", $str));
3629         }
3630
3631         // Return the escaped string
3632         return $str;
3633 }
3634
3635 // Escapes the JavaScript code, prevents \r and \n becoming char 10/13
3636 function escapeJavaScriptQuotes ($str) {
3637         // Replace all double-quotes and secure back-ticks
3638         $str = str_replace('"', '\"', str_replace("\\", '{BACK}', $str));
3639
3640         // Return it
3641         return $str;
3642 }
3643
3644 // Send out mails depending on the 'mod/modes' combination
3645 // @TODO Lame description for this function
3646 function sendModeMails ($mod, $modes) {
3647         // Load hash
3648         if (fetchUserData(getMemberId())) {
3649                 // Extract salt from cookie
3650                 $salt = substr(getSession('u_hash'), 0, -40);
3651
3652                 // Now let's compare passwords
3653                 $hash = generatePassString(getUserData('password'));
3654
3655                 // Does the hash match or should we change it?
3656                 if (($hash == getSession('u_hash')) || (postRequestElement('pass1') == postRequestElement('pass2'))) {
3657                         // Load the data
3658                         $content = getUserDataArray();
3659
3660                         // Translate gender
3661                         $content['gender'] = translateGender($content['gender']);
3662
3663                         // Clear/init the content variable
3664                         $content['message'] = '';
3665
3666                         // Which mail?
3667                         // @TODO Move this in a filter
3668                         switch ($mod) {
3669                                 case 'mydata':
3670                                         foreach ($modes as $mode) {
3671                                                 switch ($mode) {
3672                                                         case 'normal': break; // Do not add any special lines
3673                                                         case 'email': // Email was changed!
3674                                                                 $content['message'] = getMessage('MEMBER_CHANGED_EMAIL').": ".postRequestElement('old_email')."\n";
3675                                                                 break;
3676
3677                                                         case 'pass': // Password was changed
3678                                                                 $content['message'] = getMessage('MEMBER_CHANGED_PASS')."\n";
3679                                                                 break;
3680
3681                                                         default:
3682                                                                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown mode %s detected.", $mode));
3683                                                                 $content['message'] = getMessage('MEMBER_UNKNOWN_MODE') . ': ' . $mode . "\n\n";
3684                                                                 break;
3685                                                 } // END - switch
3686                                         } // END - foreach
3687
3688                                         if (isExtensionActive('country')) {
3689                                                 // Replace code with description
3690                                                 $content['country'] = generateCountryInfo(postRequestElement('country_code'));
3691                                         } // END - if
3692
3693                                         // Merge content with data from POST
3694                                         $content = merge_array($content, postRequestArray());
3695
3696                                         // Load template
3697                                         $message = loadEmailTemplate('member_mydata_notify', $content, getMemberId());
3698
3699                                         if (getConfig('admin_notify') == 'Y') {
3700                                                 // The admin needs to be notified about a profile change
3701                                                 $message_admin = 'admin_mydata_notify';
3702                                                 $sub_adm   = getMessage('ADMIN_CHANGED_DATA');
3703                                         } else {
3704                                                 // No mail to admin
3705                                                 $message_admin = '';
3706                                                 $sub_adm   = '';
3707                                         }
3708
3709                                         // Set subject lines
3710                                         $sub_mem = getMessage('MEMBER_CHANGED_DATA');
3711
3712                                         // Output success message
3713                                         $content = "<span class=\"member_done\">{--MYDATA_MAIL_SENT--}</span>";
3714                                         break;
3715
3716                                 default: // Unsupported module!
3717                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unsupported module %s detected.", $mod));
3718                                         $content = "<span class=\"member_failed\">{--UNKNOWN_MODULE--}</span>";
3719                                         break;
3720                         } // END - switch
3721                 } else {
3722                         // Passwords mismatch
3723                         $content = "<span class=\"member_failed\">{--MEMBER_PASSWORD_ERROR--}</span>";
3724                 }
3725         } else {
3726                 // Could not load profile
3727                 $content = "<span class=\"member_failed\">{--MEMBER_CANNOT_LOAD_PROFILE--}</span>";
3728         }
3729
3730         // Send email to user if required
3731         if ((!empty($sub_mem)) && (!empty($message))) {
3732                 // Send member mail
3733                 sendEmail($content['email'], $sub_mem, $message);
3734         } // END - if
3735
3736         // Send only if no other error has occured
3737         if (empty($content)) {
3738                 if ((!empty($sub_adm)) && (!empty($message_admin))) {
3739                         // Send admin mail
3740                         sendAdminNotification($sub_adm, $message_admin, $content, getMemberId());
3741                 } elseif (getConfig('admin_notify') == 'Y') {
3742                         // Cannot send mails to admin!
3743                         $content = getMessage('CANNOT_SEND_ADMIN_MAILS');
3744                 } else {
3745                         // No mail to admin
3746                         $content = "<span class=\"member_done\">{--MYDATA_MAIL_SENT--}</span>";
3747                 }
3748         } // END - if
3749
3750         // Load template
3751         loadTemplate('admin_settings_saved', false, $content);
3752 }
3753
3754 // Generates a 'selection box' from given array
3755 function generateSelectionBoxFromArray ($options, $name, $optionValue, $optionContent) {
3756         // Start the output
3757         $OUT = '<select name="' . $name . '" size="1" class="admin_select">
3758 <option value="X" disabled="disabled">{--PLEASE_SELECT--}</option>';
3759
3760         // Walk through all options
3761         foreach ($options as $option) {
3762                 // Add the <option> entry
3763                 $OUT .= '<option value="' . $option[$optionValue] . '">' . $option[$optionContent] . '</option>';
3764         } // END - foreach
3765
3766         // Finish selection box
3767         $OUT .= '</select>';
3768
3769         // Prepare output
3770         $content = array(
3771                 'selection_box' => $OUT,
3772                 'module'        => getModule(),
3773                 'what'          => getWhat()
3774         );
3775
3776         // Load template and return it
3777         return loadTemplate('select_' . $name . '_box', true, $content);
3778 }
3779
3780 // Get a module from filename and access level
3781 function getModuleFromFileName ($file, $accessLevel) {
3782         // Default is 'invalid';
3783         $modCheck = 'invalid';
3784
3785         // @TODO This is still very static, rewrite it somehow
3786         switch ($accessLevel) {
3787                 case 'admin':
3788                         $modCheck = 'admin';
3789                         break;
3790
3791                 case 'sponsor':
3792                 case 'guest':
3793                 case 'member':
3794                         $modCheck = getModule();
3795                         break;
3796
3797                 default: // Unsupported file name / access level
3798                         debug_report_bug('Unsupported file name=' . basename($file) . '/access level=' . $accessLevel);
3799                         break;
3800         }
3801
3802         // Return result
3803         return $modCheck;
3804 }
3805
3806 //////////////////////////////////////////////////
3807 // AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS //
3808 //////////////////////////////////////////////////
3809 //
3810 if (!function_exists('html_entity_decode')) {
3811         // Taken from documentation on www.php.net
3812         function html_entity_decode ($string) {
3813                 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
3814                 $trans_tbl = array_flip($trans_tbl);
3815                 return strtr($string, $trans_tbl);
3816         }
3817 } // END - if
3818
3819 if (!function_exists('http_build_query')) {
3820         // Taken from documentation on www.php.net, credits to Marco K. (Germany)
3821         function http_build_query($data, $prefix = '', $sep = '', $key = '') {
3822                 $ret = array();
3823                 foreach ((array)$data as $k => $v) {
3824                         if (is_int($k) && $prefix != null) {
3825                                 $k = urlencode($prefix . $k);
3826                         } // END - if
3827
3828                         if ((!empty($key)) || ($key === 0))  $k = $key.'['.urlencode($k).']';
3829
3830                         if (is_array($v) || is_object($v)) {
3831                                 array_push($ret, http_build_query($v, '', $sep, $k));
3832                         } else {
3833                                 array_push($ret, $k.'='.urlencode($v));
3834                         }
3835                 } // END - foreach
3836
3837                 if (empty($sep)) $sep = ini_get('arg_separator.output');
3838
3839                 return implode($sep, $ret);
3840         }
3841 } // END - if
3842
3843 // [EOF]
3844 ?>