Updated copyright notice as there are changes in this year
[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
1634 // Enables the daily reset mode and runs it
1635 function doDaily () {
1636         // Enable the reset mode
1637         $GLOBALS['daily_enabled'] = TRUE;
1638
1639         // Run filters
1640         runFilterChain('daily');
1641 }
1642
1643 // Enables the weekly reset mode and runs it
1644 function doWeekly () {
1645         // Enable the reset mode
1646         $GLOBALS['weekly_enabled'] = TRUE;
1647
1648         // Run filters
1649         runFilterChain('weekly');
1650 }
1651
1652 // Enables the monthly reset mode and runs it
1653 function doMonthly () {
1654         // Enable the reset mode
1655         $GLOBALS['monthly_enabled'] = TRUE;
1656
1657         // Run filters
1658         runFilterChain('monthly');
1659 }
1660
1661 // Shuts down the mailer (e.g. closing database link, flushing output/filters, etc.)
1662 function doShutdown () {
1663         // Call the filter chain 'shutdown'
1664         runFilterChain('shutdown', NULL);
1665
1666         // Check if link is up
1667         if (SQL_IS_LINK_UP()) {
1668                 // Close link
1669                 SQL_CLOSE(__FUNCTION__, __LINE__);
1670         } elseif (!isInstallationPhase()) {
1671                 // No database link
1672                 reportBug(__FUNCTION__, __LINE__, 'Database link is already down, while shutdown is running.');
1673         }
1674
1675         // Stop executing here
1676         exit;
1677 }
1678
1679 // Init member id
1680 function initMemberId () {
1681         $GLOBALS['member_id'] = '0';
1682 }
1683
1684 // Setter for member id
1685 function setMemberId ($memberId) {
1686         // We should not set member id to zero
1687         if (!isValidId($memberId)) {
1688                 reportBug(__FUNCTION__, __LINE__, 'Userid should not be set zero.');
1689         } // END - if
1690
1691         // Set it secured
1692         $GLOBALS['member_id'] = bigintval($memberId);
1693 }
1694
1695 // Getter for member id or returns zero
1696 function getMemberId () {
1697         // Default member id
1698         $memberId = '0';
1699
1700         // Is the member id set?
1701         if (isMemberIdSet()) {
1702                 // Then use it
1703                 $memberId = $GLOBALS['member_id'];
1704         } // END - if
1705
1706         // Return it
1707         return $memberId;
1708 }
1709
1710 // Checks ether the member id is set
1711 function isMemberIdSet () {
1712         return (isset($GLOBALS['member_id']));
1713 }
1714
1715 // Setter for extra title
1716 function setExtraTitle ($extraTitle) {
1717         $GLOBALS['extra_title'] = $extraTitle;
1718 }
1719
1720 // Getter for extra title
1721 function getExtraTitle () {
1722         // Is the extra title set?
1723         if (!isExtraTitleSet()) {
1724                 // No, then abort here
1725                 reportBug(__FUNCTION__, __LINE__, 'extra_title is not set!');
1726         } // END - if
1727
1728         // Return it
1729         return $GLOBALS['extra_title'];
1730 }
1731
1732 // Checks if the extra title is set
1733 function isExtraTitleSet () {
1734         return ((isset($GLOBALS['extra_title'])) && (!empty($GLOBALS['extra_title'])));
1735 }
1736
1737 /**
1738  * Reads a directory recursively by default and searches for files not matching
1739  * an exclusion pattern. You can now keep the exclusion pattern empty for reading
1740  * a whole directory.
1741  *
1742  * @param       $baseDir                        Relative base directory to PATH to scan from
1743  * @param       $prefix                         Prefix for all positive matches (which files should be found)
1744  * @param       $fileIncludeDirs        whether to include directories in the final output array
1745  * @param       $addBaseDir                     whether to add $baseDir to all array entries
1746  * @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'
1747  * @param       $extension                      File extension for all positive matches
1748  * @param       $excludePattern         Regular expression to exclude more files (preg_match())
1749  * @param       $recursive                      whether to scan recursively
1750  * @param       $suffix                         Suffix for positive matches ($extension will be appended, too)
1751  * @return      $foundMatches           All found positive matches for above criteria
1752  */
1753 function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = FALSE, $addBaseDir = TRUE, $excludeArray = array(), $extension = '.php', $excludePattern = '@(\.|\.\.)$@', $recursive = TRUE, $suffix = '') {
1754         // Add default entries we should always exclude
1755         array_unshift($excludeArray, '.', '..', '.svn', '.htaccess');
1756
1757         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'baseDir=' . $baseDir . ',prefix=' . $prefix . ' - Entered!');
1758         // Init found includes
1759         $foundMatches = array();
1760
1761         // Open directory
1762         $dirPointer = opendir(getPath() . $baseDir) or reportBug(__FUNCTION__, __LINE__, 'Cannot read directory ' . basename($baseDir) . '.');
1763
1764         // Read all entries
1765         while ($baseFile = readdir($dirPointer)) {
1766                 // Exclude '.', '..' and entries in $excludeArray automatically
1767                 if (in_array($baseFile, $excludeArray, TRUE))  {
1768                         // Exclude them
1769                         //* DEBUG: */ debugOutput('excluded=' . $baseFile);
1770                         continue;
1771                 } // END - if
1772
1773                 // Construct include filename and FQFN
1774                 $fileName = $baseDir . $baseFile;
1775                 $FQFN = getPath() . $fileName;
1776
1777                 // Remove double slashes
1778                 $FQFN = str_replace('//', '/', $FQFN);
1779
1780                 // Check if the base filenname matches an exclusion pattern and if the pattern is not empty
1781                 if ((!empty($excludePattern)) && (preg_match($excludePattern, $baseFile, $match))) {
1782                         // Debug message
1783                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'baseDir=' . $baseDir . ',baseFile=' . $baseFile . ',FQFN=' . $FQFN);
1784
1785                         // Exclude this one
1786                         continue;
1787                 } // END - if
1788
1789                 // Skip also files with non-matching prefix genericly
1790                 if (($recursive === TRUE) && (isDirectory($FQFN))) {
1791                         // Is a redirectory so read it as well
1792                         $foundMatches = merge_array($foundMatches, getArrayFromDirectory($baseDir . $baseFile . '/', $prefix, $fileIncludeDirs, $addBaseDir, $excludeArray, $extension, $excludePattern, $recursive));
1793
1794                         // And skip further processing
1795                         continue;
1796                 } elseif (!isFilePrefixFound($baseFile, $prefix)) {
1797                         // Skip this file
1798                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Invalid prefix in file ' . $baseFile . ', prefix=' . $prefix);
1799                         continue;
1800                 } elseif ((!empty($suffix)) && (substr($baseFile, -(strlen($suffix . $extension)), (strlen($suffix . $extension))) != $suffix . $extension)) {
1801                         // Skip wrong suffix as well
1802                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Invalid suffix in file ' . $baseFile . ', suffix=' . $suffix);
1803                         continue;
1804                 } elseif (!isFileReadable($FQFN)) {
1805                         // Not readable so skip it
1806                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File ' . $FQFN . ' is not readable!');
1807                 } elseif (filesize($FQFN) < 50) {
1808                         // Might be deprecated
1809                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File ' . $FQFN . ' is to small (' . filesize($FQFN) . ')!');
1810                         continue;
1811                 } elseif (($extension == '.php') && (filesize($FQFN) < 50)) {
1812                         // This PHP script is deprecated
1813                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File ' . $FQFN . ' is a deprecated PHP script!');
1814                         continue;
1815                 }
1816
1817                 // Get file' extension (last 4 chars)
1818                 $fileExtension = substr($baseFile, -4, 4);
1819
1820                 // Is the file a PHP script or other?
1821                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'baseDir=' . $baseDir . ',prefix=' . $prefix . ',baseFile=' . $baseFile);
1822                 if (($fileExtension == '.php') || (($fileIncludeDirs === TRUE) && (isDirectory($FQFN)))) {
1823                         // Is this a valid include file?
1824                         if ($extension == '.php') {
1825                                 // Remove both for extension name
1826                                 $extName = substr($baseFile, strlen($prefix), -4);
1827
1828                                 // Add file with or without base path
1829                                 if ($addBaseDir === TRUE) {
1830                                         // With base path
1831                                         array_push($foundMatches, $fileName);
1832                                 } else {
1833                                         // No base path
1834                                         array_push($foundMatches, $baseFile);
1835                                 }
1836                         } else {
1837                                 // We found .php file but should not search for them, why?
1838                                 reportBug(__FUNCTION__, __LINE__, 'We should find files with extension=' . $extension . ', but we found a PHP script. (baseFile=' . $baseFile . ')');
1839                         }
1840                 } elseif ($fileExtension == $extension) {
1841                         // Other, generic file found
1842                         array_push($foundMatches, $fileName);
1843                 }
1844         } // END - while
1845
1846         // Close directory
1847         closedir($dirPointer);
1848
1849         // Sort array
1850         sort($foundMatches);
1851
1852         // Return array with include files
1853         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '- Left!');
1854         return $foundMatches;
1855 }
1856
1857 // Checks whether $prefix is found in $fileName
1858 function isFilePrefixFound ($fileName, $prefix) {
1859         // @TODO Find a way to cache this
1860         return (substr($fileName, 0, strlen($prefix)) == $prefix);
1861 }
1862
1863 // Maps a module name into a database table name
1864 function mapModuleToTable ($moduleName) {
1865         // Map only these, still lame code...
1866         switch ($moduleName) {
1867                 case 'index': // 'index' is the guest's menu
1868                         $moduleName = 'guest'; 
1869                         break;
1870
1871                 case 'login': // ... and 'login' the member's menu
1872                         $moduleName = 'member';
1873                         break;
1874                 // Anything else will not be mapped, silently.
1875         } // END - switch
1876
1877         // Return result
1878         return $moduleName;
1879 }
1880
1881 // Add SQL debug data to array for later output
1882 function addSqlToDebug ($result, $sqlString, $timing, $F, $L) {
1883         // Is there cache?
1884         if (!isset($GLOBALS['debug_sql_available'])) {
1885                 // Check it and cache it in $GLOBALS
1886                 $GLOBALS['debug_sql_available'] = ((isConfigurationLoaded()) && (isDisplayDebugSqlEnabled()));
1887         } // END - if
1888         
1889         // Don't execute anything here if we don't need or ext-other is missing
1890         if ($GLOBALS['debug_sql_available'] === FALSE) {
1891                 return;
1892         } // END - if
1893
1894         // Already executed?
1895         if (isset($GLOBALS['debug_sqls'][$F][$L][$sqlString])) {
1896                 // Then abort here, we don't need to profile a query twice
1897                 return;
1898         } // END - if
1899
1900         // Remeber this as profiled (or not, but we don't care here)
1901         $GLOBALS['debug_sqls'][$F][$L][$sqlString] = TRUE;
1902
1903         // Generate record
1904         $record = array(
1905                 'num_rows' => SQL_NUMROWS($result),
1906                 'affected' => SQL_AFFECTEDROWS(),
1907                 'sql_str'  => $sqlString,
1908                 'timing'   => $timing,
1909                 'file'     => basename($F),
1910                 'line'     => $L
1911         );
1912
1913         // Add it
1914         array_push($GLOBALS['debug_sqls'], $record);
1915 }
1916
1917 // Initializes the cache instance
1918 function initCacheInstance () {
1919         // Check for double-initialization
1920         if (isset($GLOBALS['cache_instance'])) {
1921                 // This should not happen and must be fixed
1922                 reportBug(__FUNCTION__, __LINE__, 'Double initialization of cache system detected. cache_instance[]=' . gettype($GLOBALS['cache_instance']));
1923         } // END - if
1924
1925         // Load include for CacheSystem class
1926         loadIncludeOnce('inc/classes/cachesystem.class.php');
1927
1928         // Initialize cache system only when it's needed
1929         $GLOBALS['cache_instance'] = new CacheSystem();
1930
1931         // Did it work?
1932         if ($GLOBALS['cache_instance']->getStatusCode() != 'done') {
1933                 // Failed to initialize cache sustem
1934                 reportBug(__FUNCTION__, __LINE__, 'Cache system returned with unexpected error. getStatusCode()=' . $GLOBALS['cache_instance']->getStatusCode());
1935         } // END - if
1936 }
1937
1938 // Getter for message from array or raw message
1939 function getMessageFromIndexedArray ($message, $pos, $array) {
1940         // Check if the requested message was found in array
1941         if (isset($array[$pos])) {
1942                 // ... if yes then use it!
1943                 $ret = $array[$pos];
1944         } else {
1945                 // ... else use default message
1946                 $ret = $message;
1947         }
1948
1949         // Return result
1950         return $ret;
1951 }
1952
1953 // Convert ';' to ', ' for e.g. receiver list
1954 function convertReceivers ($old) {
1955         return str_replace(';', ', ', $old);
1956 }
1957
1958 // Get a module from filename and access level
1959 function getModuleFromFileName ($file, $accessLevel) {
1960         // Default is 'invalid';
1961         $modCheck = 'invalid';
1962
1963         // @TODO This is still very static, rewrite it somehow
1964         switch ($accessLevel) {
1965                 case 'admin':
1966                         $modCheck = 'admin';
1967                         break;
1968
1969                 case 'sponsor':
1970                 case 'guest':
1971                 case 'member':
1972                         $modCheck = getModule();
1973                         break;
1974
1975                 default: // Unsupported file name / access level
1976                         reportBug(__FUNCTION__, __LINE__, 'Unsupported file name=' . basename($file) . '/access level=' . $accessLevel);
1977                         break;
1978         } // END - switch
1979
1980         // Return result
1981         return $modCheck;
1982 }
1983
1984 // Encodes an URL for adding session id, etc.
1985 function encodeUrl ($url, $outputMode = '0') {
1986         // Is there already have a PHPSESSID inside or view.php is called? Then abort here
1987         if ((isInStringIgnoreCase(session_name(), $url)) || (isRawOutputMode())) {
1988                 // Raw output mode detected or session_name() found in URL
1989                 return $url;
1990         } // END - if
1991
1992         // Is there a valid session?
1993         if ((!isSessionValid()) && (!isSpider())) {
1994                 // Determine right separator
1995                 $separator = '&amp;';
1996                 if (!isInString('?', $url)) {
1997                         // No question mark
1998                         $separator = '?';
1999                 } // END - if
2000
2001                 // Then add it to URL
2002                 $url .= $separator . session_name() . '=' . session_id();
2003         } // END - if
2004
2005         // Add {?URL?} ?
2006         if ((substr($url, 0, strlen(getUrl())) != getUrl()) && (substr($url, 0, 7) != '{?URL?}') && (substr($url, 0, 7) != 'http://') && (substr($url, 0, 8) != 'https://')) {
2007                 // Add it
2008                 $url = '{?URL?}/' . $url;
2009         } // END - if
2010
2011         // Debug message
2012         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'url=' . $url . ',isHtmlOutputMode()=' . intval(isHtmlOutputMode()) . ',outputMode=' . $outputMode);
2013
2014         // Is there to decode entities?
2015         if (!isHtmlOutputMode()) {
2016                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'url=' . $url . ' - BEFORE DECODING');
2017                 // Decode them for e.g. JavaScript parts
2018                 $url = decodeEntities($url);
2019                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'url=' . $url . ' - AFTER DECODING');
2020         } // END - if
2021
2022         // Debug log
2023         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'url=' . $url . ',outputMode=' . $outputMode);
2024
2025         // Return the encoded URL
2026         return $url;
2027 }
2028
2029 // Simple check for spider
2030 function isSpider () {
2031         // Get the UA and trim it down
2032         $userAgent = trim(detectUserAgent(TRUE));
2033
2034         // It should not be empty, if so it is better a browser
2035         if (empty($userAgent)) {
2036                 // It is a browser that blocks its UA string
2037                 return FALSE;
2038         } // END - if
2039
2040         // Is it a spider?
2041         return ((isInStringIgnoreCase('spider', $userAgent)) || (isInStringIgnoreCase('slurp', $userAgent)) || (isInStringIgnoreCase('bot', $userAgent)) || (isInStringIgnoreCase('archiver', $userAgent)));
2042 }
2043
2044 // Function to search for the last modified file
2045 function searchDirsRecursive ($dir, &$last_changed, $lookFor = 'Date') {
2046         // Get dir as array
2047         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'dir=' . $dir);
2048         // Does it match what we are looking for? (We skip a lot files already!)
2049         // RegexPattern to exclude  ., .., .revision,  .svn, debug.log or .cache in the filenames
2050         $excludePattern = '@(\.revision|\.svn|debug\.log|\.cache|config\.php)$@';
2051
2052         $ds = getArrayFromDirectory($dir, '', FALSE, TRUE, array(), '.php', $excludePattern);
2053         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'count(ds)='.count($ds));
2054
2055         // Walk through all entries
2056         foreach ($ds as $d) {
2057                 // Generate proper FQFN
2058                 $FQFN = str_replace('//', '/', getPath() . $dir . '/' . $d);
2059
2060                 // Is it a file and readable?
2061                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'dir=' . $dir . ',d=' . $d);
2062                 if (isFileReadable($FQFN)) {
2063                         // $FQFN is a readable file so extract the requested data from it
2064                         $check = extractRevisionInfoFromFile($FQFN, $lookFor);
2065                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File: ' . $d . ' found. check=' . $check);
2066
2067                         // Is the file more recent?
2068                         if ((!isset($last_changed[$lookFor])) || ($last_changed[$lookFor] < $check)) {
2069                                 // This file is newer as the file before
2070                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'NEWER!');
2071                                 $last_changed['path_name'] = $FQFN;
2072                                 $last_changed[$lookFor] = $check;
2073                         } // END - if
2074                 } else {
2075                         // Not readable
2076                         /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File: ' . $d . ' not readable or directory.');
2077                 }
2078         } // END - foreach
2079 }
2080
2081 // Handles the braces [] of a field (e.g. value of 'name' attribute)
2082 function handleFieldWithBraces ($field) {
2083         // Are there braces [] at the end?
2084         if (substr($field, -2, 2) == '[]') {
2085                 /*
2086                  * Try to find one and replace it. I do it this way to allow easy
2087                  * extending of this code.
2088                  */
2089                 foreach (array('admin_list_builder_id_value') as $key) {
2090                         /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'key=' . $key);
2091                         // Is the cache entry set?
2092                         if (isset($GLOBALS[$key])) {
2093                                 // Insert it
2094                                 $field = str_replace('[]', '[' . $GLOBALS[$key] . ']', $field);
2095
2096                                 // And abort
2097                                 /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'key=' . $key, 'field=' . $field);
2098                                 break;
2099                         } // END - if
2100                 } // END - foreach
2101         } // END - if
2102
2103         // Return it
2104         return $field;
2105 }
2106
2107 // Converts a zero or NULL to word 'NULL'
2108 function convertZeroToNull ($number) {
2109         // Is it a valid username?
2110         if ((!is_null($number)) && (!empty($number)) && ($number > 0)) {
2111                 // Always secure it
2112                 $number = bigintval($number);
2113         } else {
2114                 // Is not valid or zero
2115                 $number = 'NULL';
2116         }
2117
2118         // Return it
2119         return $number;
2120 }
2121
2122 // Converts a NULL|empty string|< 1 to zero
2123 function convertNullToZero ($number) {
2124         // Is it a valid username?
2125         if ((is_null($number)) || (empty($number)) || ($number < 1)) {
2126                 // Is not valid or zero
2127                 $number = '0';
2128         } // END - if
2129
2130         // Return it
2131         return $number;
2132 }
2133
2134 // Capitalizes a string with underscores, e.g.: some_foo_string will become SomeFooString
2135 // Note: This function is cached
2136 function capitalizeUnderscoreString ($str) {
2137         // Is there cache?
2138         if (!isset($GLOBALS[__FUNCTION__][$str])) {
2139                 // Init target string
2140                 $capitalized = '';
2141
2142                 // Explode it with the underscore, but rewrite dashes to underscore before
2143                 $strArray = explode('_', str_replace('-', '_', $str));
2144
2145                 // "Walk" through all elements and make them lower-case but first upper-case
2146                 foreach ($strArray as $part) {
2147                         // Capitalize the string part
2148                         $capitalized .= firstCharUpperCase($part);
2149                 } // END - foreach
2150
2151                 // Store the converted string in cache array
2152                 $GLOBALS[__FUNCTION__][$str] = $capitalized;
2153         } // END - if
2154
2155         // Return cache
2156         return $GLOBALS[__FUNCTION__][$str];
2157 }
2158
2159 // Generate admin links for mail order
2160 // mailType can be: 'normal' or 'bonus'
2161 function generateAdminMailLinks ($mailType, $mailId) {
2162         // Init variables
2163         $OUT = '';
2164         $table = '';
2165
2166         // Default column for mail status is 'data_type'
2167         // @TODO Rename column data_type to e.g. mail_status
2168         $statusColumn = 'data_type';
2169
2170         // Which mail do we have?
2171         switch ($mailType) {
2172                 case 'bonus': // Bonus mail
2173                         $table = 'bonus';
2174                         break;
2175
2176                 case 'normal': // Member mail
2177                         $table = 'pool';
2178                         break;
2179
2180                 default: // Handle unsupported types
2181                         logDebugMessage(__FUNCTION__, __LINE__, 'Unsupported mail type ' . $mailType . ' for mailId=' . $mailId . ' detected.');
2182                         $OUT = '<div align="center">{%message,ADMIN_UNSUPPORTED_MAIL_TYPE_DETECTED=' . $mailType . '%}</div>';
2183                         break;
2184         } // END - switch
2185
2186         // Is the mail type supported?
2187         if (!empty($table)) {
2188                 // Query for the mail
2189                 $result = SQL_QUERY_ESC("SELECT `id`, `%s` AS `mail_status` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `id`=%s LIMIT 1",
2190                         array(
2191                                 $statusColumn,
2192                                 $table,
2193                                 bigintval($mailId)
2194                         ), __FILE__, __LINE__);
2195
2196                 // Is there one entry there?
2197                 if (SQL_NUMROWS($result) == 1) {
2198                         // Load the entry
2199                         $content = SQL_FETCHARRAY($result);
2200
2201                         // Add output and type
2202                         $content['type']     = $mailType;
2203                         $content['__output'] = '';
2204
2205                         // Filter all data
2206                         $content = runFilterChain('generate_admin_mail_links', $content);
2207
2208                         // Get output back
2209                         $OUT = $content['__output'];
2210                 } // END - if
2211
2212                 // Free result
2213                 SQL_FREERESULT($result);
2214         } // END - if
2215
2216         // Return generated HTML code
2217         return $OUT;
2218 }
2219
2220
2221 /**
2222  * Determine if a string can represent a number in hexadecimal
2223  *
2224  * @param       $hex    A string to check if it is hex-encoded
2225  * @return      $foo    True if the string is a hex, otherwise false
2226  * @author      Marques Johansson
2227  * @link        http://php.net/manual/en/function.http-chunked-decode.php#89786
2228  */
2229 function isHexadecimal ($hex) {
2230         // Make it lowercase
2231         $hex = strtolower(trim(ltrim($hex, '0')));
2232
2233         // Fix empty strings to zero
2234         if (empty($hex)) {
2235                 $hex = 0;
2236         } // END - if
2237
2238         // Simply compare decode->encode result with original
2239         return ($hex == dechex(hexdec($hex)));
2240 }
2241
2242 /**
2243  * Replace chr(13) with "[r]" and PHP_EOL with "[n]" and add a final new-line to make
2244  * them visible to the developer. Use this function to debug e.g. buggy HTTP
2245  * response handler functions.
2246  *
2247  * @param       $str    String to overwork
2248  * @return      $str    Overworked string
2249  */
2250 function replaceReturnNewLine ($str) {
2251         return str_replace(array(chr(13), chr(10)), array('[r]', '[n]'), $str);
2252 }
2253
2254 // Converts a given string by splitting it up with given delimiter similar to
2255 // explode(), but appending the delimiter again
2256 function stringToArray ($delimiter, $string) {
2257         // Init array
2258         $strArray = array();
2259
2260         // "Walk" through all entries
2261         foreach (explode($delimiter, $string) as $split) {
2262                 //  Append the delimiter and add it to the array
2263                 array_push($strArray, $split . $delimiter);
2264         } // END - foreach
2265
2266         // Return array
2267         return $strArray;
2268 }
2269
2270 // Detects the prefix 'mb_' if a multi-byte string is given
2271 function detectMultiBytePrefix ($str) {
2272         // Default is without multi-byte
2273         $mbPrefix = '';
2274
2275         // Detect multi-byte (strictly)
2276         if (mb_detect_encoding($str, 'auto', TRUE) !== FALSE) {
2277                 // With multi-byte encoded string
2278                 $mbPrefix = 'mb_';
2279         } // END - if
2280
2281         // Return the prefix
2282         return $mbPrefix;
2283 }
2284
2285 // Searches given array for a sub-string match and returns all found keys in an array
2286 function getArrayKeysFromSubStrArray ($heystack, $needles, $offset = 0) {
2287         // Init array for all found keys
2288         $keys = array();
2289
2290         // Now check all entries
2291         foreach ($needles as $key => $needle) {
2292                 // Is there found a partial string?
2293                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'heystack='.$heystack.',key='.$key.',needle='.$needle.',offset='.$offset);
2294                 if (strpos($heystack, $needle, $offset) !== FALSE) {
2295                         // Add the found key
2296                         array_push($keys, $key);
2297                 } // END - if
2298         } // END - foreach
2299
2300         // Return the array
2301         return $keys;
2302 }
2303
2304 // Determines database column name from given subject and locked
2305 function determinePointsColumnFromSubjectLocked ($subject, $locked) {
2306         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'subject=' . $subject . ',locked=' . intval($locked) . ' - ENTERED!');
2307         // Default is 'normal' points
2308         $pointsColumn = 'points';
2309
2310         // Which points, locked or normal?
2311         if ($locked === TRUE) {
2312                 $pointsColumn = 'locked_points';
2313         } // END - if
2314
2315         // Prepare array for filter
2316         $filterData = array(
2317                 'subject' => $subject,
2318                 'locked'  => $locked,
2319                 'column'  => $pointsColumn
2320         );
2321
2322         // Run the filter
2323         $filterData = runFilterChain('determine_points_column_name', $filterData);
2324
2325         // Extract column name from array
2326         $pointsColumn = $filterData['column'];
2327
2328         // Return it
2329         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'subject=' . $subject . ',locked=' . intval($locked) . ',pointsColumn=' . $pointsColumn . ' - EXIT!');
2330         return $pointsColumn;
2331 }
2332
2333 // Converts a boolean variable into 'Y' for true and 'N' for false
2334 function convertBooleanToYesNo ($boolean) {
2335         // Default is 'N'
2336         $converted = 'N';
2337         if ($boolean === TRUE) {
2338                 // Set 'Y'
2339                 $converted = 'Y';
2340         } // END - if
2341
2342         // Return it
2343         return $converted;
2344 }
2345
2346 // "Translates" 'true' to true and 'false' to false
2347 function convertStringToBoolean ($str) {
2348         // Debug message (to measure how often this function is called)
2349         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'str=' . $str);
2350
2351         // Is there cache?
2352         if (!isset($GLOBALS[__FUNCTION__][$str])) {
2353                 // Trim it lower-case for validation
2354                 $strTrimmed = trim(strtolower($str));
2355
2356                 // Is it valid?
2357                 if (!in_array($strTrimmed, array('true', 'false'))) {
2358                         // Not valid!
2359                         reportBug(__FUNCTION__, __LINE__, 'str=' . $str . '(' . $strTrimmed . ') is not true/false');
2360                 } // END - if
2361
2362                 // Determine it
2363                 $GLOBALS[__FUNCTION__][$str] = ($strTrimmed == 'true');
2364         } // END - if
2365
2366         // Return cache
2367         return $GLOBALS[__FUNCTION__][$str];
2368 }
2369
2370 /**
2371  * "Makes" a variable in given string parseable, this function will throw an
2372  * error if the first character is not a dollar sign.
2373  *
2374  * @param       $varString      String which contains a variable
2375  * @return      $return         String with added single quotes for better parsing
2376  */
2377 function makeParseableVariable ($varString) {
2378         // The first character must be a dollar sign
2379         if (substr($varString, 0, 1) != '$') {
2380                 // Please report this
2381                 reportBug(__FUNCTION__, __LINE__, 'varString=' . $varString . ' - No dollar sign detected, will not parse it.');
2382         } // END - if
2383
2384         // Is there cache?
2385         if (!isset($GLOBALS[__FUNCTION__][$varString])) {
2386                 // Snap them in, if [,] are there
2387                 $GLOBALS[__FUNCTION__][$varString] = str_replace(array('[', ']'), array("['", "']"), $varString);
2388         } // END - if
2389
2390         // Return cache
2391         return $GLOBALS[__FUNCTION__][$varString];
2392 }
2393
2394 // "Getter" for random TAN
2395 function getRandomTan () {
2396         // Generate one
2397         return mt_rand(0, 99999);
2398 }
2399
2400 // Removes any : from subject
2401 function removeDoubleDotFromSubject ($subject) {
2402         // Remove it
2403         $subjectArray = explode(':', $subject);
2404         $subject = $subjectArray[0];
2405         unset($subjectArray);
2406
2407         // Return it
2408         return $subject;
2409 }
2410
2411 // Adds a given entry to the database
2412 function memberAddEntries ($tableName, $columns = array(), $filterFunctions = array(), $extraValues = array(), $timeColumns = array(), $columnIndex = NULL) {
2413         // Is it a member?
2414         if (!isMember()) {
2415                 // Then abort here
2416                 return FALSE;
2417         } // END - if
2418
2419         // Set POST data generic userid
2420         setPostRequestElement('userid', getMemberId());
2421
2422         // Call inner function
2423         doGenericAddEntries($tableName, $columns, $filterFunctions, $extraValues, $timeColumns, $columnIndex);
2424
2425         // Entry has been added?
2426         if ((!SQL_HASZEROAFFECTED()) && ($GLOBALS['__XML_PARSE_RESULT'] === TRUE)) {
2427                 // Display success message
2428                 displayMessage('{--MEMBER_ENTRY_ADDED--}');
2429         } else {
2430                 // Display failed message
2431                 displayMessage('{--MEMBER_ENTRY_NOT_ADDED--}');
2432         }
2433 }
2434
2435 // Edit rows by given id numbers
2436 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()) {
2437         // $tableName must be an array
2438         if ((!is_array($tableName)) || (count($tableName) != 1)) {
2439                 // No tableName specified
2440                 reportBug(__FUNCTION__, __LINE__, 'tableName is not given. Please fix your XML,tableName[]=' . gettype($tableName) . '!=array: userIdColumn=' . $userIdColumn);
2441         } elseif (!is_array($idColumn)) {
2442                 // $idColumn is no array
2443                 reportBug(__FUNCTION__, __LINE__, 'idColumn[]=' . gettype($idColumn) . '!=array: userIdColumn=' . $userIdColumn);
2444         } elseif (!is_array($userIdColumn)) {
2445                 // $userIdColumn is no array
2446                 reportBug(__FUNCTION__, __LINE__, 'userIdColumn[]=' . gettype($userIdColumn) . '!=array: userIdColumn=' . $userIdColumn);
2447         } elseif (!is_array($editNow)) {
2448                 // $editNow is no array
2449                 reportBug(__FUNCTION__, __LINE__, 'editNow[]=' . gettype($editNow) . '!=array: userIdColumn=' . $userIdColumn);
2450         } // END - if
2451
2452         // Shall we change here or list for editing?
2453         if ($editNow[0] === TRUE) {
2454                 // Add generic userid field
2455                 setPostRequestElement('userid', getMemberId());
2456
2457                 // Call generic change method
2458                 $affected = doGenericEditEntriesConfirm($tableName, $columns, $filterFunctions, $extraValues, $timeColumns, $editNow, $idColumn, $userIdColumn, $rawUserId, $cacheFiles, 'mem_edit');
2459
2460                 // Was this fine?
2461                 if ($affected == countPostSelection($idColumn[0])) {
2462                         // All deleted
2463                         displayMessage('{--MEMBER_ALL_ENTRIES_EDITED--}');
2464                 } else {
2465                         // Some are still there :(
2466                         displayMessage(sprintf(getMessage('MEMBER_SOME_ENTRIES_NOT_EDITED'), $affected, countPostSelection($idColumn[0])));
2467                 }
2468         } else {
2469                 // List for editing
2470                 memberListBuilder('edit', $tableName, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $rawUserId, $content);
2471         }
2472 }
2473
2474 // Delete rows by given id numbers
2475 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()) {
2476         // Do this only for members
2477         assert(isMember());
2478
2479         // $tableName must be an array
2480         if ((!is_array($tableName)) || (count($tableName) != 1)) {
2481                 // No tableName specified
2482                 reportBug(__FUNCTION__, __LINE__, 'tableName is not given. Please fix your XML,tableName[]=' . gettype($tableName) . '!=array: userIdColumn=' . $userIdColumn);
2483         } elseif (!is_array($idColumn)) {
2484                 // $idColumn is no array
2485                 reportBug(__FUNCTION__, __LINE__, 'idColumn[]=' . gettype($idColumn) . '!=array: userIdColumn=' . $userIdColumn);
2486         } elseif (!is_array($userIdColumn)) {
2487                 // $userIdColumn is no array
2488                 reportBug(__FUNCTION__, __LINE__, 'userIdColumn[]=' . gettype($userIdColumn) . '!=array: userIdColumn=' . $userIdColumn);
2489         } elseif (!is_array($deleteNow)) {
2490                 // $deleteNow is no array
2491                 reportBug(__FUNCTION__, __LINE__, 'deleteNow[]=' . gettype($deleteNow) . '!=array: userIdColumn=' . $userIdColumn);
2492         } // END - if
2493
2494         // Shall we delete here or list for deletion?
2495         if ($deleteNow[0] === TRUE) {
2496                 // Add generic userid field
2497                 setPostRequestElement('userid', getMemberId());
2498
2499                 // Call generic function
2500                 $affected = doGenericDeleteEntriesConfirm($tableName, $columns, $filterFunctions, $extraValues, $deleteNow, $idColumn, $userIdColumn, $rawUserId, $cacheFiles, 'mem_delete');
2501
2502                 // Was this fine?
2503                 if ($affected == countPostSelection($idColumn[0])) {
2504                         // All deleted
2505                         displayMessage('{--MEMBER_ALL_ENTRIES_REMOVED--}');
2506                 } else {
2507                         // Some are still there :(
2508                         displayMessage(sprintf(getMessage('MEMBER_SOME_ENTRIES_NOT_DELETED'), SQL_AFFECTEDROWS(), countPostSelection($idColumn[0])));
2509                 }
2510         } else {
2511                 // List for deletion confirmation
2512                 memberListBuilder('delete', $tableName, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $rawUSerId, $content);
2513         }
2514 }
2515
2516 // Build a special template list
2517 // @TODO cacheFiles is not yet supported
2518 function memberListBuilder ($listType, $tableName, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $rawUserId = array('userid'), $content = array()) {
2519         // Do this only for logged in member
2520         assert(isMember());
2521
2522         // Call inner (general) function
2523         doGenericListBuilder('member', $listType, $tableName, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $rawUserId, $content);
2524 }
2525
2526 // Checks whether given address is IPv4
2527 function isIp4AddressValid ($address) {
2528         // Is there cache?
2529         if (!isset($GLOBALS[__FUNCTION__][$address])) {
2530                 // Determine it ...
2531                 $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);
2532         } // END - if
2533
2534         // Return cache
2535         return $GLOBALS[__FUNCTION__][$address];
2536 }
2537
2538 // Returns the string if not empty or FALSE if empty
2539 function validateIsEmpty ($str) {
2540         // Trim it
2541         $trimmed = trim($str);
2542
2543         // Is the string empty?
2544         if (empty($trimmed)) {
2545                 // Then set FALSE
2546                 $str = FALSE;
2547         } // END - if
2548
2549         // Return it
2550         return $str;
2551 }
2552
2553 // "Getter" for seconds from given time unit
2554 function getSecondsFromTimeUnit ($timeUnit) {
2555         // Default is not found
2556         $seconds = NULL;
2557
2558         // "Detect" it
2559         switch ($timeUnit) {
2560                 case 's': // Seconds = 1
2561                         $seconds = 1;
2562                         break;
2563
2564                 case 'm': // Minutes
2565                         $seconds = 60;
2566                         break;
2567
2568                 case 'h': // Hours
2569                         $seconds = 60*60;
2570                         break;
2571
2572                 case 'D': // Days
2573                         $seconds = 60*60*24;
2574                         break;
2575
2576                 case 'W': // Weeks
2577                         $seconds = 60*60*24*7;
2578                         break;
2579
2580                 default: // Unsupported
2581                         reportBug(__FUNCTION__, __LINE__, 'Unsupported time unit ' . $timeUnit . ' detected.');
2582                         break;
2583         } // END - switch
2584
2585         // Return value
2586         return $seconds;
2587 }
2588
2589 // Calulates value for given seconds and time unit
2590 function caluculateTimeUnitValue ($seconds, $timeUnit) {
2591         // Calculate it
2592         return ($seconds / getSecondsFromTimeUnit($timeUnit));
2593 }
2594
2595 // "Getter" for an array from given one but only one index of it
2596 function getArrayFromArrayIndex ($array, $key) {
2597         // Some simple validation
2598         assert(isset($array[0][$key]));
2599
2600         // Init new array
2601         $newArray = array();
2602
2603         // "Walk" through all elements
2604         foreach ($array as $element) {
2605                 $newArray[] = $element[$key];
2606         } // END - if
2607
2608         // Return it
2609         return $newArray;
2610 }
2611
2612 /**
2613  * Compress given data and encodes it into BASE64 to be stored in database with
2614  * SQL_QUERY_ESC()
2615  *
2616  * @param       $data   Data to be compressed and encoded
2617  * @return      $data   Compressed+encoded data
2618  */
2619 function compress ($data) {
2620         // Compress it
2621         return base64_encode(gzcompress($data));
2622 }
2623
2624 /**
2625  * Decompress given data previously compressed with compress().
2626  *
2627  * @param       $data   Data compressed with compress()
2628  * @reurn       $data   Uncompressed data
2629  */
2630 function decompress ($data) {
2631         // Decompress it
2632         return gzuncompress(base64_decode($data));
2633 }
2634
2635 /**
2636  * Converts given charset in given string to UTF-8 if not UTF-8. This function
2637  * is currently limited to iconv().
2638  *
2639  * @param       $str            String to convert charset in
2640  * @param       $charset        Charset to convert from
2641  * @return      $str            Converted string
2642  */
2643 function convertCharsetToUtf8 ($str, $charset) {
2644         // Is iconv() available?
2645         if (!function_exists('iconv')) {
2646                 // Please make it sure
2647                 reportBug(__FUNCTION__, __LINE__, 'PHP function iconv() is currently required to do charset convertion.');
2648         } // END - if
2649
2650         // Is the charset not UTF-8?
2651         if (strtoupper($charset) != 'UTF-8') {
2652                 // Convert it to UTF-8
2653                 $str = iconv(strtoupper($charset), 'UTF-8//TRANSLIT', $str);
2654         } // END - if
2655
2656         // Return converted string
2657         return $str;
2658 }
2659
2660 // ----------------------------------------------------------------------------
2661 //              "Translatation" functions for points_data table
2662 // ----------------------------------------------------------------------------
2663
2664 // Translates generically some data into a target string
2665 function translateGeneric ($messagePrefix, $data, $messageSuffix = '') {
2666         // Is the method null or empty?
2667         if (is_null($data)) {
2668                 // Is NULL
2669                 $data = 'NULL';
2670         } elseif (empty($data)) {
2671                 // Is empty (string)
2672                 $data = 'EMPTY';
2673         } // END - if
2674
2675         // Default column name is unknown
2676         $return = '{%message,' . $messagePrefix . '_UNKNOWN' . $messageSuffix . '=' . strtoupper($data) . '%}';
2677
2678         // Construct message id
2679         $messageId = $messagePrefix . '_' . strtoupper($data) . $messageSuffix;
2680
2681         // Is it there?
2682         if (isMessageIdValid($messageId)) {
2683                 // Then use it as message string
2684                 $return = '{--' . $messageId . '--}';
2685         } // END - if
2686
2687         // Return the column name
2688         return $return;
2689 }
2690
2691 // Translates points subject to human-readable
2692 function translatePointsSubject ($subject) {
2693         // Remove any :x
2694         $subject = removeDoubleDotFromSubject($subject);
2695
2696         // Return it
2697         return translateGeneric('POINTS_SUBJECT', $subject);
2698 }
2699
2700 // "Translates" given points account type
2701 function translatePointsAccountType ($accountType) {
2702         // Return it
2703         return translateGeneric('POINTS_ACCOUNT_TYPE', $accountType);
2704 }
2705
2706 // "Translates" given points "locked mode"
2707 function translatePointsLockedMode ($lockedMode) {
2708         // Return it
2709         return translateGeneric('POINTS_LOCKED_MODE', $lockedMode);
2710 }
2711
2712 // "Translates" given points payment method
2713 function translatePointsPaymentMethod ($paymentMethod) {
2714         // Return it
2715         return translateGeneric('POINTS_PAYMENT_METHOD', $paymentMethod);
2716 }
2717
2718 // "Translates" given points account provider
2719 function translatePointsAccountProvider ($accountProvider) {
2720         // Return it
2721         return translateGeneric('POINTS_ACCOUNT_PROVIDER', $accountProvider);
2722 }
2723
2724 // "Translates" given points notify recipient
2725 function translatePointsNotifyRecipient ($notifyRecipient) {
2726         // Return it
2727         return translateGeneric('POINTS_NOTIFY_RECIPIENT', $notifyRecipient);
2728 }
2729
2730 // "Translates" given mode to a human-readable version
2731 function translatePointsMode ($pointsMode) {
2732         // Return it
2733         return translateGeneric('POINTS_MODE', $pointsMode);
2734 }
2735
2736 // "Translates" task type to a human-readable version
2737 function translateTaskType ($taskType) {
2738         // Return it
2739         return translateGeneric('ADMIN_TASK_TYPE', $taskType);
2740 }
2741
2742 // "Translates" task status to a human-readable version
2743 function translateTaskStatus ($taskStatus) {
2744         // Return it
2745         return translateGeneric('ADMIN_TASK_STATUS', $taskStatus);
2746 }
2747
2748 /*
2749  *-----------------------------------------------------------------------------
2750  * Automatically re-created functions, all taken from user comments on
2751  * www.php.net
2752  *-----------------------------------------------------------------------------
2753  */
2754 if (!function_exists('html_entity_decode')) {
2755         // Taken from documentation on www.php.net
2756         function html_entity_decode ($string) {
2757                 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
2758                 $trans_tbl = array_flip($trans_tbl);
2759                 return strtr($string, $trans_tbl);
2760         }
2761 } // END - if
2762
2763 // [EOF]
2764 ?>