But only when it is not empty
[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-database functions (also file access)   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Viele Nicht-Datenbank-Funktionen                 *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Init fatal message array
44 function initFatalMessages () {
45         $GLOBALS['fatal_messages'] = array();
46 }
47
48 // Getter for whole fatal error messages
49 function getFatalArray () {
50         return $GLOBALS['fatal_messages'];
51 }
52
53 // Add a fatal error message to the queue array
54 function addFatalMessage ($F, $L, $message, $extra = '') {
55         if (is_array($extra)) {
56                 // Multiple extras for a message with masks
57                 $message = call_user_func_array('sprintf', $extra);
58         } elseif (!empty($extra)) {
59                 // $message is text with a mask plus extras to insert into the text
60                 $message = sprintf($message, $extra);
61         }
62
63         // Add message to $GLOBALS['fatal_messages']
64         array_push($GLOBALS['fatal_messages'], $message);
65
66         // Log fatal messages away
67         logDebugMessage($F, $L, 'Fatal error message: ' . compileCode($message));
68 }
69
70 // Getter for total fatal message count
71 function getTotalFatalErrors () {
72         // Init count
73         $count = 0;
74
75         // Is there at least the first entry?
76         if (!empty($GLOBALS['fatal_messages'][0])) {
77                 // Get total count
78                 $count = count($GLOBALS['fatal_messages']);
79                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'count=' . $count . ' - FROM ARRAY');
80         } // END - if
81
82         // Return value
83         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'count=' . $count . ' - EXIT!');
84         return $count;
85 }
86
87 // Generate a password in a specified length or use default password length
88 function generatePassword ($length = '0', $exclude = array()) {
89         // Auto-fix invalid length of zero
90         if ($length == '0') {
91                 $length = getPassLen();
92         } // END - if
93
94         // Exclude some entries
95         $localAbc = array_diff($GLOBALS['_abc'], $exclude);
96
97         // $localAbc must have at least 10 entries
98         assert(count($localAbc) >= 10);
99
100         // Start creating password
101         $password = '';
102         while (strlen($password) < $length) {
103                 $password .= $localAbc[mt_rand(0, count($localAbc) -1)];
104         } // END - while
105
106         /*
107          * When the size is below 40 we can also add additional security by
108          * scrambling it. Otherwise the hash may corrupted..
109          */
110         if (strlen($password) <= 40) {
111                 // Also scramble the password
112                 $password = scrambleString($password);
113         } // END - if
114
115         // Return the password
116         return $password;
117 }
118
119 // Generates a human-readable timestamp from the Uni* stamp
120 function generateDateTime ($time, $mode = '0') {
121         // Is there cache?
122         if (isset($GLOBALS[__FUNCTION__][$time][$mode])) {
123                 // Return it instead
124                 return $GLOBALS[__FUNCTION__][$time][$mode];
125         } // END - if
126
127         // If the stamp is zero it mostly didn't "happen"
128         if (($time == '0') || (is_null($time))) {
129                 // Never happend
130                 return '{--NEVER_HAPPENED--}';
131         } // END - if
132
133         // Filter out numbers
134         $timeSecured = bigintval($time);
135
136         // Detect language
137         switch (getLanguage()) {
138                 case 'de': // German date / time format
139                         switch ($mode) {
140                                 case '0': $ret = date("d.m.Y \u\m H:i \U\h\\r", $timeSecured); break;
141                                 case '1': $ret = strtolower(date('d.m.Y - H:i', $timeSecured)); break;
142                                 case '2': $ret = date('d.m.Y|H:i', $timeSecured); break;
143                                 case '3': $ret = date('d.m.Y', $timeSecured); break;
144                                 case '4': $ret = date('d.m.Y|H:i:s', $timeSecured); break;
145                                 case '5': $ret = date('d-m-Y (l-F-T)', $timeSecured); break;
146                                 case '6': $ret = date('Ymd', $timeSecured); break;
147                                 case '7': $ret = date('Y-m-d H:i:s', $timeSecured); break; // Compatible with MySQL TIMESTAMP
148                                 default:
149                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
150                                         break;
151                         } // END - switch
152                         break;
153
154                 default: // Default is the US date / time format!
155                         switch ($mode) {
156                                 case '0': $ret = date('r', $timeSecured); break;
157                                 case '1': $ret = strtolower(date('Y-m-d - g:i A', $timeSecured)); break;
158                                 case '2': $ret = date('y-m-d|H:i', $timeSecured); break;
159                                 case '3': $ret = date('y-m-d', $timeSecured); break;
160                                 case '4': $ret = date('d.m.Y|H:i:s', $timeSecured); break;
161                                 case '5': $ret = date('d-m-Y (l-F-T)', $timeSecured); break;
162                                 case '6': $ret = date('Ymd', $timeSecured); break;
163                                 case '7': $ret = date('Y-m-d H:i:s', $timeSecured); break; // Compatible with MySQL TIMESTAMP
164                                 default:
165                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
166                                         break;
167                         } // END - switch
168         } // END - switch
169
170         // Store it in cache
171         $GLOBALS[__FUNCTION__][$time][$mode] = $ret;
172
173         // Return result
174         return $ret;
175 }
176
177 // Translates Y/N to yes/no
178 function translateYesNo ($yn) {
179         // Is it cached?
180         if (!isset($GLOBALS[__FUNCTION__][$yn])) {
181                 // Default
182                 $GLOBALS[__FUNCTION__][$yn] = '??? (' . $yn . ')';
183                 switch ($yn) {
184                         case 'Y': $GLOBALS[__FUNCTION__][$yn] = '{--YES--}'; break;
185                         case 'N': $GLOBALS[__FUNCTION__][$yn] = '{--NO--}'; break;
186                         default:
187                                 // Log unknown value
188                                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown value %s. Expected: Y/N", $yn));
189                                 break;
190                 } // END - switch
191         } // END - if
192
193         // Return it
194         return $GLOBALS[__FUNCTION__][$yn];
195 }
196
197 // "Translates" Y/N into "de-/active"
198 function translateActivationStatus ($status) {
199         // Is it cached?
200         if (!isset($GLOBALS[__FUNCTION__][$status])) {
201                 // Default
202                 $GLOBALS[__FUNCTION__][$status] = '??? (' . $status . ')';
203                 switch ($status) {
204                         case 'Y': $GLOBALS[__FUNCTION__][$status] = '{--ACTIVATED--}'; break;
205                         case 'N': $GLOBALS[__FUNCTION__][$status] = '{--DEACTIVATED--}'; break;
206                         default:
207                                 // Log unknown value
208                                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown value %s. Expected: Y/N", $status));
209                                 break;
210                 } // END - switch
211         } // END - if
212
213         // Return it
214         return $GLOBALS[__FUNCTION__][$status];
215 }
216
217 // Translates the american decimal dot into a german comma
218 // OPPOMENT: convertCommaToDot()
219 function translateComma ($dotted, $cut = TRUE, $max = '0') {
220         // First, cast all to double, due to PHP changes
221         $dotted = (double) $dotted;
222
223         // Default is 3 you can change this in admin area "Settings -> Misc Options"
224         if (!isConfigEntrySet('max_comma')) {
225                 setConfigEntry('max_comma', 3);
226         } // END - if
227
228         // Use from config is default
229         $maxComma = getConfig('max_comma');
230
231         // Use from parameter?
232         if ($max > 0) {
233                 $maxComma = $max;
234         } // END - if
235
236         // Cut zeros off?
237         if (($cut === TRUE) && ($max == '0')) {
238                 // Test for commata if in cut-mode
239                 $com = explode('.', $dotted);
240                 if (count($com) < 2) {
241                         // Don't display commatas even if there are none... ;-)
242                         $maxComma = '0';
243                 } // END - if
244         } // END - if
245
246         // Debug log
247
248         // Translate it now
249         $translated = $dotted;
250         switch (getLanguage()) {
251                 case 'de': // German language
252                         $translated = number_format($dotted, $maxComma, ',', '.');
253                         break;
254
255                 default: // All others
256                         $translated = number_format($dotted, $maxComma, '.', ',');
257                         break;
258         } // END - switch
259
260         // Return translated value
261         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'dotted=' . $dotted . ',translated=' . $translated . ',maxComma=' . $maxComma);
262         return $translated;
263 }
264
265 // Translate Uni*-like gender to human-readable
266 function translateGender ($gender) {
267         // Default
268         $ret = '!' . $gender . '!';
269
270         // Male/female or company?
271         switch ($gender) {
272                 case 'M': // Male
273                 case 'F': // Female
274                 case 'C': // Company
275                         // Use generic function
276                         $ret = translateGeneric('GENDER', $gender);
277                         break;
278
279                 default:
280                         // Please report bugs on unknown genders
281                         reportBug(__FUNCTION__, __LINE__, sprintf("Unknown gender %s detected.", $gender));
282                         break;
283         } // END - switch
284
285         // Return translated gender
286         return $ret;
287 }
288
289 // "Translates" the user status
290 function translateUserStatus ($status) {
291         // Default status is unknown if something goes through
292         $ret = '{--ACCOUNT_STATUS_UNKNOWN--}';
293
294         // Generate message depending on status
295         switch ($status) {
296                 case 'UNCONFIRMED':
297                 case 'CONFIRMED':
298                 case 'LOCKED':
299                         // Use generic function for all "normal" cases"
300                         $ret = translateGeneric('ACCOUNT_STATUS', $status);
301                         break;
302
303                 case '': // Account deleted
304                 case NULL: // Account deleted
305                         $ret = '{--ACCOUNT_STATUS_DELETED--}';
306                         break;
307
308                 default: // Please report all unknown status
309                         reportBug(__FUNCTION__, __LINE__, sprintf("Unknown status %s(%s) detected.", $status, gettype($status)));
310                         break;
311         } // END - switch
312
313         // Return it
314         return $ret;
315 }
316
317 // "Translates" 'visible' and 'locked' to a CSS class
318 function translateMenuVisibleLocked ($content, $prefix = '') {
319         // Default is 'menu_unknown'
320         $content['visible_css'] = $prefix . 'menu_unknown';
321
322         // Translate 'visible' and keep an eye on the prefix
323         switch ($content['visible']) {
324                 case 'Y': // Should be visible
325                         $content['visible_css'] = $prefix . 'menu_visible';
326                         break;
327
328                 case 'N': // Is invisible
329                         $content['visible_css'] = $prefix . 'menu_invisible';
330                         break;
331
332                 default: // Please report this
333                         reportBug(__FUNCTION__, __LINE__, 'Unsupported visible value detected. content=<pre>' . print_r($content, TRUE) . '</pre>');
334                         break;
335         } // END - switch
336
337         // Translate 'locked' and keep an eye on the prefix
338         switch ($content['locked']) {
339                 case 'Y': // Should be locked, only admins can call this
340                         $content['locked_css'] = $prefix . 'menu_locked';
341                         break;
342
343                 case 'N': // Is unlocked and visible to members/guests/sponsors
344                         $content['locked_css'] = $prefix . 'menu_unlocked';
345                         break;
346
347                 default: // Please report this
348                         reportBug(__FUNCTION__, __LINE__, 'Unsupported locked value detected. content=<pre>' . print_r($content, TRUE) . '</pre>');
349                         break;
350         } // END - switch
351
352         // Return the resulting array
353         return $content;
354 }
355
356 // Generates an URL for the dereferer
357 function generateDereferrerUrl ($url) {
358         // Don't de-refer our own links!
359         if ((!empty($url)) && (substr($url, 0, strlen(getUrl())) != getUrl())) {
360                 // Encode URL
361                 $encodedUrl = encodeString(compileUriCode($url));
362
363                 // Generate hash
364                 $hash = generateHash($url . getSiteKey() . getDateKey());
365
366                 // Log plain URL and hash
367                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'url=' . $url . ',hash=' . $hash . '(' . strlen($hash) . ')');
368
369                 // De-refer this URL
370                 $url = '{%url=modules.php?module=loader&amp;url=' . $encodedUrl . '&amp;hash=' . encodeHashForCookie($hash) . '&amp;salt=' . substr($hash, 0, getSaltLength()) . '%}';
371         } // END - if
372
373         // Return link
374         return $url;
375 }
376
377 // Generates an URL for the frametester
378 function generateFrametesterUrl ($url) {
379         // Prepare frametester URL
380         $frametesterUrl = sprintf("{%%url=modules.php?module=frametester&amp;url=%s%%}",
381                 encodeString(compileUriCode($url))
382         );
383
384         // Return the new URL
385         return $frametesterUrl;
386 }
387
388 // Count entries from e.g. a selection box
389 function countSelection ($array) {
390         // Integrity check
391         if (!is_array($array)) {
392                 // Not an array!
393                 reportBug(__FUNCTION__, __LINE__, 'No array provided.');
394         } // END - if
395
396         // Init count
397         $ret = '0';
398
399         // Count all entries
400         foreach ($array as $key => $selected) {
401                 // Is it checked?
402                 if (!empty($selected)) {
403                         // Yes, then count it
404                         $ret++;
405                 } // END - if
406         } // END - foreach
407
408         // Return counted selections
409         return $ret;
410 }
411
412 // Generates a timestamp (some wrapper for mktime())
413 function makeTime ($hours, $minutes, $seconds, $stamp) {
414         // Extract day, month and year from given timestamp
415         $days   = getDay($stamp);
416         $months = getMonth($stamp);
417         $years  = getYear($stamp);
418
419         // Create timestamp for wished time which depends on extracted date
420         return mktime(
421                 $hours,
422                 $minutes,
423                 $seconds,
424                 $months,
425                 $days,
426                 $years
427         );
428 }
429
430 // Redirects to an URL and if neccessarry extends it with own base URL
431 function redirectToUrl ($url, $allowSpider = TRUE) {
432         // Is the output mode -2?
433         if (isAjaxOutputMode()) {
434                 // This is always (!) an AJAX request and shall not be redirected
435                 return;
436         } // END - if
437
438         // Remove {%url=
439         if (substr($url, 0, 6) == '{%url=') {
440                 $url = substr($url, 6, -2);
441         } // END - if
442
443         // Compile out codes
444         eval('$url = "' . compileRawCode(encodeUrl($url)) . '";');
445
446         // Default 'rel' value is external, nofollow is evil from Google and hurts the Internet
447         $rel = ' rel="external"';
448
449         // Is there internal or external URL?
450         if (substr($url, 0, strlen(getUrl())) == getUrl()) {
451                 // Own (=internal) URL
452                 $rel = '';
453         } // END - if
454
455         // Three different ways to debug...
456         //* DEBUG: */ reportBug(__FUNCTION__, __LINE__, 'URL=' . $url);
457         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'URL=' . $url);
458         //* DEBUG: */ die($url);
459
460         // We should not sent a redirect if headers are already sent
461         if (!headers_sent()) {
462                 // Load URL when headers are not sent
463                 sendRawRedirect(doFinalCompilation(str_replace('&amp;', '&', $url), FALSE));
464         } else {
465                 // Output error message
466                 loadInclude('inc/header.php');
467                 loadTemplate('redirect_url', FALSE, str_replace('&amp;', '&', $url));
468                 loadInclude('inc/footer.php');
469         }
470
471         // Shut the mailer down here
472         doShutdown();
473 }
474
475 /************************************************************************
476  *                                                                      *
477  * Gaenderter Sortier-Algorythmus, $array wird nach dem Array (!)       *
478  * $a_sort sortiert:                                                    *
479  *                                                                      *
480  * $array - Das 3-dimensionale Array, das paralell sortiert werden soll *
481  * $a_sort - Array, das die Sortiereihenfolge der ersten Elementeben    *
482  * $primary_key - Primaerschl.ssel aus $a_sort, nach dem sortiert wird  *
483  * $order - Sortiereihenfolge: -1 = a-Z, 0 = keine, 1 = Z-a             *
484  * $nums - TRUE = Als Zahlen sortieren, FALSE = Als Zeichen sortieren   *
485  *                                                                      *
486  * $a_sort muss Elemente enthalten, deren Wert Schluessel von $array    *
487  * sind... Klingt kompliziert, suchen Sie mal mein Beispiel, dann sehen *
488  * Sie, dass es doch nicht so schwer ist! :-)                           *
489  *                                                                      *
490  ************************************************************************/
491 function array_pk_sort (&$array, $a_sort, $primary_key = '0', $order = -1, $nums = FALSE) {
492         $temporaryArray = $array;
493         while ($primary_key < count($a_sort)) {
494                 foreach ($temporaryArray[$a_sort[$primary_key]] as $key => $value) {
495                         foreach ($temporaryArray[$a_sort[$primary_key]] as $key2 => $value2) {
496                                 $match = FALSE;
497                                 if ($nums === FALSE) {
498                                         // Sort byte-by-byte (also numbers will be interpreted as chars! E.g.: "9" > "10")
499                                         if (($key != $key2) && (strcmp(strtolower($temporaryArray[$a_sort[$primary_key]][$key]), strtolower($temporaryArray[$a_sort[$primary_key]][$key2])) == $order)) $match = TRUE;
500                                 } elseif ($key != $key2) {
501                                         // Sort numbers (E.g.: 9 < 10)
502                                         if (($temporaryArray[$a_sort[$primary_key]][$key] < $temporaryArray[$a_sort[$primary_key]][$key2]) && ($order == -1)) $match = TRUE;
503                                         if (($temporaryArray[$a_sort[$primary_key]][$key] > $temporaryArray[$a_sort[$primary_key]][$key2]) && ($order ==  1)) $match = TRUE;
504                                 }
505
506                                 if ($match) {
507                                         // We have found two different values, so let's sort whole array
508                                         foreach ($temporaryArray as $sort_key => $sort_val) {
509                                                 $t                       = $temporaryArray[$sort_key][$key];
510                                                 $temporaryArray[$sort_key][$key]  = $temporaryArray[$sort_key][$key2];
511                                                 $temporaryArray[$sort_key][$key2] = $t;
512                                                 unset($t);
513                                         } // END - foreach
514                                 } // END - if
515                         } // END - foreach
516                 } // END - foreach
517
518                 // Count one up
519                 $primary_key++;
520         } // END - while
521
522         // Write back sorted array
523         $array = $temporaryArray;
524 }
525
526
527 //
528 // Deprecated : $length (still has one reference in this function)
529 // Optional   : $extraData
530 //
531 function generateRandomCode ($length, $code, $userid, $extraData = '') {
532         // Build server string
533         $server = $_SERVER['PHP_SELF'] . getEncryptSeparator() . detectUserAgent() . getEncryptSeparator() . getenv('SERVER_SOFTWARE') . getEncryptSeparator() . detectRealIpAddress() . getEncryptSeparator() . detectRemoteAddr();
534
535         // Build key string
536         $keys = getSiteKey() . getEncryptSeparator() . getDateKey();
537         if (isConfigEntrySet('secret_key')) {
538                 $keys .= getEncryptSeparator() . getSecretKey();
539         } // END - if
540         if (isConfigEntrySet('file_hash')) {
541                 $keys .= getEncryptSeparator() . getFileHash();
542         } // END - if
543         $keys .= getEncryptSeparator() . getDateFromRepository();
544         if (isConfigEntrySet('master_salt')) {
545                 $keys .= getEncryptSeparator() . getMasterSalt();
546         } // END - if
547
548         // Build string from misc data
549         $data  = $code . getEncryptSeparator() . $userid . getEncryptSeparator() . $extraData;
550
551         // Add more additional data
552         if (isSessionVariableSet('u_hash')) {
553                 $data .= getEncryptSeparator() . getSession('u_hash');
554         } // END - if
555
556         // Add referral id, language, theme and userid
557         $data .= getEncryptSeparator() . determineReferralId();
558         $data .= getEncryptSeparator() . getLanguage();
559         $data .= getEncryptSeparator() . getCurrentTheme();
560         $data .= getEncryptSeparator() . getMemberId();
561
562         // Calculate number for generating the code
563         $a = $code + getConfig('_ADD') - 1;
564
565         if (isConfigEntrySet('master_salt')) {
566                 // Generate hash with master salt from modula of number with the prime number and other data
567                 $saltedHash = generateHash(($a % getPrime()) . getEncryptSeparator() . $server . getEncryptSeparator() . $keys . getEncryptSeparator() . $data . getEncryptSeparator() . getDateKey() . getEncryptSeparator() . $a, getMasterSalt());
568         } else {
569                 // Generate hash with "hash of site key" from modula of number with the prime number and other data
570                 $saltedHash = generateHash(($a % getPrime()) . getEncryptSeparator() . $server . getEncryptSeparator() . $keys . getEncryptSeparator() . $data . getEncryptSeparator() . getDateKey() . getEncryptSeparator() . $a, substr(sha1(getSiteKey()), 0, getSaltLength()));
571         }
572
573         // Create number from hash
574         $rcode = hexdec(substr($saltedHash, getSaltLength(), 9)) / abs(getRandNo() - $a + sqrt(getConfig('_ADD'))) / pi();
575
576         // At least 10 numbers shall be secure enought!
577         if (isExtensionActive('other')) {
578                 $len = getCodeLength();
579         } else {
580                 $len = $length;
581         } // END - if
582
583         // Smaller 1 is not okay
584         if ($len < 1) {
585                 // Fix it to 10
586                 $len = 10;
587         } // END - if
588
589         // Cut off requested counts of number, but skip first digit (which is mostly a zero)
590         $return = substr($rcode, (strpos($rcode, '.') + 1), $len);
591
592         // Done building code
593         return $return;
594 }
595
596 // Does only allow numbers
597 function bigintval ($num, $castValue = TRUE, $abortOnMismatch = TRUE) {
598         //* DEBUG: */ debugOutput('[' . __FUNCTION__ . ':' . __LINE__ . '] ' . 'num=' . $num . ',castValue=' . intval($castValue) . ',abortOnMismatch=' . intval($abortOnMismatch) . ' - ENTERED!');
599         // Filter all non-number chars out, so only number chars will remain
600         $ret = preg_replace('/[^0123456789]/', '', $num);
601
602         // Shall we cast?
603         if ($castValue === TRUE) {
604                 // Cast to biggest numeric type
605                 $ret = (double) $ret;
606         } // END - if
607
608         // Has the whole value changed?
609         if (('' . $ret . '' != '' . $num . '') && ($abortOnMismatch === TRUE) && (!is_null($num))) {
610                 // Log the values
611                 reportBug(__FUNCTION__, __LINE__, 'Problem with number found. ret[' . gettype($ret) . ']=' . $ret . ', num[' . gettype($num) . ']='. $num);
612         } // END - if
613
614         // Return result
615         //* DEBUG: */ debugOutput('[' . __FUNCTION__ . ':' . __LINE__ . '] ' . 'num=' . $num . ',castValue=' . intval($castValue) . ',abortOnMismatch=' . intval($abortOnMismatch) . ',ret=' . $ret . ' - EXIT!');
616         return $ret;
617 }
618
619 // Creates a Uni* timestamp from given selection data and prefix
620 function createEpocheTimeFromSelections ($prefix, $postData) {
621         // Initial return value
622         $ret = '0';
623
624         // Is there a leap year?
625         $SWITCH = '0';
626         $TEST = getYear() / 4;
627         $M1   = getMonth();
628
629         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
630         // 01     2     2         1    1           1    123     4                          43    3                                 32    233    4                          43    3                                 3210
631         if ((floor($TEST) == $TEST) && ($M1 == '02') && (((isset($postData[$prefix . '_mo'])) && ($postData[$prefix . '_mo'] > '02')) || ((isset($postData[$prefix . '_mn'])) && ($postData[$prefix . '_mn'] > '02')))) {
632                 $SWITCH = getOneDay();
633         } // END - if
634
635         // First add years...
636         $ret += $postData[$prefix . '_ye'] * (31536000 + $SWITCH);
637
638         // Next months...
639         if (isset($postData[$prefix . '_mo'])) {
640                 $ret += $postData[$prefix . '_mo'] * 2628000;
641         } elseif (isset($postData[$prefix . '_mn'])) {
642                 $ret += $postData[$prefix . '_mn'] * 2628000;
643         }
644
645         // Next weeks
646         $ret += $postData[$prefix . '_we'] * 604800;
647
648         // Next days...
649         $ret += $postData[$prefix . '_da'] * 86400;
650
651         // Next hours...
652         $ret += $postData[$prefix . '_ho'] * 3600;
653
654         // Next minutes..
655         $ret += $postData[$prefix . '_mi'] * 60;
656
657         // And at last seconds...
658         $ret += $postData[$prefix . '_se'];
659
660         // Return calculated value
661         return $ret;
662 }
663
664 // Creates a 'fancy' human-readable timestamp from a Uni* stamp
665 function createFancyTime ($stamp) {
666         // Get data array with years/months/weeks/days/...
667         $data = createTimeSelections($stamp, '', '', '', TRUE);
668         $ret = '';
669         foreach ($data as $k => $v) {
670                 if ($v > 0) {
671                         // Value is greater than 0 "eval" data to return string
672                         $ret .= ', ' . $v . ' {%pipe,translateTimeUnit=' . $k . '%}';
673                         break;
674                 } // END - if
675         } // END - foreach
676
677         // Is something there?
678         if (!empty($ret)) {
679                 // Remove leading commata and space
680                 $ret = substr($ret, 2);
681         } else {
682                 // Zero seconds
683                 $ret = '0 {--TIME_UNIT_SECOND--}';
684         }
685
686         // Return fancy time string
687         return $ret;
688 }
689
690 // Taken from www.php.net isInStringIgnoreCase() user comments
691 function isEmailValid ($email) {
692         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'email=' . $email . ' - ENTERED!');
693
694         // Is there cache?
695         if (!isset($GLOBALS[__FUNCTION__][$email])) {
696                 // Check first part of email address
697                 $first = '[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*';
698
699                 //  Check domain
700                 $domain = '[a-z0-9-]+(\.[a-z0-9-]{2,5})+';
701
702                 // Generate pattern
703                 $regex = '@^' . $first . '\@' . $domain . '$@iU';
704
705                 // Determine it
706                 $GLOBALS[__FUNCTION__][$email] = (($email != getMessage('DEFAULT_WEBMASTER')) && (preg_match($regex, $email)));
707         } // END - if
708
709         // Return check result
710         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'email=' . $email . ',isValid=' . intval($GLOBALS[__FUNCTION__][$email]) . ' - EXIT!');
711         return $GLOBALS[__FUNCTION__][$email];;
712 }
713
714 // Function taken from user comments on www.php.net / function isInStringIgnoreCase()
715 function isUrlValid ($url, $compile = TRUE) {
716         // Trim URL a little
717         $url = trim(urldecode($url));
718         //* DEBUG: */ debugOutput($url);
719
720         // Compile some chars out...
721         if ($compile === TRUE) {
722                 $url = compileUriCode($url, FALSE, FALSE, FALSE);
723         } // END - if
724         //* DEBUG: */ debugOutput($url);
725
726         // Check for the extension filter
727         if (isExtensionActive('filter')) {
728                 // Use the extension's filter set
729                 return FILTER_VALIDATE_URL($url, FALSE);
730         } // END - if
731
732         /*
733          * If not installed, perform a simple test. Just make it sure there is always a
734          * http:// or https:// in front of the URLs.
735          */
736         return isUrlValidSimple($url);
737 }
738
739 // Generate a hash for extra-security for all passwords
740 function generateHash ($plainText, $salt = '', $hash = TRUE) {
741         // Debug output
742         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'plainText('.strlen($plainText).')=' . $plainText . ',salt('.strlen($salt).')=' . $salt . ',hash=' . intval($hash));
743
744         // Is the required extension 'sql_patches' there and a salt is not given?
745         // 123                            4                      43    3     4     432    2                  3             32    2                             3                32    2      3     3      21
746         if (((isExtensionInstalledAndOlder('sql_patches', '0.3.6')) && (empty($salt))) || (!isExtensionActive('sql_patches')) || (!isExtensionInstalledAndNewer('other', '0.2.5')) || (strlen($salt) == 32)) {
747                 // Extension ext-sql_patches is missing/outdated so we hash the plain text with MD5
748                 if ($hash === TRUE) {
749                         // Is plain password
750                         return md5($plainText);
751                 } else {
752                         // Is already a hash
753                         return $plainText;
754                 }
755         } // END - if
756
757         // Is an arry element missing here?
758         if (!isConfigEntrySet('file_hash')) {
759                 // Stop here
760                 reportBug(__FUNCTION__, __LINE__, 'Missing file_hash in ' . __FUNCTION__ . '.');
761         } // END - if
762
763         // When the salt is empty build a new one, else use the first x configured characters as the salt
764         if (empty($salt)) {
765                 // Build server string for more entropy
766                 $server = $_SERVER['PHP_SELF'] . getEncryptSeparator() . detectUserAgent() . getEncryptSeparator() . getenv('SERVER_SOFTWARE') . getEncryptSeparator() . detectRealIpAddress() . getEncryptSeparator() . detectRemoteAddr();
767
768                 // Build key string
769                 $keys   = getSiteKey() . getEncryptSeparator() . getDateKey() . getEncryptSeparator() . getSecretKey() . getEncryptSeparator() . getFileHash() . getEncryptSeparator() . getDateFromRepository() . getEncryptSeparator() . getMasterSalt();
770
771                 // Additional data
772                 $data = $plainText . getEncryptSeparator() . uniqid(mt_rand(), TRUE) . getEncryptSeparator() . time();
773
774                 // Calculate number for generating the code
775                 $a = time() + getConfig('_ADD') - 1;
776
777                 // Generate SHA1 sum from modula of number and the prime number
778                 $sha1 = sha1(($a % getPrime()) . $server . getEncryptSeparator() . $keys . getEncryptSeparator() . $data . getEncryptSeparator() . getDateKey() . getEncryptSeparator() . $a);
779                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'SHA1=' . $sha1.' ('.strlen($sha1).')');
780                 $sha1 = scrambleString($sha1);
781                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Scrambled=' . $sha1.' ('.strlen($sha1).')');
782                 //* DEBUG: */ $sha1b = descrambleString($sha1);
783                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Descrambled=' . $sha1b.' ('.strlen($sha1b).')');
784
785                 // Generate the password salt string
786                 $salt = substr($sha1, 0, getSaltLength());
787                 //* DEBUG: */ debugOutput($salt.' ('.strlen($salt).')');
788         } else {
789                 // Use given salt
790                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'salt=' . $salt);
791                 $salt = substr($salt, 0, getSaltLength());
792                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'salt=' . $salt . '(' . strlen($salt) . '/' . getSaltLength() . ')');
793
794                 // Sanity check on salt
795                 if (strlen($salt) != getSaltLength()) {
796                         // Not the same!
797                         reportBug(__FUNCTION__, __LINE__, 'salt length mismatch! (' . strlen($salt) . '/' . getSaltLength() . ')');
798                 } // END - if
799         }
800
801         // Generate final hash (for debug output)
802         $finalHash = $salt . sha1($salt . $plainText);
803
804         // Debug output
805         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'finalHash('.strlen($finalHash).')=' . $finalHash);
806
807         // Return hash
808         return $finalHash;
809 }
810
811 // Scramble a string
812 function scrambleString ($str) {
813         // Init
814         $scrambled = '';
815
816         // Final check, in case of failure it will return unscrambled string
817         if (strlen($str) > 40) {
818                 // The string is to long
819                 return $str;
820         } elseif (strlen($str) == 40) {
821                 // From database
822                 $scrambleNums = explode(':', getPassScramble());
823         } else {
824                 // Generate new numbers
825                 $scrambleNums = explode(':', genScrambleString(strlen($str)));
826         }
827
828         // Compare both lengths and abort if different
829         if (strlen($str) != count($scrambleNums)) {
830                 return $str;
831         } // END - if
832
833         // Scramble string here
834         //* DEBUG: */ debugOutput('***Original=' . $str.'***<br />');
835         for ($idx = 0; $idx < strlen($str); $idx++) {
836                 // Get char on scrambled position
837                 $char = substr($str, $scrambleNums[$idx], 1);
838
839                 // Add it to final output string
840                 $scrambled .= $char;
841         } // END - for
842
843         // Return scrambled string
844         //* DEBUG: */ debugOutput('***Scrambled=' . $scrambled.'***<br />');
845         return $scrambled;
846 }
847
848 // De-scramble a string scrambled by scrambleString()
849 function descrambleString ($str) {
850         // Scramble only 40 chars long strings
851         if (strlen($str) != 40) {
852                 return $str;
853         } // END - if
854
855         // Load numbers from config
856         $scrambleNums = explode(':', getPassScramble());
857
858         // Validate numbers
859         if (count($scrambleNums) != 40) {
860                 return $str;
861         } // END - if
862
863         // Begin descrambling
864         $orig = str_repeat(' ', 40);
865         //* DEBUG: */ debugOutput('+++Scrambled=' . $str.'+++<br />');
866         for ($idx = 0; $idx < 40; $idx++) {
867                 $char = substr($str, $idx, 1);
868                 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
869         } // END - for
870
871         // Return scrambled string
872         //* DEBUG: */ debugOutput('+++Original=' . $orig.'+++<br />');
873         return $orig;
874 }
875
876 // Generated a "string" for scrambling
877 function genScrambleString ($len) {
878         // Prepare array for the numbers
879         $scrambleNumbers = array();
880
881         // First we need to setup randomized numbers from 0 to 31
882         for ($idx = 0; $idx < $len; $idx++) {
883                 // Generate number
884                 $rand = mt_rand(0, ($len - 1));
885
886                 // Check for it by creating more numbers
887                 while (array_key_exists($rand, $scrambleNumbers)) {
888                         $rand = mt_rand(0, ($len - 1));
889                 } // END - while
890
891                 // Add number
892                 $scrambleNumbers[$rand] = $rand;
893         } // END - for
894
895         // So let's create the string for storing it in database
896         $scrambleString = implode(':', $scrambleNumbers);
897         return $scrambleString;
898 }
899
900 // Generate an PGP-like encrypted hash of given hash for e.g. cookies
901 function encodeHashForCookie ($passHash) {
902         // Return vanilla password hash
903         $ret = $passHash;
904
905         // Is a secret key and master salt already initialized?
906         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, intval(isExtensionInstalled('sql_patches')) . '/' . intval(isConfigEntrySet('_PRIME')) . '/' . intval(isConfigEntrySet('secret_key')) . '/' . intval(isConfigEntrySet('master_salt')));
907         if ((isExtensionInstalled('sql_patches')) && (isConfigEntrySet('_PRIME')) && (isConfigEntrySet('secret_key')) && (isConfigEntrySet('master_salt'))) {
908                 // Only calculate when the secret key is generated
909                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, strlen($passHash) . '/' . strlen(getSecretKey()));
910                 if ((strlen($passHash) != 49) || (strlen(getSecretKey()) != 40)) {
911                         // Both keys must have same length so return unencrypted
912                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, strlen($passHash) . '!=49/' . strlen(getSecretKey()) . '!=40 -  EXIT!');
913                         return $ret;
914                 } // END - if
915
916                 $newHash = ''; $start = 9;
917                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'passHash=' . $passHash . '(' . strlen($passHash) . ')');
918                 for ($idx = 0; $idx < 20; $idx++) {
919                         // Get hash parts and convert them (00-FF) to matching ASCII value (0-255)
920                         $part1 = hexdec(substr($passHash     , $start, 2));
921                         $part2 = hexdec(substr(getSecretKey(), $start, 2));
922
923                         // Default is hexadecimal of index if both are same
924                         $mod = dechex($idx);
925                         // Is part1 larger or part2 than its counter part?
926                         if ($part1 > $part2) {
927                                 // part1 is larger
928                                 $mod = dechex(sqrt(($part1 - $part2) * getPrime() / pi()));
929                         } elseif ($part2 > $part1) {
930                                 // part2 is larger
931                                 $mod = dechex(sqrt(($part2 - $part1) * getPrime() / pi()));
932                         }
933
934                         $mod = substr($mod, 0, 2);
935                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'idx=' . $idx . ',part1=' . $part1 . '/part2=' . $part2 . '/mod=' . $mod . '(' . strlen($mod) . ')');
936                         $mod = padLeftZero($mod);
937                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'mod(' . ($idx * 2) . ')=' . $mod . '*');
938                         $start += 2;
939                         $newHash .= $mod;
940                 } // END - for
941
942                 // Just copy it over, as the master salt is not really helpful here
943                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $passHash . '(' . strlen($passHash) . '),' . $newHash . ' (' . strlen($newHash) . ')');
944                 $ret = $newHash;
945         } // END - if
946
947         // Return result
948         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret=' . $ret . '');
949         return $ret;
950 }
951
952 // Fix "deleted" cookies
953 function fixDeletedCookies ($cookies) {
954         // Is this an array with entries?
955         if ((is_array($cookies)) && (count($cookies) > 0)) {
956                 // Then check all cookies if they are marked as deleted!
957                 foreach ($cookies as $cookieName) {
958                         // Is the cookie set to "deleted"?
959                         if (getSession($cookieName) == 'deleted') {
960                                 setSession($cookieName, '');
961                         } // END - if
962                 } // END - foreach
963         } // END - if
964 }
965
966 // Checks if a given apache module is loaded
967 function isApacheModuleLoaded ($apacheModule) {
968         // Check it and return result
969         return (((function_exists('apache_get_modules')) && (in_array($apacheModule, apache_get_modules()))) || (!function_exists('apache_get_modules')));
970 }
971
972 // Get current theme name
973 function getCurrentTheme () {
974         // The default theme is 'default'... ;-)
975         $ret = 'default';
976
977         // Is there ext-theme installed and active or is 'theme' in URL or POST data?
978         if (isExtensionActive('theme')) {
979                 // Call inner method
980                 $ret = getActualTheme();
981         } elseif ((isPostRequestElementSet('theme')) && (isIncludeReadable(sprintf("theme/%s/theme.php", postRequestElement('theme'))))) {
982                 // Use value from POST data
983                 $ret = postRequestElement('theme');
984         } elseif ((isGetRequestElementSet('theme')) && (isIncludeReadable(sprintf("theme/%s/theme.php", getRequestElement('theme'))))) {
985                 // Use value from GET data
986                 $ret = getRequestElement('theme');
987         } elseif ((isMailerThemeSet()) && (isIncludeReadable(sprintf("theme/%s/theme.php", getMailerTheme())))) {
988                 // Use value from GET data
989                 $ret = getMailerTheme();
990         }
991
992         // Return theme value
993         return $ret;
994 }
995
996 // Generates an error code from given account status
997 function generateErrorCodeFromUserStatus ($status = '') {
998         // If no status is provided, use the default, cached
999         if ((empty($status)) && (isMember())) {
1000                 // Get user status
1001                 $status = getUserData('status');
1002         } // END - if
1003
1004         // Default error code if unknown account status
1005         $errorCode = getCode('ACCOUNT_UNKNOWN');
1006
1007         // Generate constant name
1008         $codeName = sprintf("ACCOUNT_%s", strtoupper($status));
1009
1010         // Is the constant there?
1011         if (isCodeSet($codeName)) {
1012                 // Then get it!
1013                 $errorCode = getCode($codeName);
1014         } else {
1015                 // Unknown status
1016                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown error status %s detected.", $status));
1017         }
1018
1019         // Return error code
1020         return $errorCode;
1021 }
1022
1023 // Back-ported from the new ship-simu engine. :-)
1024 function debug_get_printable_backtrace () {
1025         // Init variable
1026         $backtrace = '<ol>';
1027
1028         // Get and prepare backtrace for output
1029         $backtraceArray = debug_backtrace();
1030         foreach ($backtraceArray as $key => $trace) {
1031                 if (!isset($trace['file'])) $trace['file'] = __FUNCTION__;
1032                 if (!isset($trace['line'])) $trace['line'] = __LINE__;
1033                 if (!isset($trace['args'])) $trace['args'] = array();
1034                 $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>';
1035         } // END - foreach
1036
1037         // Close it
1038         $backtrace .= '</ol>';
1039
1040         // Return the backtrace
1041         return $backtrace;
1042 }
1043
1044 // A mail-able backtrace
1045 function debug_get_mailable_backtrace () {
1046         // Init variable
1047         $backtrace = '';
1048
1049         // Get and prepare backtrace for output
1050         $backtraceArray = debug_backtrace();
1051         foreach ($backtraceArray as $key => $trace) {
1052                 if (!isset($trace['file'])) $trace['file'] = __FUNCTION__;
1053                 if (!isset($trace['line'])) $trace['line'] = __LINE__;
1054                 if (!isset($trace['args'])) $trace['args'] = array();
1055                 $backtrace .= ($key+1) . '.:' . basename($trace['file']) . ':' . $trace['line'] . ', ' . $trace['function'] . '(' . count($trace['args']) . ")\n";
1056         } // END - foreach
1057
1058         // Return the backtrace
1059         return $backtrace;
1060 }
1061
1062 // Generates a ***weak*** seed
1063 function generateSeed () {
1064         return microtime(TRUE) * 100000;
1065 }
1066
1067 // Converts a message code to a human-readable message
1068 function getMessageFromErrorCode ($code) {
1069         // Default is an unknown error code
1070         $message = '{%message,UNKNOWN_ERROR_CODE=' . $code . '%}';
1071
1072         // Which code is provided?
1073         switch ($code) {
1074                 case '':
1075                         // No error code is bad coding practice
1076                         reportBug(__FUNCTION__, __LINE__, 'Empty error code supplied. Please fix your code.');
1077                         break;
1078
1079                 // All error messages
1080                 case getCode('LOGOUT_DONE')         : $message = '{--LOGOUT_DONE--}'; break;
1081                 case getCode('LOGOUT_FAILED')       : $message = '<span class="bad">{--LOGOUT_FAILED--}</span>'; break;
1082                 case getCode('DATA_INVALID')        : $message = '{--MAIL_DATA_INVALID--}'; break;
1083                 case getCode('POSSIBLE_INVALID')    : $message = '{--MAIL_POSSIBLE_INVALID--}'; break;
1084                 case getCode('USER_404')            : $message = '{--USER_404--}'; break;
1085                 case getCode('STATS_404')           : $message = '{--MAIL_STATS_404--}'; break;
1086                 case getCode('ALREADY_CONFIRMED')   : $message = '{--MAIL_ALREADY_CONFIRMED--}'; break;
1087                 case getCode('BEG_SAME_AS_OWN')     : $message = '{--BEG_SAME_USERID_AS_OWN--}'; break;
1088                 case getCode('LOGIN_FAILED')        : $message = '{--GUEST_LOGIN_FAILED_GENERAL--}'; break;
1089                 case getCode('MODULE_MEMBER_ONLY')  : $message = '{%message,MODULE_MEMBER_ONLY=' . getRequestElement('mod') . '%}'; break;
1090                 case getCode('OVERLENGTH')          : $message = '{--MEMBER_TEXT_OVERLENGTH--}'; break;
1091                 case getCode('URL_FOUND')           : $message = '{--MEMBER_TEXT_CONTAINS_URL--}'; break;
1092                 case getCode('SUBJECT_URL')         : $message = '{--MEMBER_SUBJECT_CONTAINS_URL--}'; break;
1093                 case getCode('BLIST_URL')           : $message = '{--MEMBER_URL_BLACK_LISTED--}<br />{--MEMBER_BLIST_TIME--}: ' . generateDateTime(getRequestElement('blist'), 0); break;
1094                 case getCode('NO_RECS_LEFT')        : $message = '{--MEMBER_SELECTED_MORE_RECS--}'; break;
1095                 case getCode('INVALID_TAGS')        : $message = '{--MEMBER_HTML_INVALID_TAGS--}'; break;
1096                 case getCode('MORE_POINTS')         : $message = '{--MEMBER_MORE_POINTS_NEEDED--}'; break;
1097                 case getCode('MORE_RECEIVERS1')     : $message = '{--MEMBER_ENTER_MORE_RECEIVERS--}'; break;
1098                 case getCode('MORE_RECEIVERS2')     : $message = '{--MEMBER_NO_MORE_RECEIVERS_FOUND--}'; break;
1099                 case getCode('MORE_RECEIVERS3')     : $message = '{--MEMBER_ENTER_MORE_MIN_RECEIVERS--}'; break;
1100                 case getCode('INVALID_URL')         : $message = '{--MEMBER_ENTER_INVALID_URL--}'; break;
1101                 case getCode('NO_MAIL_TYPE')        : $message = '{--MEMBER_NO_MAIL_TYPE_SELECTED--}'; break;
1102                 case getCode('PROFILE_UPDATED')     : $message = '{--MEMBER_PROFILE_UPDATED--}'; break;
1103                 case getCode('UNKNOWN_REDIRECT')    : $message = '{--UNKNOWN_REDIRECT_VALUE--}'; break;
1104                 case getCode('WRONG_PASS')          : $message = '{--LOGIN_WRONG_PASS--}'; break;
1105                 case getCode('WRONG_ID')            : $message = '{--LOGIN_WRONG_ID--}'; break;
1106                 case getCode('ACCOUNT_LOCKED')      : $message = '{--LOGIN_STATUS_LOCKED--}'; break;
1107                 case getCode('ACCOUNT_UNCONFIRMED') : $message = '{--LOGIN_STATUS_UNCONFIRMED--}'; break;
1108                 case getCode('COOKIES_DISABLED')    : $message = '{--LOGIN_COOKIES_DISABLED--}'; break;
1109                 case getCode('UNKNOWN_ERROR')       : $message = '{--LOGIN_UNKNOWN_ERROR--}'; break;
1110                 case getCode('UNKNOWN_STATUS')      : $message = '{--LOGIN_UNKNOWN_STATUS--}'; break;
1111                 case getCode('LOGIN_EMPTY_ID')      : $message = '{--LOGIN_ID_IS_EMPTY--}'; break;
1112                 case getCode('LOGIN_EMPTY_PASSWORD'): $message = '{--LOGIN_PASSWORD_IS_EMPTY--}'; break;
1113
1114                 case getCode('ERROR_MAILID'):
1115                         if (isExtensionActive('mailid', TRUE)) {
1116                                 $message = '{--ERROR_CONFIRMING_MAIL--}';
1117                         } else {
1118                                 $message = '{%pipe,generateExtensionInactiveNotInstalledMessage=mailid%}';
1119                         }
1120                         break;
1121
1122                 case getCode('EXTENSION_PROBLEM'):
1123                         if (isGetRequestElementSet('ext')) {
1124                                 $message = '{%pipe,generateExtensionInactiveNotInstalledMessage=' . getRequestElement('ext') . '%}';
1125                         } else {
1126                                 $message = '{--EXTENSION_PROBLEM_UNSET_EXT--}';
1127                         }
1128                         break;
1129
1130                 case getCode('URL_TIME_LOCK'):
1131                         // Load timestamp from last order
1132                         $content = getPoolDataFromId(getRequestElement('id'));
1133
1134                         // Translate it for templates
1135                         $content['timestamp'] = generateDateTime($content['timestamp'], 1);
1136
1137                         // Calculate hours...
1138                         $content['hours'] = round(getUrlTlock() / 60 / 60);
1139
1140                         // Minutes...
1141                         $content['minutes'] = round((getUrlTlock() - $content['hours'] * 60 * 60) / 60);
1142
1143                         // And seconds
1144                         $content['seconds'] = round(getUrlTlock() - $content['hours'] * 60 * 60 - $content['minutes'] * 60);
1145
1146                         // Finally contruct the message
1147                         $message = loadTemplate('tlock_message', TRUE, $content);
1148                         break;
1149
1150                 default:
1151                         // Log missing/invalid error codes
1152                         logDebugMessage(__FUNCTION__, __LINE__, getMessage('UNKNOWN_MAILID_CODE', $code));
1153                         break;
1154         } // END - switch
1155
1156         // Return the message
1157         return $message;
1158 }
1159
1160 // Function taken from user comments on www.php.net / function isInStringIgnoreCase()
1161 function isUrlValidSimple ($url) {
1162         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'url=' . $url . ' - ENTERED!');
1163         // Prepare URL
1164         $url = secureString(str_replace(chr(92), '', compileRawCode(urldecode($url))));
1165
1166         // Allows http and https
1167         $http      = "(http|https)+(:\/\/)";
1168         // Test domain
1169         $domain1   = "([[:alnum:]]([-[:alnum:]])*\.)?([[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})?";
1170         // Test double-domains (e.g. .de.vu)
1171         $domain2   = "([-[:alnum:]])?(\.[[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})(\.[[:alpha:]]{2,5})?";
1172         // Test IP number
1173         $ip        = "([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})";
1174         // ... directory
1175         $dir       = "((/)+([-_\.[:alnum:]])+)*";
1176         // ... page
1177         $page      = "/([-_[:alnum:]][-\._[:alnum:]]*\.[[:alnum:]]{2,5})?";
1178         // ... and the string after and including question character
1179         $getstring1 = "([\?/]([[:alnum:]][-\._%[:alnum:]]*(=)?([-\@\._:%[:alnum:]])+)(&([[:alnum:]]([-_%[:alnum:]])*(=)?([-\@\[\._:%[:alnum:]])+(\])*))*)?";
1180         // Pattern for URLs like http://url/dir/doc.html?var=value
1181         $pattern['d1dpg1']  = $http . $domain1 . $dir . $page . $getstring1;
1182         $pattern['d2dpg1']  = $http . $domain2 . $dir . $page . $getstring1;
1183         $pattern['ipdpg1']  = $http . $ip . $dir . $page . $getstring1;
1184         // Pattern for URLs like http://url/dir/?var=value
1185         $pattern['d1dg1']  = $http . $domain1 . $dir.'/' . $getstring1;
1186         $pattern['d2dg1']  = $http . $domain2 . $dir.'/' . $getstring1;
1187         $pattern['ipdg1']  = $http . $ip . $dir.'/' . $getstring1;
1188         // Pattern for URLs like http://url/dir/page.ext
1189         $pattern['d1dp']  = $http . $domain1 . $dir . $page;
1190         $pattern['d1dp']  = $http . $domain2 . $dir . $page;
1191         $pattern['ipdp']  = $http . $ip . $dir . $page;
1192         // Pattern for URLs like http://url/dir
1193         $pattern['d1d']  = $http . $domain1 . $dir;
1194         $pattern['d2d']  = $http . $domain2 . $dir;
1195         $pattern['ipd']  = $http . $ip . $dir;
1196         // Pattern for URLs like http://url/?var=value
1197         $pattern['d1g1']  = $http . $domain1 . '/' . $getstring1;
1198         $pattern['d2g1']  = $http . $domain2 . '/' . $getstring1;
1199         $pattern['ipg1']  = $http . $ip . '/' . $getstring1;
1200         // Pattern for URLs like http://url?var=value
1201         $pattern['d1g12']  = $http . $domain1 . $getstring1;
1202         $pattern['d2g12']  = $http . $domain2 . $getstring1;
1203         $pattern['ipg12']  = $http . $ip . $getstring1;
1204
1205         // Test all patterns
1206         $reg = FALSE;
1207         foreach ($pattern as $key => $pat) {
1208                 // Debug regex?
1209                 if (isDebugRegularExpressionEnabled()) {
1210                         // @TODO Are these convertions still required?
1211                         $pat = str_replace('.', '&#92;&#46;', $pat);
1212                         $pat = str_replace('@', '&#92;&#64;', $pat);
1213                         //* DEBUG: */ debugOutput($key . '=&nbsp;' . $pat);
1214                 } // END - if
1215
1216                 // Check if expression matches
1217                 $reg = ($reg || preg_match(('^' . $pat . '^'), $url));
1218
1219                 // Does it match?
1220                 if ($reg === TRUE) {
1221                         break;
1222                 } // END - if
1223         } // END - foreach
1224
1225         // Return true/false
1226         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'url=' . $url . ',reg=' . intval($reg) . ' - EXIT!');
1227         return $reg;
1228 }
1229
1230 // Wtites data to a config.php-style file
1231 // @TODO Rewrite this function to use readFromFile() and writeToFile()
1232 function changeDataInFile ($FQFN, $comment, $prefix, $suffix, $inserted, $seek = 0) {
1233         // Initialize some variables
1234         $done = FALSE;
1235         $seek++;
1236         $next  = -1;
1237         $found = FALSE;
1238
1239         // Is the file there and read-/write-able?
1240         if ((isFileReadable($FQFN)) && (is_writeable($FQFN))) {
1241                 $search = 'CFG: ' . $comment;
1242                 $tmp = $FQFN . '.tmp';
1243
1244                 // Open the source file
1245                 $fp = fopen($FQFN, 'r') or reportBug(__FUNCTION__, __LINE__, 'Cannot read. file=' . basename($FQFN));
1246
1247                 // Is the resource valid?
1248                 if (is_resource($fp)) {
1249                         // Open temporary file
1250                         $fp_tmp = fopen($tmp, 'w') or reportBug(__FUNCTION__, __LINE__, 'Cannot write. tmp=' . basename($tmp) . ',file=' . $FQFN);
1251
1252                         // Is the resource again valid?
1253                         if (is_resource($fp_tmp)) {
1254                                 // Mark temporary file as readable
1255                                 $GLOBALS['file_readable'][$tmp] = TRUE;
1256
1257                                 // Start reading
1258                                 while (!feof($fp)) {
1259                                         // Read from source file
1260                                         $line = fgets($fp, 1024);
1261
1262                                         if (isInString($search, $line)) {
1263                                                 $next = '0';
1264                                                 $found = TRUE;
1265                                         } // END - if
1266
1267                                         if ($next > -1) {
1268                                                 if ($next === $seek) {
1269                                                         $next = -1;
1270                                                         $line = $prefix . $inserted . $suffix . PHP_EOL;
1271                                                 } else {
1272                                                         $next++;
1273                                                 }
1274                                         } // END - if
1275
1276                                         // Write to temp file
1277                                         fwrite($fp_tmp, $line);
1278                                 } // END - while
1279
1280                                 // Close temp file
1281                                 fclose($fp_tmp);
1282
1283                                 // Finished writing tmp file
1284                                 $done = TRUE;
1285                         } // END - if
1286
1287                         // Close source file
1288                         fclose($fp);
1289
1290                         if (($done === TRUE) && ($found === TRUE)) {
1291                                 // Copy back temporary->FQFN file and ...
1292                                 copyFileVerified($tmp, $FQFN, 0644);
1293
1294                                 // ... delete temporay file :-)
1295                                 return removeFile($tmp);
1296                         } elseif ($found === FALSE) {
1297                                 // Entry not found
1298                                 logDebugMessage(__FUNCTION__, __LINE__, 'File ' . basename($FQFN) . ' cannot be changed: comment=' . $comment . ',prefix=' . $prefix . ',inserted=' . $inserted . ',seek=' . $seek . ' - 404!');
1299                         } else {
1300                                 // Temporary file not fully written
1301                                 logDebugMessage(__FUNCTION__, __LINE__, 'File ' . basename($FQFN) . ' cannot be changed: comment=' . $comment . ',prefix=' . $prefix . ',inserted=' . $inserted . ',seek=' . $seek . ' - Temporary file unfinished!');
1302                         }
1303                 }
1304         } else {
1305                 // File not found, not readable or writeable
1306                 reportBug(__FUNCTION__, __LINE__, 'File not readable/writeable. file=' . basename($FQFN) . ',comment=' . $comment . ',prefix=' . $prefix . ',inserted=' . $inserted . ',seek=' . $seek);
1307         }
1308
1309         // An error was detected!
1310         return FALSE;
1311 }
1312
1313 // Debug message logger
1314 function logDebugMessage ($funcFile, $line, $message, $force=true) {
1315         // Is debug mode enabled?
1316         if ((isDebugModeEnabled()) || ($force === TRUE)) {
1317                 // Remove CRLF
1318                 $message = str_replace(array(chr(13), PHP_EOL), array('', ''), $message);
1319
1320                 // Log this message away
1321                 appendLineToFile(getPath() . getCachePath() . 'debug.log', generateDateTime(time(), '4') . '|' . getModule(FALSE) . ':' . getExtraModule() . '|' . basename($funcFile) . '|' . $line . '|' . $message);
1322         } // END - if
1323 }
1324
1325 // Handle extra values
1326 function handleExtraValues ($filterFunction, $value, $extraValue) {
1327         // Default is the value itself
1328         $ret = $value;
1329
1330         // Is there a special filter function?
1331         if ((empty($filterFunction)) || (!function_exists($filterFunction))) {
1332                 // Call-back function does not exist or is empty
1333                 reportBug(__FUNCTION__, __LINE__, 'Filter function ' . $filterFunction . ' does not exist or is empty: value[' . gettype($value) . ']=' . $value . ',extraValue[' . gettype($extraValue) . ']=' . $extraValue);
1334         } // END - if
1335
1336         // Is there extra parameters here?
1337         if ((!is_null($extraValue)) && (!empty($extraValue))) {
1338                 // Put both parameters in one new array by default
1339                 $args = array($value, $extraValue);
1340
1341                 // If we have an array simply use it and pre-extend it with our value
1342                 if (is_array($extraValue)) {
1343                         // Make the new args array
1344                         $args = merge_array(array($value), $extraValue);
1345                 } // END - if
1346
1347                 // Call the multi-parameter call-back
1348                 $ret = call_user_func_array($filterFunction, $args);
1349
1350                 // Is $ret 'true'?
1351                 if ($ret === TRUE) {
1352                         // Test passed, so write direct value
1353                         $ret = $args;
1354                 } // END - if
1355         } else {
1356                 // One parameter call
1357                 $ret = call_user_func($filterFunction, $value);
1358                 //* BUG */ die('ret['.gettype($ret).']=' . $ret . ',value=' . $value.',filterFunction=' . $filterFunction);
1359
1360                 // Is $ret 'true'?
1361                 if ($ret === TRUE) {
1362                         // Test passed, so write direct value
1363                         $ret = $value;
1364                 } // END - if
1365         }
1366
1367         // Return the value
1368         return $ret;
1369 }
1370
1371 // Tries to determine if call-back functions and/or extra values shall be parsed
1372 function doHandleExtraValues ($filterFunctions, $extraValues, $key, $entries, $userIdColumn, $search, $id = NULL) {
1373         // Debug mode enabled?
1374         if (isDebugModeEnabled()) {
1375                 // Debug message
1376                 /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'key=' . $key . ',entries=' . $entries . ',userIdColumn=' . $userIdColumn[0] . ',search=' . $search . ',filterFunctions=' . print_r($filterFunctions, TRUE) . ',extraValues=' . print_r($extraValues, TRUE));
1377         } // END - if
1378
1379         // Send data through the filter function if found
1380         if ($key === $userIdColumn[0]) {
1381                 // Is the userid, we have to process it with convertZeroToNull()
1382                 $entries = convertZeroToNull($entries);
1383         } elseif ((!empty($filterFunctions[$key])) && (isset($extraValues[$key]))) {
1384                 // Debug mode enabled?
1385                 if (isDebugModeEnabled()) {
1386                         // Then log it
1387                         /* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'search=' . $search . ',filterFunctions=' . $filterFunctions[$key] . ',extraValues=' . $extraValues[$key] . ',key=' . $key . ',id=' . $id . ',entries[' . gettype($entries) . ']=' . $entries . ' - BEFORE!');
1388                 } // END - if
1389
1390                 // Filter function + extra value set
1391                 $entries = handleExtraValues($filterFunctions[$key], $entries, $extraValues[$key]);
1392
1393                 // Debug mode enabled?
1394                 if (isDebugModeEnabled()) {
1395                         // Then log it
1396                         /* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'search=' . $search . ',filterFunctions=' . $filterFunctions[$key] . ',extraValues=' . $extraValues[$key] . ',key=' . $key . ',id=' . $id . ',entries[' . gettype($entries) . ']=' . $entries . ' - AFTER!');
1397                 } // END - if
1398         } elseif ((!empty($filterFunctions[$search])) && (!empty($extraValues[$search]))) {
1399                 // Debug mode enabled?
1400                 if (isDebugModeEnabled()) {
1401                         // Then log it
1402                         /* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'search=' . $search . ',filterFunctions=' . $filterFunctions[$search] . ',key=' . $key . ',search=' . $search . ',entries[' . gettype($entries) . ']=' . $entries . ' - BEFORE!');
1403                 } // END - if
1404
1405                 // Handle extra values
1406                 $entries = handleExtraValues($filterFunctions[$search], $entries, $extraValues[$search]);
1407
1408                 // Debug mode enabled?
1409                 if (isDebugModeEnabled()) {
1410                         // Then log it
1411                         /* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'search=' . $search . ',filterFunctions=' . $filterFunctions[$search] . ',key=' . $key . ',search=' . $search . ',entries[' . gettype($entries) . ']=' . $entries . ' - AFTER!');
1412                 } // END - if
1413
1414                 // Make sure entries is not bool, then something went wrong
1415                 assert(!is_bool($entries));
1416         } elseif (!empty($filterFunctions[$search])) {
1417                 // Debug mode enabled?
1418                 if (isDebugModeEnabled()) {
1419                         // Then log it
1420                         /* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'search=' . $search . ',filterFunctions=' . $filterFunctions[$search] . ',key=' . $key . ',search=' . $search . ',entries[' . gettype($entries) . ']=' . $entries . ' - BEFORE!');
1421                 } // END - if
1422
1423                 // Handle extra values
1424                 $entries = handleExtraValues($filterFunctions[$search], $entries, NULL);
1425
1426                 // Debug mode enabled?
1427                 if (isDebugModeEnabled()) {
1428                         // Then log it
1429                         /* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'search=' . $search . ',filterFunctions=' . $filterFunctions[$search] . ',key=' . $key . ',search=' . $search . ',entries[' . gettype($entries) . ']=' . $entries . ' - AFTER!');
1430                 } // END - if
1431
1432                 // Make sure entries is not bool, then something went wrong
1433                 assert(!is_bool($entries));
1434         }
1435
1436         // Return value
1437         return $entries;
1438 }
1439
1440 // Converts timestamp selections into a timestamp
1441 function convertSelectionsToEpocheTime (array &$postData, array &$content, &$id, &$skip) {
1442         // Init test variable
1443         $skip  = FALSE;
1444         $test2 = '';
1445
1446         // Get last three chars
1447         $test = substr($id, -3);
1448
1449         // Improved way of checking! :-)
1450         if (in_array($test, array('_ye', '_mo', '_mn', '_we', '_da', '_ho', '_mi', '_se'))) {
1451                 // Found a multi-selection for timings?
1452                 $test = substr($id, 0, -3);
1453                 if ((isset($postData[$test . '_ye'])) && ((isset($postData[$test . '_mo'])) || (isset($postData[$test . '_mn']))) && (isset($postData[$test . '_we'])) && (isset($postData[$test . '_da'])) && (isset($postData[$test . '_ho'])) && (isset($postData[$test . '_mi'])) && (isset($postData[$test . '_se'])) && ($test != $test2)) {
1454                         // Generate timestamp
1455                         $postData[$test] = createEpocheTimeFromSelections($test, $postData);
1456                         array_push($content, sprintf("`%s`='%s'", $test, $postData[$test]));
1457                         $GLOBALS['skip_config'][$test] = TRUE;
1458
1459                         // Remove data from array
1460                         foreach (array('ye', 'mo', 'mn', 'we', 'da', 'ho', 'mi', 'se') as $rem) {
1461                                 unset($postData[$test . '_' . $rem]);
1462                         } // END - foreach
1463
1464                         // Skip adding
1465                         unset($id);
1466                         $skip = TRUE;
1467                         $test2 = $test;
1468                 } // END - if
1469         } // END - if
1470 }
1471
1472 // Reverts the german decimal comma into Computer decimal dot
1473 // OPPOMENT: translateComma()
1474 function convertCommaToDot ($str) {
1475         // Default float is not a float... ;-)
1476         $float = FALSE;
1477
1478         // Which language is selected?
1479         switch (getLanguage()) {
1480                 case 'de': // German language
1481                         // Remove german thousand dots first
1482                         $str = str_replace('.', '', $str);
1483
1484                         // Replace german commata with decimal dot and cast it
1485                         $float = sprintf(getConfig('FLOAT_MASK'), str_replace(',', '.', $str));
1486                         break;
1487
1488                 default: // US and so on
1489                         // Remove thousand commatas first and cast
1490                         $float = sprintf(getConfig('FLOAT_MASK'), str_replace(',', '', $str));
1491                         break;
1492         } // END - switch
1493
1494         // Return float
1495         return $float;
1496 }
1497
1498 // Handle menu-depending failed logins and return the rendered content
1499 function handleLoginFailures ($accessLevel) {
1500         // Default output is empty ;-)
1501         $OUT = '';
1502
1503         // Is the session data set?
1504         if ((isSessionVariableSet('mailer_' . $accessLevel . '_failures')) && (isSessionVariableSet('mailer_' . $accessLevel . '_last_failure'))) {
1505                 // Ignore zero values
1506                 if (getSession('mailer_' . $accessLevel . '_failures') > 0) {
1507                         // Non-guest has login failures found, get both data and prepare it for template
1508                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'accessLevel=' . $accessLevel . '<br />');
1509                         $content = array(
1510                                 'login_failures' => 'mailer_' . $accessLevel . '_failures',
1511                                 'last_failure'   => generateDateTime(getSession('mailer_' . $accessLevel . '_last_failure'), 2)
1512                         );
1513
1514                         // Load template
1515                         $OUT = loadTemplate('login_failures', TRUE, $content);
1516                 } // END - if
1517
1518                 // Reset session data
1519                 setSession('mailer_' . $accessLevel . '_failures', '');
1520                 setSession('mailer_' . $accessLevel . '_last_failure', '');
1521         } // END - if
1522
1523         // Return rendered content
1524         return $OUT;
1525 }
1526
1527 // Rebuild cache
1528 function rebuildCache ($cache, $inc = '', $force = FALSE) {
1529         // Debug message
1530         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, sprintf("cache=%s, inc=%s, force=%s", $cache, $inc, intval($force)));
1531
1532         // Shall I remove the cache file?
1533         if ((isExtensionInstalled('cache')) && (isCacheInstanceValid()) && (isHtmlOutputMode())) {
1534                 // Rebuild cache only in HTML output-mode
1535                 // @TODO This should be rewritten not to load the cache file for just checking if it is there for save removal.
1536                 if ($GLOBALS['cache_instance']->loadCacheFile($cache)) {
1537                         // Destroy it
1538                         $GLOBALS['cache_instance']->removeCacheFile($force);
1539                 } // END - if
1540
1541                 // Include file given?
1542                 if (!empty($inc)) {
1543                         // Construct FQFN
1544                         $inc = sprintf("inc/loader/load-%s.php", $inc);
1545
1546                         // Is the include there?
1547                         if (isIncludeReadable($inc)) {
1548                                 // And rebuild it from scratch
1549                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'inc=' . $inc . ' - LOADED!');
1550                                 loadInclude($inc);
1551                         } else {
1552                                 // Include not found
1553                                 logDebugMessage(__FUNCTION__, __LINE__, 'Include ' . $inc . ' not found. cache=' . $cache);
1554                         }
1555                 } // END - if
1556         } // END - if
1557 }
1558
1559 // Determines the real remote address
1560 function determineRealRemoteAddress ($remoteAddr = FALSE) {
1561         // Default is 127.0.0.1
1562         $address = '127.0.0.1';
1563
1564         // Is a proxy in use?
1565         if ((isset($_SERVER['HTTP_X_FORWARDED_FOR'])) && (!$remoteAddr)) {
1566                 // Proxy was used
1567                 $address = $_SERVER['HTTP_X_FORWARDED_FOR'];
1568         } elseif ((isset($_SERVER['HTTP_CLIENT_IP'])) && (!$remoteAddr)) {
1569                 // Yet, another proxy
1570                 $address = $_SERVER['HTTP_CLIENT_IP'];
1571         } elseif (isset($_SERVER['REMOTE_ADDR'])) {
1572                 // The regular address when no proxy was used
1573                 $address = $_SERVER['REMOTE_ADDR'];
1574         }
1575
1576         // This strips out the real address from proxy output
1577         if (strstr($address, ',')) {
1578                 $addressArray = explode(',', $address);
1579                 $address = $addressArray[0];
1580         } // END - if
1581
1582         // Return the result
1583         return $address;
1584 }
1585
1586 // Adds a bonus mail to the queue
1587 // This is a high-level function!
1588 function addNewBonusMail ($data, $mode = '', $output = TRUE) {
1589         // Use mode from data if not set and availble ;-)
1590         if ((empty($mode)) && (isset($data['mail_mode']))) {
1591                 $mode = $data['mail_mode'];
1592         } // END - if
1593
1594         // Generate receiver list
1595         $receiver = generateReceiverList($data['cat'], $data['receiver'], $mode);
1596
1597         // Receivers added?
1598         if (!empty($receiver)) {
1599                 // Add bonus mail to queue
1600                 addBonusMailToQueue(
1601                         $data['subject'],
1602                         $data['text'],
1603                         $receiver,
1604                         $data['points'],
1605                         $data['seconds'],
1606                         $data['url'],
1607                         $data['cat'],
1608                         $mode,
1609                         $data['receiver']
1610                 );
1611
1612                 // Mail inserted into bonus pool
1613                 if ($output === TRUE) {
1614                         displayMessage('{--ADMIN_BONUS_SEND--}');
1615                 } // END - if
1616         } elseif ($output === TRUE) {
1617                 // More entered than can be reached!
1618                 displayMessage('{--ADMIN_MORE_SELECTED--}');
1619         } else {
1620                 // Debug log
1621                 logDebugMessage(__FUNCTION__, __LINE__, 'cat=' . $data['cat'] . ',receiver=' . $data['receiver'] . ',data=' . base64_encode(serialize($data)) . ' More selected, than available!');
1622         }
1623 }
1624
1625 // Enables the hourly reset mode and runs it
1626 function doHourly () {
1627         // Enable the hourly reset mode
1628         $GLOBALS['hourly_enabled'] = TRUE;
1629
1630         // Run filters (one always!)
1631         runFilterChain('hourly');
1632
1633         // Do not update in hourly debug mode
1634         if ((!isConfigEntrySet('DEBUG_HOURLY')) || (!isDebugHourlyEnabled())) {
1635                 // Update database
1636                 updateConfiguration('last_hourly', getHour());
1637         } // END - if
1638 }
1639
1640 // Enables the daily reset mode and runs it
1641 function doDaily () {
1642         // Enable the reset mode
1643         $GLOBALS['daily_enabled'] = TRUE;
1644
1645         // Run filters
1646         runFilterChain('daily');
1647
1648         // Do not update in daily debug mode
1649         if ((!isConfigEntrySet('DEBUG_DAILY')) || (!isDebugDailyEnabled())) {
1650                 // Update database
1651                 updateConfiguration('last_daily', getDay());
1652         } // END - if
1653 }
1654
1655 // Enables the weekly reset mode and runs it
1656 function doWeekly () {
1657         // Enable the reset mode
1658         $GLOBALS['weekly_enabled'] = TRUE;
1659
1660         // Run filters
1661         runFilterChain('weekly');
1662
1663         // Do not update in weekly debug mode
1664         if ((!isConfigEntrySet('DEBUG_WEEKLY')) || (!isDebugWeeklyEnabled())) {
1665                 // Update database
1666                 updateConfiguration('last_weekly', getWeek());
1667         } // END - if
1668 }
1669
1670 // Enables the monthly reset mode and runs it
1671 function doMonthly () {
1672         // Enable the reset mode
1673         $GLOBALS['monthly_enabled'] = TRUE;
1674
1675         // Run filters
1676         runFilterChain('monthly');
1677
1678         // Do not update in monthly debug mode
1679         if ((!isConfigEntrySet('DEBUG_MONTHLY')) || (!isDebugMonthlyEnabled())) {
1680                 // Update database
1681                 updateConfiguration('last_monthly', getMonth());
1682         } // END - if
1683 }
1684
1685 // Shuts down the mailer (e.g. closing database link, flushing output/filters, etc.)
1686 function doShutdown () {
1687         // Call the filter chain 'shutdown'
1688         runFilterChain('shutdown', NULL);
1689
1690         // Check if link is up
1691         if (SQL_IS_LINK_UP()) {
1692                 // Close link
1693                 SQL_CLOSE(__FUNCTION__, __LINE__);
1694         } elseif (!isInstallationPhase()) {
1695                 // No database link
1696                 reportBug(__FUNCTION__, __LINE__, 'Database link is already down, while shutdown is running.');
1697         }
1698
1699         // Stop executing here
1700         exit;
1701 }
1702
1703 // Init member id
1704 function initMemberId () {
1705         $GLOBALS['member_id'] = '0';
1706 }
1707
1708 // Setter for member id
1709 function setMemberId ($memberId) {
1710         // We should not set member id to zero
1711         if (!isValidId($memberId)) {
1712                 reportBug(__FUNCTION__, __LINE__, 'Userid should not be set zero.');
1713         } // END - if
1714
1715         // Set it secured
1716         $GLOBALS['member_id'] = bigintval($memberId);
1717 }
1718
1719 // Getter for member id or returns zero
1720 function getMemberId () {
1721         // Default member id
1722         $memberId = '0';
1723
1724         // Is the member id set?
1725         if (isMemberIdSet()) {
1726                 // Then use it
1727                 $memberId = $GLOBALS['member_id'];
1728         } // END - if
1729
1730         // Return it
1731         return $memberId;
1732 }
1733
1734 // Checks ether the member id is set
1735 function isMemberIdSet () {
1736         return (isset($GLOBALS['member_id']));
1737 }
1738
1739 // Setter for extra title
1740 function setExtraTitle ($extraTitle) {
1741         $GLOBALS['extra_title'] = $extraTitle;
1742 }
1743
1744 // Getter for extra title
1745 function getExtraTitle () {
1746         // Is the extra title set?
1747         if (!isExtraTitleSet()) {
1748                 // No, then abort here
1749                 reportBug(__FUNCTION__, __LINE__, 'extra_title is not set!');
1750         } // END - if
1751
1752         // Return it
1753         return $GLOBALS['extra_title'];
1754 }
1755
1756 // Checks if the extra title is set
1757 function isExtraTitleSet () {
1758         return ((isset($GLOBALS['extra_title'])) && (!empty($GLOBALS['extra_title'])));
1759 }
1760
1761 /**
1762  * Reads a directory recursively by default and searches for files not matching
1763  * an exclusion pattern. You can now keep the exclusion pattern empty for reading
1764  * a whole directory.
1765  *
1766  * @param       $baseDir                        Relative base directory to PATH to scan from
1767  * @param       $prefix                         Prefix for all positive matches (which files should be found)
1768  * @param       $fileIncludeDirs        whether to include directories in the final output array
1769  * @param       $addBaseDir                     whether to add $baseDir to all array entries
1770  * @param       $excludeArray           Excluded files and directories, these must be full files names, e.g. 'what-' will exclude all files named 'what-' but won't exclude 'what-foo.php'
1771  * @param       $extension                      File extension for all positive matches
1772  * @param       $excludePattern         Regular expression to exclude more files (preg_match())
1773  * @param       $recursive                      whether to scan recursively
1774  * @param       $suffix                         Suffix for positive matches ($extension will be appended, too)
1775  * @return      $foundMatches           All found positive matches for above criteria
1776  */
1777 function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = FALSE, $addBaseDir = TRUE, $excludeArray = array(), $extension = '.php', $excludePattern = '@(\.|\.\.)$@', $recursive = TRUE, $suffix = '') {
1778         // Add default entries we should always exclude
1779         array_unshift($excludeArray, '.', '..', '.svn', '.htaccess');
1780
1781         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'baseDir=' . $baseDir . ',prefix=' . $prefix . ' - Entered!');
1782         // Init found includes
1783         $foundMatches = array();
1784
1785         // Open directory
1786         $dirPointer = opendir(getPath() . $baseDir) or reportBug(__FUNCTION__, __LINE__, 'Cannot read directory ' . basename($baseDir) . '.');
1787
1788         // Read all entries
1789         while ($baseFile = readdir($dirPointer)) {
1790                 // Exclude '.', '..' and entries in $excludeArray automatically
1791                 if (in_array($baseFile, $excludeArray, TRUE))  {
1792                         // Exclude them
1793                         //* DEBUG: */ debugOutput('excluded=' . $baseFile);
1794                         continue;
1795                 } // END - if
1796
1797                 // Construct include filename and FQFN
1798                 $fileName = $baseDir . $baseFile;
1799                 $FQFN = getPath() . $fileName;
1800
1801                 // Remove double slashes
1802                 $FQFN = str_replace('//', '/', $FQFN);
1803
1804                 // Check if the base filenname matches an exclusion pattern and if the pattern is not empty
1805                 if ((!empty($excludePattern)) && (preg_match($excludePattern, $baseFile, $match))) {
1806                         // Debug message
1807                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'baseDir=' . $baseDir . ',baseFile=' . $baseFile . ',FQFN=' . $FQFN);
1808
1809                         // Exclude this one
1810                         continue;
1811                 } // END - if
1812
1813                 // Skip also files with non-matching prefix genericly
1814                 if (($recursive === TRUE) && (isDirectory($FQFN))) {
1815                         // Is a redirectory so read it as well
1816                         $foundMatches = merge_array($foundMatches, getArrayFromDirectory($baseDir . $baseFile . '/', $prefix, $fileIncludeDirs, $addBaseDir, $excludeArray, $extension, $excludePattern, $recursive));
1817
1818                         // And skip further processing
1819                         continue;
1820                 } elseif (!isFilePrefixFound($baseFile, $prefix)) {
1821                         // Skip this file
1822                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Invalid prefix in file ' . $baseFile . ', prefix=' . $prefix);
1823                         continue;
1824                 } elseif ((!empty($suffix)) && (substr($baseFile, -(strlen($suffix . $extension)), (strlen($suffix . $extension))) != $suffix . $extension)) {
1825                         // Skip wrong suffix as well
1826                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Invalid suffix in file ' . $baseFile . ', suffix=' . $suffix);
1827                         continue;
1828                 } elseif (!isFileReadable($FQFN)) {
1829                         // Not readable so skip it
1830                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File ' . $FQFN . ' is not readable!');
1831                 } elseif (filesize($FQFN) < 50) {
1832                         // Might be deprecated
1833                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File ' . $FQFN . ' is to small (' . filesize($FQFN) . ')!');
1834                         continue;
1835                 } elseif (($extension == '.php') && (filesize($FQFN) < 50)) {
1836                         // This PHP script is deprecated
1837                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File ' . $FQFN . ' is a deprecated PHP script!');
1838                         continue;
1839                 }
1840
1841                 // Get file' extension (last 4 chars)
1842                 $fileExtension = substr($baseFile, -4, 4);
1843
1844                 // Is the file a PHP script or other?
1845                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'baseDir=' . $baseDir . ',prefix=' . $prefix . ',baseFile=' . $baseFile);
1846                 if (($fileExtension == '.php') || (($fileIncludeDirs === TRUE) && (isDirectory($FQFN)))) {
1847                         // Is this a valid include file?
1848                         if ($extension == '.php') {
1849                                 // Remove both for extension name
1850                                 $extName = substr($baseFile, strlen($prefix), -4);
1851
1852                                 // Add file with or without base path
1853                                 if ($addBaseDir === TRUE) {
1854                                         // With base path
1855                                         array_push($foundMatches, $fileName);
1856                                 } else {
1857                                         // No base path
1858                                         array_push($foundMatches, $baseFile);
1859                                 }
1860                         } else {
1861                                 // We found .php file but should not search for them, why?
1862                                 reportBug(__FUNCTION__, __LINE__, 'We should find files with extension=' . $extension . ', but we found a PHP script. (baseFile=' . $baseFile . ')');
1863                         }
1864                 } elseif ($fileExtension == $extension) {
1865                         // Other, generic file found
1866                         array_push($foundMatches, $fileName);
1867                 }
1868         } // END - while
1869
1870         // Close directory
1871         closedir($dirPointer);
1872
1873         // Sort array
1874         sort($foundMatches);
1875
1876         // Return array with include files
1877         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '- Left!');
1878         return $foundMatches;
1879 }
1880
1881 // Checks whether $prefix is found in $fileName
1882 function isFilePrefixFound ($fileName, $prefix) {
1883         // @TODO Find a way to cache this
1884         return (substr($fileName, 0, strlen($prefix)) == $prefix);
1885 }
1886
1887 // Maps a module name into a database table name
1888 function mapModuleToTable ($moduleName) {
1889         // Map only these, still lame code...
1890         switch ($moduleName) {
1891                 case 'index': // 'index' is the guest's menu
1892                         $moduleName = 'guest'; 
1893                         break;
1894
1895                 case 'login': // ... and 'login' the member's menu
1896                         $moduleName = 'member';
1897                         break;
1898                 // Anything else will not be mapped, silently.
1899         } // END - switch
1900
1901         // Return result
1902         return $moduleName;
1903 }
1904
1905 // Add SQL debug data to array for later output
1906 function addSqlToDebug ($result, $sqlString, $timing, $F, $L) {
1907         // Is there cache?
1908         if (!isset($GLOBALS['debug_sql_available'])) {
1909                 // Check it and cache it in $GLOBALS
1910                 $GLOBALS['debug_sql_available'] = ((isConfigurationLoaded()) && (isDisplayDebugSqlEnabled()));
1911         } // END - if
1912         
1913         // Don't execute anything here if we don't need or ext-other is missing
1914         if ($GLOBALS['debug_sql_available'] === FALSE) {
1915                 return;
1916         } // END - if
1917
1918         // Already executed?
1919         if (isset($GLOBALS['debug_sqls'][$F][$L][$sqlString])) {
1920                 // Then abort here, we don't need to profile a query twice
1921                 return;
1922         } // END - if
1923
1924         // Remeber this as profiled (or not, but we don't care here)
1925         $GLOBALS['debug_sqls'][$F][$L][$sqlString] = TRUE;
1926
1927         // Generate record
1928         $record = array(
1929                 'num_rows' => SQL_NUMROWS($result),
1930                 'affected' => SQL_AFFECTEDROWS(),
1931                 'sql_str'  => $sqlString,
1932                 'timing'   => $timing,
1933                 'file'     => basename($F),
1934                 'line'     => $L
1935         );
1936
1937         // Add it
1938         array_push($GLOBALS['debug_sqls'], $record);
1939 }
1940
1941 // Initializes the cache instance
1942 function initCacheInstance () {
1943         // Check for double-initialization
1944         if (isset($GLOBALS['cache_instance'])) {
1945                 // This should not happen and must be fixed
1946                 reportBug(__FUNCTION__, __LINE__, 'Double initialization of cache system detected. cache_instance[]=' . gettype($GLOBALS['cache_instance']));
1947         } // END - if
1948
1949         // Load include for CacheSystem class
1950         loadIncludeOnce('inc/classes/cachesystem.class.php');
1951
1952         // Initialize cache system only when it's needed
1953         $GLOBALS['cache_instance'] = new CacheSystem();
1954
1955         // Did it work?
1956         if ($GLOBALS['cache_instance']->getStatusCode() != 'done') {
1957                 // Failed to initialize cache sustem
1958                 reportBug(__FUNCTION__, __LINE__, 'Cache system returned with unexpected error. getStatusCode()=' . $GLOBALS['cache_instance']->getStatusCode());
1959         } // END - if
1960 }
1961
1962 // Getter for message from array or raw message
1963 function getMessageFromIndexedArray ($message, $pos, $array) {
1964         // Check if the requested message was found in array
1965         if (isset($array[$pos])) {
1966                 // ... if yes then use it!
1967                 $ret = $array[$pos];
1968         } else {
1969                 // ... else use default message
1970                 $ret = $message;
1971         }
1972
1973         // Return result
1974         return $ret;
1975 }
1976
1977 // Convert ';' to ', ' for e.g. receiver list
1978 function convertReceivers ($old) {
1979         return str_replace(';', ', ', $old);
1980 }
1981
1982 // Get a module from filename and access level
1983 function getModuleFromFileName ($file, $accessLevel) {
1984         // Default is 'invalid';
1985         $modCheck = 'invalid';
1986
1987         // @TODO This is still very static, rewrite it somehow
1988         switch ($accessLevel) {
1989                 case 'admin':
1990                         $modCheck = 'admin';
1991                         break;
1992
1993                 case 'sponsor':
1994                 case 'guest':
1995                 case 'member':
1996                         $modCheck = getModule();
1997                         break;
1998
1999                 default: // Unsupported file name / access level
2000                         reportBug(__FUNCTION__, __LINE__, 'Unsupported file name=' . basename($file) . '/access level=' . $accessLevel);
2001                         break;
2002         } // END - switch
2003
2004         // Return result
2005         return $modCheck;
2006 }
2007
2008 // Encodes an URL for adding session id, etc.
2009 function encodeUrl ($url, $outputMode = '0') {
2010         // Is there already have a PHPSESSID inside or view.php is called? Then abort here
2011         if ((isInStringIgnoreCase(session_name(), $url)) || (isRawOutputMode())) {
2012                 // Raw output mode detected or session_name() found in URL
2013                 return $url;
2014         } // END - if
2015
2016         // Is there a valid session?
2017         if ((!isSessionValid()) && (!isSpider())) {
2018                 // Determine right separator
2019                 $separator = '&amp;';
2020                 if (!isInString('?', $url)) {
2021                         // No question mark
2022                         $separator = '?';
2023                 } // END - if
2024
2025                 // Then add it to URL
2026                 $url .= $separator . session_name() . '=' . session_id();
2027         } // END - if
2028
2029         // Add {?URL?} ?
2030         if ((substr($url, 0, strlen(getUrl())) != getUrl()) && (substr($url, 0, 7) != '{?URL?}') && (substr($url, 0, 7) != 'http://') && (substr($url, 0, 8) != 'https://')) {
2031                 // Add it
2032                 $url = '{?URL?}/' . $url;
2033         } // END - if
2034
2035         // Debug message
2036         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'url=' . $url . ',isHtmlOutputMode()=' . intval(isHtmlOutputMode()) . ',outputMode=' . $outputMode);
2037
2038         // Is there to decode entities?
2039         if (!isHtmlOutputMode()) {
2040                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'url=' . $url . ' - BEFORE DECODING');
2041                 // Decode them for e.g. JavaScript parts
2042                 $url = decodeEntities($url);
2043                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'url=' . $url . ' - AFTER DECODING');
2044         } // END - if
2045
2046         // Debug log
2047         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'url=' . $url . ',outputMode=' . $outputMode);
2048
2049         // Return the encoded URL
2050         return $url;
2051 }
2052
2053 // Simple check for spider
2054 function isSpider () {
2055         // Get the UA and trim it down
2056         $userAgent = trim(detectUserAgent(TRUE));
2057
2058         // It should not be empty, if so it is better a browser
2059         if (empty($userAgent)) {
2060                 // It is a browser that blocks its UA string
2061                 return FALSE;
2062         } // END - if
2063
2064         // Is it a spider?
2065         return ((isInStringIgnoreCase('spider', $userAgent)) || (isInStringIgnoreCase('slurp', $userAgent)) || (isInStringIgnoreCase('bot', $userAgent)) || (isInStringIgnoreCase('archiver', $userAgent)));
2066 }
2067
2068 // Function to search for the last modified file
2069 function searchDirsRecursive ($dir, &$last_changed, $lookFor = 'Date') {
2070         // Get dir as array
2071         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'dir=' . $dir);
2072         // Does it match what we are looking for? (We skip a lot files already!)
2073         // RegexPattern to exclude  ., .., .revision,  .svn, debug.log or .cache in the filenames
2074         $excludePattern = '@(\.revision|\.svn|debug\.log|\.cache|config\.php)$@';
2075
2076         $ds = getArrayFromDirectory($dir, '', FALSE, TRUE, array(), '.php', $excludePattern);
2077         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'count(ds)='.count($ds));
2078
2079         // Walk through all entries
2080         foreach ($ds as $d) {
2081                 // Generate proper FQFN
2082                 $FQFN = str_replace('//', '/', getPath() . $dir . '/' . $d);
2083
2084                 // Is it a file and readable?
2085                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'dir=' . $dir . ',d=' . $d);
2086                 if (isFileReadable($FQFN)) {
2087                         // $FQFN is a readable file so extract the requested data from it
2088                         $check = extractRevisionInfoFromFile($FQFN, $lookFor);
2089                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File: ' . $d . ' found. check=' . $check);
2090
2091                         // Is the file more recent?
2092                         if ((!isset($last_changed[$lookFor])) || ($last_changed[$lookFor] < $check)) {
2093                                 // This file is newer as the file before
2094                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'NEWER!');
2095                                 $last_changed['path_name'] = $FQFN;
2096                                 $last_changed[$lookFor] = $check;
2097                         } // END - if
2098                 } else {
2099                         // Not readable
2100                         /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File: ' . $d . ' not readable or directory.');
2101                 }
2102         } // END - foreach
2103 }
2104
2105 // Handles the braces [] of a field (e.g. value of 'name' attribute)
2106 function handleFieldWithBraces ($field) {
2107         // Are there braces [] at the end?
2108         if (substr($field, -2, 2) == '[]') {
2109                 /*
2110                  * Try to find one and replace it. I do it this way to allow easy
2111                  * extending of this code.
2112                  */
2113                 foreach (array('admin_list_builder_id_value') as $key) {
2114                         /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'key=' . $key);
2115                         // Is the cache entry set?
2116                         if (isset($GLOBALS[$key])) {
2117                                 // Insert it
2118                                 $field = str_replace('[]', '[' . $GLOBALS[$key] . ']', $field);
2119
2120                                 // And abort
2121                                 /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'key=' . $key, 'field=' . $field);
2122                                 break;
2123                         } // END - if
2124                 } // END - foreach
2125         } // END - if
2126
2127         // Return it
2128         return $field;
2129 }
2130
2131 // Converts a zero or NULL to word 'NULL'
2132 function convertZeroToNull ($number) {
2133         // Is it a valid username?
2134         if ((!is_null($number)) && (!empty($number)) && ($number > 0)) {
2135                 // Always secure it
2136                 $number = bigintval($number);
2137         } else {
2138                 // Is not valid or zero
2139                 $number = 'NULL';
2140         }
2141
2142         // Return it
2143         return $number;
2144 }
2145
2146 // Converts a NULL|empty string|< 1 to zero
2147 function convertNullToZero ($number) {
2148         // Is it a valid username?
2149         if ((is_null($number)) || (empty($number)) || ($number < 1)) {
2150                 // Is not valid or zero
2151                 $number = '0';
2152         } // END - if
2153
2154         // Return it
2155         return $number;
2156 }
2157
2158 // Capitalizes a string with underscores, e.g.: some_foo_string will become SomeFooString
2159 // Note: This function is cached
2160 function capitalizeUnderscoreString ($str) {
2161         // Is there cache?
2162         if (!isset($GLOBALS[__FUNCTION__][$str])) {
2163                 // Init target string
2164                 $capitalized = '';
2165
2166                 // Explode it with the underscore, but rewrite dashes to underscore before
2167                 $strArray = explode('_', str_replace('-', '_', $str));
2168
2169                 // "Walk" through all elements and make them lower-case but first upper-case
2170                 foreach ($strArray as $part) {
2171                         // Capitalize the string part
2172                         $capitalized .= firstCharUpperCase($part);
2173                 } // END - foreach
2174
2175                 // Store the converted string in cache array
2176                 $GLOBALS[__FUNCTION__][$str] = $capitalized;
2177         } // END - if
2178
2179         // Return cache
2180         return $GLOBALS[__FUNCTION__][$str];
2181 }
2182
2183 // Generate admin links for mail order
2184 // mailType can be: 'normal' or 'bonus'
2185 function generateAdminMailLinks ($mailType, $mailId) {
2186         // Init variables
2187         $OUT = '';
2188         $table = '';
2189
2190         // Default column for mail status is 'data_type'
2191         // @TODO Rename column data_type to e.g. mail_status
2192         $statusColumn = 'data_type';
2193
2194         // Which mail do we have?
2195         switch ($mailType) {
2196                 case 'bonus': // Bonus mail
2197                         $table = 'bonus';
2198                         break;
2199
2200                 case 'normal': // Member mail
2201                         $table = 'pool';
2202                         break;
2203
2204                 default: // Handle unsupported types
2205                         logDebugMessage(__FUNCTION__, __LINE__, 'Unsupported mail type ' . $mailType . ' for mailId=' . $mailId . ' detected.');
2206                         $OUT = '<div align="center">{%message,ADMIN_UNSUPPORTED_MAIL_TYPE_DETECTED=' . $mailType . '%}</div>';
2207                         break;
2208         } // END - switch
2209
2210         // Is the mail type supported?
2211         if (!empty($table)) {
2212                 // Query for the mail
2213                 $result = SQL_QUERY_ESC("SELECT `id`, `%s` AS `mail_status` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `id`=%s LIMIT 1",
2214                         array(
2215                                 $statusColumn,
2216                                 $table,
2217                                 bigintval($mailId)
2218                         ), __FILE__, __LINE__);
2219
2220                 // Is there one entry there?
2221                 if (SQL_NUMROWS($result) == 1) {
2222                         // Load the entry
2223                         $content = SQL_FETCHARRAY($result);
2224
2225                         // Add output and type
2226                         $content['type']     = $mailType;
2227                         $content['__output'] = '';
2228
2229                         // Filter all data
2230                         $content = runFilterChain('generate_admin_mail_links', $content);
2231
2232                         // Get output back
2233                         $OUT = $content['__output'];
2234                 } // END - if
2235
2236                 // Free result
2237                 SQL_FREERESULT($result);
2238         } // END - if
2239
2240         // Return generated HTML code
2241         return $OUT;
2242 }
2243
2244
2245 /**
2246  * Determine if a string can represent a number in hexadecimal
2247  *
2248  * @param       $hex    A string to check if it is hex-encoded
2249  * @return      $foo    True if the string is a hex, otherwise false
2250  * @author      Marques Johansson
2251  * @link        http://php.net/manual/en/function.http-chunked-decode.php#89786
2252  */
2253 function isHexadecimal ($hex) {
2254         // Make it lowercase
2255         $hex = strtolower(trim(ltrim($hex, '0')));
2256
2257         // Fix empty strings to zero
2258         if (empty($hex)) {
2259                 $hex = 0;
2260         } // END - if
2261
2262         // Simply compare decode->encode result with original
2263         return ($hex == dechex(hexdec($hex)));
2264 }
2265
2266 /**
2267  * Replace chr(13) with "[r]" and PHP_EOL with "[n]" and add a final new-line to make
2268  * them visible to the developer. Use this function to debug e.g. buggy HTTP
2269  * response handler functions.
2270  *
2271  * @param       $str    String to overwork
2272  * @return      $str    Overworked string
2273  */
2274 function replaceReturnNewLine ($str) {
2275         return str_replace(array(chr(13), chr(10)), array('[r]', '[n]'), $str);
2276 }
2277
2278 // Converts a given string by splitting it up with given delimiter similar to
2279 // explode(), but appending the delimiter again
2280 function stringToArray ($delimiter, $string) {
2281         // Init array
2282         $strArray = array();
2283
2284         // "Walk" through all entries
2285         foreach (explode($delimiter, $string) as $split) {
2286                 //  Append the delimiter and add it to the array
2287                 array_push($strArray, $split . $delimiter);
2288         } // END - foreach
2289
2290         // Return array
2291         return $strArray;
2292 }
2293
2294 // Detects the prefix 'mb_' if a multi-byte string is given
2295 function detectMultiBytePrefix ($str) {
2296         // Default is without multi-byte
2297         $mbPrefix = '';
2298
2299         // Detect multi-byte (strictly)
2300         if (mb_detect_encoding($str, 'auto', TRUE) !== FALSE) {
2301                 // With multi-byte encoded string
2302                 $mbPrefix = 'mb_';
2303         } // END - if
2304
2305         // Return the prefix
2306         return $mbPrefix;
2307 }
2308
2309 // Searches given array for a sub-string match and returns all found keys in an array
2310 function getArrayKeysFromSubStrArray ($heystack, $needles, $offset = 0) {
2311         // Init array for all found keys
2312         $keys = array();
2313
2314         // Now check all entries
2315         foreach ($needles as $key => $needle) {
2316                 // Is there found a partial string?
2317                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'heystack='.$heystack.',key='.$key.',needle='.$needle.',offset='.$offset);
2318                 if (strpos($heystack, $needle, $offset) !== FALSE) {
2319                         // Add the found key
2320                         array_push($keys, $key);
2321                 } // END - if
2322         } // END - foreach
2323
2324         // Return the array
2325         return $keys;
2326 }
2327
2328 // Determines database column name from given subject and locked
2329 function determinePointsColumnFromSubjectLocked ($subject, $locked) {
2330         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'subject=' . $subject . ',locked=' . intval($locked) . ' - ENTERED!');
2331         // Default is 'normal' points
2332         $pointsColumn = 'points';
2333
2334         // Which points, locked or normal?
2335         if ($locked === TRUE) {
2336                 $pointsColumn = 'locked_points';
2337         } // END - if
2338
2339         // Prepare array for filter
2340         $filterData = array(
2341                 'subject' => $subject,
2342                 'locked'  => $locked,
2343                 'column'  => $pointsColumn
2344         );
2345
2346         // Run the filter
2347         $filterData = runFilterChain('determine_points_column_name', $filterData);
2348
2349         // Extract column name from array
2350         $pointsColumn = $filterData['column'];
2351
2352         // Return it
2353         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'subject=' . $subject . ',locked=' . intval($locked) . ',pointsColumn=' . $pointsColumn . ' - EXIT!');
2354         return $pointsColumn;
2355 }
2356
2357 // Converts a boolean variable into 'Y' for true and 'N' for false
2358 function convertBooleanToYesNo ($boolean) {
2359         // Default is 'N'
2360         $converted = 'N';
2361         if ($boolean === TRUE) {
2362                 // Set 'Y'
2363                 $converted = 'Y';
2364         } // END - if
2365
2366         // Return it
2367         return $converted;
2368 }
2369
2370 // "Translates" 'true' to true and 'false' to false
2371 function convertStringToBoolean ($str) {
2372         // Debug message (to measure how often this function is called)
2373         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'str=' . $str);
2374
2375         // Is there cache?
2376         if (!isset($GLOBALS[__FUNCTION__][$str])) {
2377                 // Trim it lower-case for validation
2378                 $strTrimmed = trim(strtolower($str));
2379
2380                 // Is it valid?
2381                 if (!in_array($strTrimmed, array('true', 'false'))) {
2382                         // Not valid!
2383                         reportBug(__FUNCTION__, __LINE__, 'str=' . $str . '(' . $strTrimmed . ') is not true/false');
2384                 } // END - if
2385
2386                 // Determine it
2387                 $GLOBALS[__FUNCTION__][$str] = ($strTrimmed == 'true');
2388         } // END - if
2389
2390         // Return cache
2391         return $GLOBALS[__FUNCTION__][$str];
2392 }
2393
2394 /**
2395  * "Makes" a variable in given string parseable, this function will throw an
2396  * error if the first character is not a dollar sign.
2397  *
2398  * @param       $varString      String which contains a variable
2399  * @return      $return         String with added single quotes for better parsing
2400  */
2401 function makeParseableVariable ($varString) {
2402         // The first character must be a dollar sign
2403         if (substr($varString, 0, 1) != '$') {
2404                 // Please report this
2405                 reportBug(__FUNCTION__, __LINE__, 'varString=' . $varString . ' - No dollar sign detected, will not parse it.');
2406         } // END - if
2407
2408         // Is there cache?
2409         if (!isset($GLOBALS[__FUNCTION__][$varString])) {
2410                 // Snap them in, if [,] are there
2411                 $GLOBALS[__FUNCTION__][$varString] = str_replace(array('[', ']'), array("['", "']"), $varString);
2412         } // END - if
2413
2414         // Return cache
2415         return $GLOBALS[__FUNCTION__][$varString];
2416 }
2417
2418 // "Getter" for random TAN
2419 function getRandomTan () {
2420         // Generate one
2421         return mt_rand(0, 99999);
2422 }
2423
2424 // Removes any : from subject
2425 function removeDoubleDotFromSubject ($subject) {
2426         // Remove it
2427         $subjectArray = explode(':', $subject);
2428         $subject = $subjectArray[0];
2429         unset($subjectArray);
2430
2431         // Return it
2432         return $subject;
2433 }
2434
2435 // Adds a given entry to the database
2436 function memberAddEntries ($tableName, $columns = array(), $filterFunctions = array(), $extraValues = array(), $timeColumns = array(), $columnIndex = NULL) {
2437         // Is it a member?
2438         if (!isMember()) {
2439                 // Then abort here
2440                 return FALSE;
2441         } // END - if
2442
2443         // Set POST data generic userid
2444         setPostRequestElement('userid', getMemberId());
2445
2446         // Call inner function
2447         doGenericAddEntries($tableName, $columns, $filterFunctions, $extraValues, $timeColumns, $columnIndex);
2448
2449         // Entry has been added?
2450         if ((!SQL_HASZEROAFFECTED()) && ($GLOBALS['__XML_PARSE_RESULT'] === TRUE)) {
2451                 // Display success message
2452                 displayMessage('{--MEMBER_ENTRY_ADDED--}');
2453         } else {
2454                 // Display failed message
2455                 displayMessage('{--MEMBER_ENTRY_NOT_ADDED--}');
2456         }
2457 }
2458
2459 // Edit rows by given id numbers
2460 function memberEditEntriesConfirm ($tableName, $columns = array(), $filterFunctions = array(), $extraValues = array(), $timeColumns = array(), $editNow = array(FALSE), $idColumn = array('id'), $userIdColumn = array('userid'), $rawUserId = array('userid'), $cacheFiles = array(), $content = array()) {
2461         // $tableName must be an array
2462         if ((!is_array($tableName)) || (count($tableName) != 1)) {
2463                 // No tableName specified
2464                 reportBug(__FUNCTION__, __LINE__, 'tableName is not given. Please fix your XML,tableName[]=' . gettype($tableName) . '!=array: userIdColumn=' . $userIdColumn);
2465         } elseif (!is_array($idColumn)) {
2466                 // $idColumn is no array
2467                 reportBug(__FUNCTION__, __LINE__, 'idColumn[]=' . gettype($idColumn) . '!=array: userIdColumn=' . $userIdColumn);
2468         } elseif (!is_array($userIdColumn)) {
2469                 // $userIdColumn is no array
2470                 reportBug(__FUNCTION__, __LINE__, 'userIdColumn[]=' . gettype($userIdColumn) . '!=array: userIdColumn=' . $userIdColumn);
2471         } elseif (!is_array($editNow)) {
2472                 // $editNow is no array
2473                 reportBug(__FUNCTION__, __LINE__, 'editNow[]=' . gettype($editNow) . '!=array: userIdColumn=' . $userIdColumn);
2474         } // END - if
2475
2476         // Shall we change here or list for editing?
2477         if ($editNow[0] === TRUE) {
2478                 // Add generic userid field
2479                 setPostRequestElement('userid', getMemberId());
2480
2481                 // Call generic change method
2482                 $affected = doGenericEditEntriesConfirm($tableName, $columns, $filterFunctions, $extraValues, $timeColumns, $editNow, $idColumn, $userIdColumn, $rawUserId, $cacheFiles, 'mem_edit');
2483
2484                 // Was this fine?
2485                 if ($affected == countPostSelection($idColumn[0])) {
2486                         // All deleted
2487                         displayMessage('{--MEMBER_ALL_ENTRIES_EDITED--}');
2488                 } else {
2489                         // Some are still there :(
2490                         displayMessage(sprintf(getMessage('MEMBER_SOME_ENTRIES_NOT_EDITED'), $affected, countPostSelection($idColumn[0])));
2491                 }
2492         } else {
2493                 // List for editing
2494                 memberListBuilder('edit', $tableName, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $rawUserId, $content);
2495         }
2496 }
2497
2498 // Delete rows by given id numbers
2499 function memberDeleteEntriesConfirm ($tableName, $columns = array(), $filterFunctions = array(), $extraValues = array(), $deleteNow = array(FALSE), $idColumn = array('id'), $userIdColumn = array('userid'), $rawUserId = array('userid'), $cacheFiles = array(), $content = array()) {
2500         // Do this only for members
2501         assert(isMember());
2502
2503         // $tableName must be an array
2504         if ((!is_array($tableName)) || (count($tableName) != 1)) {
2505                 // No tableName specified
2506                 reportBug(__FUNCTION__, __LINE__, 'tableName is not given. Please fix your XML,tableName[]=' . gettype($tableName) . '!=array: userIdColumn=' . $userIdColumn);
2507         } elseif (!is_array($idColumn)) {
2508                 // $idColumn is no array
2509                 reportBug(__FUNCTION__, __LINE__, 'idColumn[]=' . gettype($idColumn) . '!=array: userIdColumn=' . $userIdColumn);
2510         } elseif (!is_array($userIdColumn)) {
2511                 // $userIdColumn is no array
2512                 reportBug(__FUNCTION__, __LINE__, 'userIdColumn[]=' . gettype($userIdColumn) . '!=array: userIdColumn=' . $userIdColumn);
2513         } elseif (!is_array($deleteNow)) {
2514                 // $deleteNow is no array
2515                 reportBug(__FUNCTION__, __LINE__, 'deleteNow[]=' . gettype($deleteNow) . '!=array: userIdColumn=' . $userIdColumn);
2516         } // END - if
2517
2518         // Shall we delete here or list for deletion?
2519         if ($deleteNow[0] === TRUE) {
2520                 // Add generic userid field
2521                 setPostRequestElement('userid', getMemberId());
2522
2523                 // Call generic function
2524                 $affected = doGenericDeleteEntriesConfirm($tableName, $columns, $filterFunctions, $extraValues, $deleteNow, $idColumn, $userIdColumn, $rawUserId, $cacheFiles, 'mem_delete');
2525
2526                 // Was this fine?
2527                 if ($affected == countPostSelection($idColumn[0])) {
2528                         // All deleted
2529                         displayMessage('{--MEMBER_ALL_ENTRIES_REMOVED--}');
2530                 } else {
2531                         // Some are still there :(
2532                         displayMessage(sprintf(getMessage('MEMBER_SOME_ENTRIES_NOT_DELETED'), SQL_AFFECTEDROWS(), countPostSelection($idColumn[0])));
2533                 }
2534         } else {
2535                 // List for deletion confirmation
2536                 memberListBuilder('delete', $tableName, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $rawUSerId, $content);
2537         }
2538 }
2539
2540 // Build a special template list
2541 // @TODO cacheFiles is not yet supported
2542 function memberListBuilder ($listType, $tableName, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $rawUserId = array('userid'), $content = array()) {
2543         // Do this only for logged in member
2544         assert(isMember());
2545
2546         // Call inner (general) function
2547         doGenericListBuilder('member', $listType, $tableName, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $rawUserId, $content);
2548 }
2549
2550 // Checks whether given address is IPv4
2551 function isIp4AddressValid ($address) {
2552         // Is there cache?
2553         if (!isset($GLOBALS[__FUNCTION__][$address])) {
2554                 // Determine it ...
2555                 $GLOBALS[__FUNCTION__][$address] = preg_match('/((25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9]))/', $address);
2556         } // END - if
2557
2558         // Return cache
2559         return $GLOBALS[__FUNCTION__][$address];
2560 }
2561
2562 // Returns the string if not empty or FALSE if empty
2563 function validateIsEmpty ($str) {
2564         // Trim it
2565         $trimmed = trim($str);
2566
2567         // Is the string empty?
2568         if (empty($trimmed)) {
2569                 // Then set FALSE
2570                 $str = FALSE;
2571         } // END - if
2572
2573         // Return it
2574         return $str;
2575 }
2576
2577 // "Getter" for seconds from given time unit
2578 function getSecondsFromTimeUnit ($timeUnit) {
2579         // Default is not found
2580         $seconds = NULL;
2581
2582         // "Detect" it
2583         switch ($timeUnit) {
2584                 case 's': // Seconds = 1
2585                         $seconds = 1;
2586                         break;
2587
2588                 case 'm': // Minutes
2589                         $seconds = 60;
2590                         break;
2591
2592                 case 'h': // Hours
2593                         $seconds = 60*60;
2594                         break;
2595
2596                 case 'D': // Days
2597                         $seconds = 60*60*24;
2598                         break;
2599
2600                 case 'W': // Weeks
2601                         $seconds = 60*60*24*7;
2602                         break;
2603
2604                 default: // Unsupported
2605                         reportBug(__FUNCTION__, __LINE__, 'Unsupported time unit ' . $timeUnit . ' detected.');
2606                         break;
2607         } // END - switch
2608
2609         // Return value
2610         return $seconds;
2611 }
2612
2613 // Calulates value for given seconds and time unit
2614 function caluculateTimeUnitValue ($seconds, $timeUnit) {
2615         // Calculate it
2616         return ($seconds / getSecondsFromTimeUnit($timeUnit));
2617 }
2618
2619 // "Getter" for an array from given one but only one index of it
2620 function getArrayFromArrayIndex ($array, $key) {
2621         // Some simple validation
2622         assert(isset($array[0][$key]));
2623
2624         // Init new array
2625         $newArray = array();
2626
2627         // "Walk" through all elements
2628         foreach ($array as $element) {
2629                 $newArray[] = $element[$key];
2630         } // END - if
2631
2632         // Return it
2633         return $newArray;
2634 }
2635
2636 /**
2637  * Compress given data and encodes it into BASE64 to be stored in database with
2638  * SQL_QUERY_ESC()
2639  *
2640  * @param       $data   Data to be compressed and encoded
2641  * @return      $data   Compressed+encoded data
2642  */
2643 function compress ($data) {
2644         // Compress it
2645         return base64_encode(gzcompress($data));
2646 }
2647
2648 /**
2649  * Decompress given data previously compressed with compress().
2650  *
2651  * @param       $data   Data compressed with compress()
2652  * @reurn       $data   Uncompressed data
2653  */
2654 function decompress ($data) {
2655         // Decompress it
2656         return gzuncompress(base64_decode($data));
2657 }
2658
2659 /**
2660  * Converts given charset in given string to UTF-8 if not UTF-8. This function
2661  * is currently limited to iconv().
2662  *
2663  * @param       $str            String to convert charset in
2664  * @param       $charset        Charset to convert from
2665  * @return      $str            Converted string
2666  */
2667 function convertCharsetToUtf8 ($str, $charset) {
2668         // Is iconv() available?
2669         if (!function_exists('iconv')) {
2670                 // Please make it sure
2671                 reportBug(__FUNCTION__, __LINE__, 'PHP function iconv() is currently required to do charset convertion.');
2672         } // END - if
2673
2674         // Is the charset not UTF-8?
2675         if (strtoupper($charset) != 'UTF-8') {
2676                 // Convert it to UTF-8
2677                 $str = iconv(strtoupper($charset), 'UTF-8//TRANSLIT', $str);
2678         } // END - if
2679
2680         // Return converted string
2681         return $str;
2682 }
2683
2684 // ----------------------------------------------------------------------------
2685 //              "Translatation" functions for points_data table
2686 // ----------------------------------------------------------------------------
2687
2688 // Translates generically some data into a target string
2689 function translateGeneric ($messagePrefix, $data, $messageSuffix = '') {
2690         // Is the method null or empty?
2691         if (is_null($data)) {
2692                 // Is NULL
2693                 $data = 'NULL';
2694         } elseif (empty($data)) {
2695                 // Is empty (string)
2696                 $data = 'EMPTY';
2697         } // END - if
2698
2699         // Default column name is unknown
2700         $return = '{%message,' . $messagePrefix . '_UNKNOWN' . $messageSuffix . '=' . strtoupper($data) . '%}';
2701
2702         // Construct message id
2703         $messageId = $messagePrefix . '_' . strtoupper($data) . $messageSuffix;
2704
2705         // Is it there?
2706         if (isMessageIdValid($messageId)) {
2707                 // Then use it as message string
2708                 $return = '{--' . $messageId . '--}';
2709         } // END - if
2710
2711         // Return the column name
2712         return $return;
2713 }
2714
2715 // Translates points subject to human-readable
2716 function translatePointsSubject ($subject) {
2717         // Remove any :x
2718         $subject = removeDoubleDotFromSubject($subject);
2719
2720         // Return it
2721         return translateGeneric('POINTS_SUBJECT', $subject);
2722 }
2723
2724 // "Translates" given points account type
2725 function translatePointsAccountType ($accountType) {
2726         // Return it
2727         return translateGeneric('POINTS_ACCOUNT_TYPE', $accountType);
2728 }
2729
2730 // "Translates" given points "locked mode"
2731 function translatePointsLockedMode ($lockedMode) {
2732         // Return it
2733         return translateGeneric('POINTS_LOCKED_MODE', $lockedMode);
2734 }
2735
2736 // "Translates" given points payment method
2737 function translatePointsPaymentMethod ($paymentMethod) {
2738         // Return it
2739         return translateGeneric('POINTS_PAYMENT_METHOD', $paymentMethod);
2740 }
2741
2742 // "Translates" given points account provider
2743 function translatePointsAccountProvider ($accountProvider) {
2744         // Return it
2745         return translateGeneric('POINTS_ACCOUNT_PROVIDER', $accountProvider);
2746 }
2747
2748 // "Translates" given points notify recipient
2749 function translatePointsNotifyRecipient ($notifyRecipient) {
2750         // Return it
2751         return translateGeneric('POINTS_NOTIFY_RECIPIENT', $notifyRecipient);
2752 }
2753
2754 // "Translates" given mode to a human-readable version
2755 function translatePointsMode ($pointsMode) {
2756         // Return it
2757         return translateGeneric('POINTS_MODE', $pointsMode);
2758 }
2759
2760 // "Translates" task type to a human-readable version
2761 function translateTaskType ($taskType) {
2762         // Return it
2763         return translateGeneric('ADMIN_TASK_TYPE', $taskType);
2764 }
2765
2766 // "Translates" task status to a human-readable version
2767 function translateTaskStatus ($taskStatus) {
2768         // Return it
2769         return translateGeneric('ADMIN_TASK_STATUS', $taskStatus);
2770 }
2771
2772 /*
2773  *-----------------------------------------------------------------------------
2774  * Automatically re-created functions, all taken from user comments on
2775  * www.php.net
2776  *-----------------------------------------------------------------------------
2777  */
2778 if (!function_exists('html_entity_decode')) {
2779         // Taken from documentation on www.php.net
2780         function html_entity_decode ($string) {
2781                 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
2782                 $trans_tbl = array_flip($trans_tbl);
2783                 return strtr($string, $trans_tbl);
2784         }
2785 } // END - if
2786
2787 // [EOF]
2788 ?>