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