2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 08/25/2003 *
4 * =================== Last change: 11/29/2005 *
6 * -------------------------------------------------------------------- *
7 * File : functions.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Many non-MySQL functions (also file access) *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Viele Nicht-MySQL-Funktionen (auch Dateizugriff) *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009, 2010 by Mailer Developer Team *
20 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
43 // Sends out all headers required for HTTP/1.1 reply
44 function sendHttpHeaders () {
46 $now = gmdate('D, d M Y H:i:s') . ' GMT';
49 sendHeader('HTTP/1.1 ' . getHttpStatus());
51 // General headers for no caching
52 sendHeader('Expires: ' . $now); // RFC2616 - Section 14.21
53 sendHeader('Last-Modified: ' . $now);
54 sendHeader('Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
55 sendHeader('Pragma: no-cache'); // HTTP/1.0
56 sendHeader('Connection: Close');
57 sendHeader('Content-Type: ' . getContentType() . '; charset=UTF-8');
58 sendHeader('Content-Language: ' . getLanguage());
61 // Init fatal message array
62 function initFatalMessages () {
63 $GLOBALS['fatal_messages'] = array();
66 // Getter for whole fatal error messages
67 function getFatalArray () {
68 return $GLOBALS['fatal_messages'];
71 // Add a fatal error message to the queue array
72 function addFatalMessage ($F, $L, $message, $extra = '') {
73 if (is_array($extra)) {
74 // Multiple extras for a message with masks
75 $message = call_user_func_array('sprintf', $extra);
76 } elseif (!empty($extra)) {
77 // $message is text with a mask plus extras to insert into the text
78 $message = sprintf($message, $extra);
81 // Add message to $GLOBALS['fatal_messages']
82 $GLOBALS['fatal_messages'][] = $message;
84 // Log fatal messages away
85 logDebugMessage($F, $L, 'Fatal error message: ' . $message);
88 // Getter for total fatal message count
89 function getTotalFatalErrors () {
93 // Do we have at least the first entry?
94 if (!empty($GLOBALS['fatal_messages'][0])) {
96 $count = count($GLOBALS['fatal_messages']);
103 // Send mail out to an email address
104 function sendEmail ($toEmail, $subject, $message, $isHtml = 'N', $mailHeader = '') {
105 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'toEmail=' . $toEmail . ',subject=' . $subject . ',isHtml=' . $isHtml);
108 if ((!isInStringIgnoreCase('@', $toEmail)) && ($toEmail > 0)) {
109 // Value detected, is the message extension installed?
110 // @TODO Extension 'msg' does not exist
111 if (isExtensionActive('msg')) {
112 ADD_MESSAGE_TO_BOX($toEmail, $subject, $message, $isHtml);
115 // Does the user exist?
116 if (fetchUserData($toEmail)) {
118 $toEmail = getUserData('email');
121 $toEmail = getConfig('WEBMASTER');
124 } elseif ($toEmail == '0') {
126 $toEmail = getConfig('WEBMASTER');
128 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "TO={$toEmail}<br />");
130 // Check for PHPMailer or debug-mode
131 if ((!checkPhpMailerUsage()) || (isDebugModeEnabled())) {
132 // Prefix is '' for text mails
136 if ($isHtml == 'Y') {
141 // Not in PHPMailer-Mode
142 if (empty($mailHeader)) {
143 // Load email header template
144 $mailHeader = loadEmailTemplate($prefix . 'header');
147 $mailHeader .= loadEmailTemplate($prefix . 'header');
151 // Fix HTML parameter (default is no!)
152 if (empty($isHtml)) $isHtml = 'N';
154 // Debug mode enabled?
155 if (isDebugModeEnabled()) {
156 // In debug mode we want to display the mail instead of sending it away so we can debug this part
158 Headers : ' . htmlentities(utf8_decode(trim($mailHeader))) . '
159 To : ' . htmlentities(utf8_decode($toEmail)) . '
160 Subject : ' . htmlentities(utf8_decode($subject)) . '
161 Message : ' . htmlentities(utf8_decode($message)) . '
164 // This is always fine
166 } elseif (!empty($toEmail)) {
168 return sendRawEmail($toEmail, $subject, $message, $mailHeader);
169 } elseif ($isHtml != 'Y') {
171 return sendRawEmail(getConfig('WEBMASTER'), '[PROBLEM:]' . $subject, $message, $mailHeader);
174 // Why did we end up here? This should not happen
175 debug_report_bug(__FUNCTION__, __LINE__, 'Ending up: template=' . $template);
178 // Check to use wether legacy mail() command or PHPMailer class
179 // @TODO Rewrite this to an extension 'smtp'
181 function checkPhpMailerUsage() {
182 return ((getConfig('SMTP_HOSTNAME') != '') && (getConfig('SMTP_USER') != ''));
185 // Send out a raw email with PHPMailer class or legacy mail() command
186 function sendRawEmail ($toEmail, $subject, $message, $headers) {
187 // Just compile all to put out all configs, etc.
188 $eval = '$toEmail = decodeEntities("' . escapeQuotes(doFinalCompilation(compileRawCode($toEmail), false)) . '"); ';
189 $eval .= '$subject = decodeEntities("' . escapeQuotes(doFinalCompilation(compileRawCode($subject), false)) . '"); ';
190 $eval .= '$headers = decodeEntities("' . escapeQuotes(doFinalCompilation(compileRawCode($headers), false)) . '"); ';
192 // Do not decode entities in the message because we also send HTML mails through this function
193 $eval .= '$message = "' . escapeQuotes(doFinalCompilation(compileRawCode($message), false)) . '";';
195 // Run the final eval() command
198 // Shall we use PHPMailer class or legacy mode?
199 if (checkPhpMailerUsage()) {
200 // Use PHPMailer class with SMTP enabled
201 loadIncludeOnce('inc/phpmailer/class.phpmailer.php');
202 loadIncludeOnce('inc/phpmailer/class.smtp.php');
205 $mail = new PHPMailer();
207 // Set charset to UTF-8
208 $mail->CharSet = 'UTF-8';
210 // Path for PHPMailer
211 $mail->PluginDir = sprintf("%sinc/phpmailer/", getPath());
214 $mail->SMTPAuth = true;
215 $mail->Host = getConfig('SMTP_HOSTNAME');
217 $mail->Username = getConfig('SMTP_USER');
218 $mail->Password = getConfig('SMTP_PASSWORD');
219 if (empty($headers)) {
220 $mail->From = getConfig('WEBMASTER');
222 $mail->From = $headers;
224 $mail->FromName = getMainTitle();
225 $mail->Subject = $subject;
226 if ((isExtensionActive('html_mail')) && (secureString($message) != $message)) {
227 $mail->Body = $message;
228 $mail->AltBody = 'Your mail program required HTML support to read this mail!';
229 $mail->WordWrap = 70;
232 $mail->Body = decodeEntities($message);
235 $mail->AddAddress($toEmail, '');
236 $mail->AddReplyTo(getConfig('WEBMASTER'), getMainTitle());
237 $mail->AddCustomHeader('Errors-To:' . getConfig('WEBMASTER'));
238 $mail->AddCustomHeader('X-Loop:' . getConfig('WEBMASTER'));
239 $mail->AddCustomHeader('Bounces-To:' . getConfig('WEBMASTER'));
242 // Has an error occured?
243 if (!empty($mail->ErrorInfo)) {
245 logDebugMessage(__FUNCTION__, __LINE__, 'Error while sending mail: ' . $mail->ErrorInfo);
254 // Use legacy mail() command
255 return mail($toEmail, $subject, decodeEntities($message), $headers);
259 // Generate a password in a specified length or use default password length
260 function generatePassword ($length = '0') {
261 // Auto-fix invalid length of zero
262 if ($length == '0') $length = getConfig('pass_len');
264 // Initialize array with all allowed chars
265 $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,-,+,_,/,.');
267 // Start creating password
269 for ($i = '0'; $i < $length; $i++) {
270 $PASS .= $ABC[mt_rand(0, count($ABC) -1)];
273 // When the size is below 40 we can also add additional security by scrambling
274 // it. Otherwise we may corrupt hashes
275 if (strlen($PASS) <= 40) {
276 // Also scramble the password
277 $PASS = scrambleString($PASS);
280 // Return the password
284 // Generates a human-readable timestamp from the Uni* stamp
285 function generateDateTime ($time, $mode = '0') {
286 // If the stamp is zero it mostly didn't "happen"
289 return '{--NEVER_HAPPENED--}';
292 // Filter out numbers
293 $time = bigintval($time);
296 if (isset($GLOBALS[__FUNCTION__][$time][$mode])) {
298 return $GLOBALS[__FUNCTION__][$time][$mode];
302 switch (getLanguage()) {
303 case 'de': // German date / time format
305 case '0': $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
306 case '1': $ret = strtolower(date('d.m.Y - H:i', $time)); break;
307 case '2': $ret = date('d.m.Y|H:i', $time); break;
308 case '3': $ret = date('d.m.Y', $time); break;
309 case '4': $ret = date('d.m.Y|H:i:s', $time); break;
310 case '5': $ret = date('d-m-Y (l-F-T)', $time); break;
311 case '6': $ret = date('Ymd', $time); break;
313 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
318 default: // Default is the US date / time format!
320 case '0': $ret = date('r', $time); break;
321 case '1': $ret = strtolower(date('Y-m-d - g:i A', $time)); break;
322 case '2': $ret = date('y-m-d|H:i', $time); break;
323 case '3': $ret = date('y-m-d', $time); break;
324 case '4': $ret = date('d.m.Y|H:i:s', $time); break;
325 case '5': $ret = date('d-m-Y (l-F-T)', $time); break;
326 case '6': $ret = date('Ymd', $time); break;
328 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
334 $GLOBALS[__FUNCTION__][$time][$mode] = $ret;
340 // Translates Y/N to yes/no
341 function translateYesNo ($yn) {
343 if (!isset($GLOBALS[__FUNCTION__][$yn])) {
345 $GLOBALS[__FUNCTION__][$yn] = '??? (' . $yn . ')';
347 case 'Y': $GLOBALS[__FUNCTION__][$yn] = '{--YES--}'; break;
348 case 'N': $GLOBALS[__FUNCTION__][$yn] = '{--NO--}'; break;
351 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown value %s. Expected Y/N!", $yn));
357 return $GLOBALS[__FUNCTION__][$yn];
360 // Translates the american decimal dot into a german comma
361 function translateComma ($dotted, $cut = true, $max = '0') {
362 // First, cast all to double, due to PHP changes
363 $dotted = (double) $dotted;
365 // Default is 3 you can change this in admin area "Misc -> Misc Options"
366 if (!isConfigEntrySet('max_comma')) setConfigEntry('max_comma', 3);
368 // Use from config is default
369 $maxComma = getConfig('max_comma');
371 // Use from parameter?
372 if ($max > 0) $maxComma = $max;
375 if (($cut === true) && ($max == '0')) {
376 // Test for commata if in cut-mode
377 $com = explode('.', $dotted);
378 if (count($com) < 2) {
379 // Don't display commatas even if there are none... ;-)
387 $translated = $dotted;
388 switch (getLanguage()) {
389 case 'de': // German language
390 $translated = number_format($dotted, $maxComma, ',', '.');
393 default: // All others
394 $translated = number_format($dotted, $maxComma, '.', ',');
398 // Return translated value
399 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'dotted=' . $dotted . ',translated=' . $translated . ',maxComma=' . $maxComma);
403 // Translate Uni*-like gender to human-readable
404 function translateGender ($gender) {
406 $ret = '!' . $gender . '!';
408 // Male/female or company?
413 $ret = sprintf("{--GENDER_%s--}", $gender);
417 // Please report bugs on unknown genders
418 debug_report_bug(__FUNCTION__, __LINE__, sprintf("Unknown gender %s detected.", $gender));
422 // Return translated gender
426 // "Translates" the user status
427 function translateUserStatus ($status) {
428 // Generate message depending on status
433 $ret = sprintf("{--ACCOUNT_STATUS_%s--}", $status);
438 $ret = '{--ACCOUNT_STATUS_DELETED--}';
442 // Please report all unknown status
443 debug_report_bug(__FUNCTION__, __LINE__, sprintf("Unknown status %s(%s) detected.", $status, gettype($status)));
451 // "Translates" 'visible' and 'locked' to a CSS class
452 function translateMenuVisibleLocked ($content, $prefix = '') {
453 // Default is 'menu_unknown'
454 $content['visible_css'] = $prefix . 'menu_unknown';
456 // Translate 'visible' and keep an eye on the prefix
457 switch ($content['visible']) {
459 case 'Y': $content['visible_css'] = $prefix . 'menu_visible' ; break;
460 case 'N': $content['visible_css'] = $prefix . 'menu_invisible'; break;
462 // Please report this
463 debug_report_bug(__FUNCTION__, __LINE__, 'Unsupported visible value detected. content=<pre>' . print_r($content, true) . '</pre>');
467 // Translate 'locked' and keep an eye on the prefix
468 switch ($content['locked']) {
470 case 'Y': $content['locked_css'] = $prefix . 'menu_locked' ; break;
471 case 'N': $content['locked_css'] = $prefix . 'menu_unlocked'; break;
473 // Please report this
474 debug_report_bug(__FUNCTION__, __LINE__, 'Unsupported locked value detected. content=<pre>' . print_r($content, true) . '</pre>');
478 // Return the resulting array
482 // Generates an URL for the dereferer
483 function generateDerefererUrl ($URL) {
484 // Don't de-refer our own links!
485 if (substr($URL, 0, strlen(getUrl())) != getUrl()) {
486 // De-refer this link
487 $URL = '{%url=modules.php?module=loader&url=' . encodeString(compileUriCode($URL)) . '%}';
494 // Generates an URL for the frametester
495 function generateFrametesterUrl ($URL) {
496 // Prepare frametester URL
497 $frametesterUrl = sprintf("{%%url=modules.php?module=frametester&url=%s%%}",
498 encodeString(compileUriCode($URL))
501 // Return the new URL
502 return $frametesterUrl;
505 // Count entries from e.g. a selection box
506 function countSelection ($array) {
508 if (!is_array($array)) {
510 debug_report_bug(__FUNCTION__, __LINE__, 'No array provided.');
517 foreach ($array as $key => $selected) {
519 if (!empty($selected)) $ret++;
522 // Return counted selections
526 // Generates a timestamp (some wrapper for mktime())
527 function makeTime ($hours, $minutes, $seconds, $stamp) {
528 // Extract day, month and year from given timestamp
529 $days = getDay($stamp);
530 $months = getMonth($stamp);
531 $years = getYear($stamp);
533 // Create timestamp for wished time which depends on extracted date
544 // Redirects to an URL and if neccessarry extends it with own base URL
545 function redirectToUrl ($URL, $allowSpider = true) {
547 if (substr($URL, 0, 6) == '{%url=') $URL = substr($URL, 6, -2);
550 eval('$URL = "' . compileRawCode(encodeUrl($URL)) . '";');
552 // Default 'rel' value is external, nofollow is evil from Google and hurts the Internet
553 $rel = ' rel="external"';
555 // Do we have internal or external URL?
556 if (substr($URL, 0, strlen(getUrl())) == getUrl()) {
557 // Own (=internal) URL
561 // Three different ways to debug...
562 //* DEBUG: */ debug_report_bug(__FUNCTION__, __LINE__, 'URL=' . $URL);
563 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'URL=' . $URL);
564 //* DEBUG: */ die($URL);
566 // Simple probe for bots/spiders from search engines
567 if ((isSpider()) && ($allowSpider === true)) {
569 setHttpStatus('200 OK');
571 // Set content-type here to fix a missing array element
572 setContentType('text/html');
574 // Output new location link as anchor
575 outputHtml('<a href="' . $URL . '"' . $rel . '>' . secureString($URL) . '</a>');
576 } elseif (!headers_sent()) {
577 // Clear output buffer
580 // Clear own output buffer
581 $GLOBALS['output'] = '';
583 // Load URL when headers are not sent
584 sendRawRedirect(doFinalCompilation(str_replace('&', '&', $URL), false));
586 // Output error message
587 loadInclude('inc/header.php');
588 loadTemplate('redirect_url', false, str_replace('&', '&', $URL));
589 loadInclude('inc/footer.php');
592 // Shut the mailer down here
596 /************************************************************************
598 * Gaenderter Sortier-Algorythmus, $array wird nach dem Array (!) *
599 * $a_sort sortiert: *
601 * $array - Das 3-dimensionale Array, das paralell sortiert werden soll *
602 * $a_sort - Array, das die Sortiereihenfolge der ersten Elementeben *
603 * $primary_key - Prim.rschl.ssel aus $a_sort, nach dem sortiert wird *
604 * $order - Sortiereihenfolge: -1 = a-Z, 0 = keine, 1 = Z-a *
605 * $nums - true = Als Zahlen sortieren, false = Als Zeichen sortieren *
607 * $a_sort muss Elemente enthalten, deren Wert Schluessel von $array *
608 * sind... Klingt kompliziert, suchen Sie mal mein Beispiel, dann sehen *
609 * Sie, dass es doch nicht so schwer ist! :-) *
611 ************************************************************************/
612 function array_pk_sort (&$array, $a_sort, $primary_key = '0', $order = -1, $nums = false) {
614 while ($primary_key < count($a_sort)) {
615 foreach ($dummy[$a_sort[$primary_key]] as $key => $value) {
616 foreach ($dummy[$a_sort[$primary_key]] as $key2 => $value2) {
618 if ($nums === false) {
619 // Sort byte-by-byte (also numbers will be interpreted as chars! E.g.: "9" > "10")
620 if (($key != $key2) && (strcmp(strtolower($dummy[$a_sort[$primary_key]][$key]), strtolower($dummy[$a_sort[$primary_key]][$key2])) == $order)) $match = true;
621 } elseif ($key != $key2) {
622 // Sort numbers (E.g.: 9 < 10)
623 if (($dummy[$a_sort[$primary_key]][$key] < $dummy[$a_sort[$primary_key]][$key2]) && ($order == -1)) $match = true;
624 if (($dummy[$a_sort[$primary_key]][$key] > $dummy[$a_sort[$primary_key]][$key2]) && ($order == 1)) $match = true;
628 // We have found two different values, so let's sort whole array
629 foreach ($dummy as $sort_key => $sort_val) {
630 $t = $dummy[$sort_key][$key];
631 $dummy[$sort_key][$key] = $dummy[$sort_key][$key2];
632 $dummy[$sort_key][$key2] = $t;
643 // Write back sorted array
649 // Deprecated : $length (still has one reference in this function)
652 function generateRandomCode ($length, $code, $userid, $DATA = '') {
653 // Build server string
654 $server = $_SERVER['PHP_SELF'] . getEncryptSeperator() . detectUserAgent() . getEncryptSeperator() . getenv('SERVER_SOFTWARE') . getEncryptSeperator() . detectRemoteAddr();
657 $keys = getConfig('SITE_KEY') . getEncryptSeperator() . getConfig('DATE_KEY');
658 if (isConfigEntrySet('secret_key')) {
659 $keys .= getEncryptSeperator().getSecretKey();
661 if (isConfigEntrySet('file_hash')) {
662 $keys .= getEncryptSeperator().getFileHash();
664 $keys .= getEncryptSeperator() . getDateFromPatchTime();
665 if (isConfigEntrySet('master_salt')) {
666 $keys .= getEncryptSeperator().getMasterSalt();
669 // Build string from misc data
670 $data = $code . getEncryptSeperator() . $userid . getEncryptSeperator() . $DATA;
672 // Add more additional data
673 if (isSessionVariableSet('u_hash')) {
674 $data .= getEncryptSeperator() . getSession('u_hash');
677 // Add referal id, language, theme and userid
678 $data .= getEncryptSeperator() . determineReferalId();
679 $data .= getEncryptSeperator() . getLanguage();
680 $data .= getEncryptSeperator() . getCurrentTheme();
681 $data .= getEncryptSeperator() . getMemberId();
683 // Calculate number for generating the code
684 $a = $code + getConfig('_ADD') - 1;
686 if (isConfigEntrySet('master_salt')) {
687 // Generate hash with master salt from modula of number with the prime number and other data
688 $saltedHash = generateHash(($a % getPrime()) . getEncryptSeperator() . $server . getEncryptSeperator() . $keys . getEncryptSeperator() . $data . getEncryptSeperator() . getConfig('DATE_KEY') . getEncryptSeperator() . $a, getMasterSalt());
690 // Create number from hash
691 $rcode = hexdec(substr($saltedHash, strlen(getMasterSalt()), 9)) / abs(getConfig('rand_no') - $a + sqrt(getConfig('_ADD'))) / pi();
693 // Generate hash with "hash of site key" from modula of number with the prime number and other data
694 $saltedHash = generateHash(($a % getPrime()) . getEncryptSeperator() . $server . getEncryptSeperator() . $keys . getEncryptSeperator() . $data . getEncryptSeperator() . getConfig('DATE_KEY') . getEncryptSeperator() . $a, substr(sha1(getConfig('SITE_KEY')), 0, getSaltLength()));
696 // Create number from hash
697 $rcode = hexdec(substr($saltedHash, 8, 9)) / abs(getConfig('rand_no') - $a + sqrt(getConfig('_ADD'))) / pi();
700 // At least 10 numbers shall be secure enought!
701 $len = getConfig('code_length');
702 if ($len == '0') $len = $length;
703 if ($len == '0') $len = 10;
705 // Cut off requested counts of number
706 $return = substr(str_replace('.', '', $rcode), 0, $len);
708 // Done building code
712 // Does only allow numbers
713 function bigintval ($num, $castValue = true, $abortOnMismatch = true) {
714 // Filter all numbers out
715 $ret = preg_replace('/[^0123456789]/', '', $num);
718 if ($castValue === true) {
719 // Cast to biggest numeric type
720 $ret = (double) $ret;
723 // Has the whole value changed?
724 if (('' . $ret . '' != '' . $num . '') && ($abortOnMismatch === true) && (!is_null($num))) {
726 debug_report_bug(__FUNCTION__, __LINE__, 'Problem with number found. ret[' . gettype($ret) . ']=' . $ret . ', num[' . gettype($num) . ']='. $num);
733 // Creates a Uni* timestamp from given selection data and prefix
734 function createTimestampFromSelections ($prefix, $postData) {
735 // Initial return value
738 // Do we have a leap year?
740 $TEST = getYear() / 4;
743 // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
744 if ((floor($TEST) == $TEST) && ($M1 == '02') && ($postData[$prefix . '_mo'] > '02')) $SWITCH = getOneDay();
746 // First add years...
747 $ret += $postData[$prefix . '_ye'] * (31536000 + $SWITCH);
750 $ret += $postData[$prefix . '_mo'] * 2628000;
753 $ret += $postData[$prefix . '_we'] * 604800;
756 $ret += $postData[$prefix . '_da'] * 86400;
759 $ret += $postData[$prefix . '_ho'] * 3600;
762 $ret += $postData[$prefix . '_mi'] * 60;
764 // And at last seconds...
765 $ret += $postData[$prefix . '_se'];
767 // Return calculated value
771 // Creates a 'fancy' human-readable timestamp from a Uni* stamp
772 function createFancyTime ($stamp) {
773 // Get data array with years/months/weeks/days/...
774 $data = createTimeSelections($stamp, '', '', '', true);
776 foreach($data as $k => $v) {
778 // Value is greater than 0 "eval" data to return string
779 $ret .= ', ' . $v . ' {--_' . strtoupper($k) . '--}';
784 // Do we have something there?
785 if (strlen($ret) > 0) {
786 // Remove leading commata and space
787 $ret = substr($ret, 2);
790 $ret = '0 {--_SECONDS--}';
793 // Return fancy time string
797 // Extract host from script name
798 function extractHostnameFromUrl (&$script) {
799 // Use default SERVER_URL by default... ;) So?
800 $url = getServerUrl();
802 // Is this URL valid?
803 if (substr($script, 0, 7) == 'http://') {
804 // Use the hostname from script URL as new hostname
805 $url = substr($script, 7);
806 $extract = explode('/', $url);
808 // Done extracting the URL :)
812 $host = str_replace('http://', '', $url);
813 if (isInString('/', $host)) $host = substr($host, 0, strpos($host, '/'));
815 // Generate relative URL
816 //* DEBUG: */ debugOutput('SCRIPT=' . $script);
817 if (substr(strtolower($script), 0, 7) == 'http://') {
818 // But only if http:// is in front!
819 $script = substr($script, (strlen($url) + 7));
820 } elseif (substr(strtolower($script), 0, 8) == 'https://') {
822 $script = substr($script, (strlen($url) + 8));
825 //* DEBUG: */ debugOutput('SCRIPT=' . $script);
826 if (substr($script, 0, 1) == '/') $script = substr($script, 1);
832 // Send a GET request
833 function sendGetRequest ($script, $data = array()) {
834 // Extract host name from script
835 $host = extractHostnameFromUrl($script);
838 $body = http_build_query($data, '', '&');
840 // There should be data, else we don't need to extend $script with $body
842 // Do we have a question-mark in the script?
843 if (strpos($script, '?') === false) {
844 // No, so first char must be question mark
854 // Remove trailed & to make it more conform
855 if (substr($script, -1, 1) == '&') $script = substr($script, 0, -1);
858 // Generate GET request header
859 $request = 'GET /' . trim($script) . ' HTTP/1.1' . getConfig('HTTP_EOL');
860 $request .= 'Host: ' . $host . getConfig('HTTP_EOL');
861 $request .= 'Referer: ' . getUrl() . '/admin.php' . getConfig('HTTP_EOL');
862 if (isConfigEntrySet('FULL_VERSION')) {
863 $request .= 'User-Agent: ' . getTitle() . '/' . getFullVersion() . getConfig('HTTP_EOL');
865 $request .= 'User-Agent: ' . getTitle() . '/' . getConfig('VERSION') . getConfig('HTTP_EOL');
867 $request .= 'Accept: image/png,image/*;q=0.8,text/plain,text/html,*/*;q=0.5' . getConfig('HTTP_EOL');
868 $request .= 'Accept-Charset: UTF-8,*' . getConfig('HTTP_EOL');
869 $request .= 'Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0' . getConfig('HTTP_EOL');
870 $request .= 'Connection: close' . getConfig('HTTP_EOL');
871 $request .= getConfig('HTTP_EOL');
873 // Send the raw request
874 $response = sendRawRequest($host, $request);
876 // Return the result to the caller function
880 // Send a POST request
881 function sendPostRequest ($script, $postData) {
882 // Is postData an array?
883 if (!is_array($postData)) {
885 logDebugMessage(__FUNCTION__, __LINE__, sprintf("postData is not an array. Type: %s", gettype($postData)));
886 return array('', '', '');
889 // Extract host name from script
890 $host = extractHostnameFromUrl($script);
892 // Construct request body
893 $body = http_build_query($postData, '', '&');
895 // Generate POST request header
896 $request = 'POST /' . trim($script) . ' HTTP/1.0' . getConfig('HTTP_EOL');
897 $request .= 'Host: ' . $host . getConfig('HTTP_EOL');
898 $request .= 'Referer: ' . getUrl() . '/admin.php' . getConfig('HTTP_EOL');
899 $request .= 'User-Agent: ' . getTitle() . '/' . getFullVersion() . getConfig('HTTP_EOL');
900 $request .= 'Accept: text/plain;q=0.8' . getConfig('HTTP_EOL');
901 $request .= 'Accept-Charset: UTF-8,*' . getConfig('HTTP_EOL');
902 $request .= 'Cache-Control: no-cache' . getConfig('HTTP_EOL');
903 $request .= 'Content-Type: application/x-www-form-urlencoded' . getConfig('HTTP_EOL');
904 $request .= 'Content-Length: ' . strlen($body) . getConfig('HTTP_EOL');
905 $request .= 'Connection: close' . getConfig('HTTP_EOL');
906 $request .= getConfig('HTTP_EOL');
911 // Send the raw request
912 $response = sendRawRequest($host, $request);
914 // Return the result to the caller function
918 // Sends a raw request to another host
919 function sendRawRequest ($host, $request) {
920 // Init errno and errdesc with 'all fine' values
921 $errno = '0'; $errdesc = '';
924 $response = array('', '', '');
926 // Default is not to use proxy
929 // Are proxy settins set?
936 loadIncludeOnce('inc/classes/resolver.class.php');
938 // Get resolver instance
939 $resolver = new HostnameResolver();
942 //* DEBUG: */ die('SCRIPT=' . $script);
943 if ($useProxy === true) {
944 // Resolve hostname into IP address
945 $ip = $resolver->resolveHostname(compileRawCode(getConfig('proxy_host')));
947 // Connect to host through proxy connection
948 $fp = fsockopen($ip, bigintval(getConfig('proxy_port')), $errno, $errdesc, 30);
950 // Resolve hostname into IP address
951 $ip = $resolver->resolveHostname($host);
953 // Connect to host directly
954 $fp = fsockopen($ip, 80, $errno, $errdesc, 30);
958 if (!is_resource($fp)) {
960 logDebugMessage(__FUNCTION__, __LINE__, $errdesc . ' (' . $errno . ')');
962 } elseif ((!stream_set_blocking($fp, 0)) || (!stream_set_timeout($fp, 1))) {
963 // Cannot set non-blocking mode or timeout
964 logDebugMessage(__FUNCTION__, __LINE__, socket_strerror(socket_last_error()));
969 if ($useProxy === true) {
970 // Setup proxy tunnel
971 $response = setupProxyTunnel($host, $fp);
973 // If the response is invalid, abort
974 if ((count($response) == 3) && (empty($response[0])) && (empty($response[1])) && (empty($response[2]))) {
976 logDebugMessage(__FUNCTION__, __LINE__, 'Proxy tunnel not working?');
982 fwrite($fp, $request);
985 $start = microtime(true);
989 // Get info from stream
990 $info = stream_get_meta_data($fp);
992 // Is it timed out? 15 seconds is a really patient...
993 if (($info['timed_out'] == true) || (microtime(true) - $start) > 15) {
995 logDebugMessage(__FUNCTION__, __LINE__, 'Timed out to get data from host ' . $host);
1001 // Get line from stream
1002 $line = fgets($fp, 128);
1004 // Ignore empty lines because of non-blocking mode
1006 // uslepp a little to avoid 100% CPU load
1013 // Add it to response
1014 $response[] = trim($line);
1020 // Time request if debug-mode is enabled
1021 if (isDebugModeEnabled()) {
1022 // Add debug message...
1023 logDebugMessage(__FUNCTION__, __LINE__, 'Request took ' . (microtime(true) - $start) . ' seconds and returned ' . count($response) . ' line(s).');
1026 // Skip first empty lines
1028 foreach ($resp as $idx => $line) {
1030 $line = trim($line);
1032 // Is this line empty?
1035 array_shift($response);
1037 // Abort on first non-empty line
1042 //* DEBUG: */ debugOutput('<strong>Request:</strong><pre>'.print_r($request, true).'</pre>');
1043 //* DEBUG: */ debugOutput('<strong>Response:</strong><pre>'.print_r($response, true).'</pre>');
1045 // Proxy agent found or something went wrong?
1046 if (!isset($response[0])) {
1047 // No response, maybe timeout
1048 $response = array('', '', '');
1049 logDebugMessage(__FUNCTION__, __LINE__, 'Invalid empty response array, maybe timed out?');
1050 } elseif ((substr(strtolower($response[0]), 0, 11) == 'proxy-agent') && ($useProxy === true)) {
1051 // Proxy header detected, so remove two lines
1052 array_shift($response);
1053 array_shift($response);
1056 // Was the request successfull?
1057 if ((!isInStringIgnoreCase('200 OK', $response[0])) || (empty($response[0]))) {
1058 // Not found / access forbidden
1059 logDebugMessage(__FUNCTION__, __LINE__, 'Unexpected status code ' . $response[0] . ' detected. "200 OK" was expected.');
1060 $response = array('', '', '');
1067 // Sets up a proxy tunnel for given hostname and through resource
1068 function setupProxyTunnel ($host, $resource) {
1070 $response = array('', '', '');
1072 // Generate CONNECT request header
1073 $proxyTunnel = 'CONNECT ' . $host . ':80 HTTP/1.0' . getConfig('HTTP_EOL');
1074 $proxyTunnel .= 'Host: ' . $host . getConfig('HTTP_EOL');
1076 // Use login data to proxy? (username at least!)
1077 if (getConfig('proxy_username') != '') {
1079 $encodedAuth = base64_encode(compileRawCode(getConfig('proxy_username')) . ':' . compileRawCode(getConfig('proxy_password')));
1080 $proxyTunnel .= 'Proxy-Authorization: Basic ' . $encodedAuth . getConfig('HTTP_EOL');
1083 // Add last new-line
1084 $proxyTunnel .= getConfig('HTTP_EOL');
1085 //* DEBUG: */ debugOutput('<strong>proxyTunnel=</strong><pre>' . $proxyTunnel.'</pre>');
1088 fwrite($fp, $proxyTunnel);
1092 // No response received
1096 // Read the first line
1097 $resp = trim(fgets($fp, 10240));
1098 $respArray = explode(' ', $resp);
1099 if ((strtolower($respArray[0]) !== 'http/1.0') || ($respArray[1] != '200')) {
1100 // Invalid response!
1108 // Taken from www.php.net isInStringIgnoreCase() user comments
1109 function isEmailValid ($email) {
1110 // Check first part of email address
1111 $first = '[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*';
1114 $domain = '[a-z0-9-]+(\.[a-z0-9-]{2,5})+';
1117 $regex = '@^' . $first . '\@' . $domain . '$@iU';
1119 // Return check result
1120 return preg_match($regex, $email);
1123 // Function taken from user comments on www.php.net / function isInStringIgnoreCase()
1124 function isUrlValid ($URL, $compile=true) {
1125 // Trim URL a little
1126 $URL = trim(urldecode($URL));
1127 //* DEBUG: */ debugOutput($URL);
1129 // Compile some chars out...
1130 if ($compile === true) $URL = compileUriCode($URL, false, false, false);
1131 //* DEBUG: */ debugOutput($URL);
1133 // Check for the extension filter
1134 if (isExtensionActive('filter')) {
1135 // Use the extension's filter set
1136 return FILTER_VALIDATE_URL($URL, false);
1139 // If not installed, perform a simple test. Just make it sure there is always a http:// or
1140 // https:// in front of the URLs
1141 return isUrlValidSimple($URL);
1144 // Generate a hash for extra-security for all passwords
1145 function generateHash ($plainText, $salt = '', $hash = true) {
1147 //* DEBUG: */ debugOutput('plainText('.strlen($plainText).')=' . $plainText . ',salt('.strlen($salt).')=' . $salt . ',hash=' . intval($hash));
1149 // Is the required extension 'sql_patches' there and a salt is not given?
1150 // 123 4 43 3 4 432 2 3 32 2 3 32 2 3 3 21
1151 if (((isExtensionInstalledAndOlder('sql_patches', '0.3.6')) && (empty($salt))) || (!isExtensionActive('sql_patches')) || (!isExtensionInstalledAndNewer('other', '0.2.5')) || (strlen($salt) == 32)) {
1152 // Extension sql_patches is missing/outdated so we hash the plain text with MD5
1153 if ($hash === true) {
1154 // Is plain password
1155 return md5($plainText);
1157 // Is already a hash
1162 // Do we miss an arry element here?
1163 if (!isConfigEntrySet('file_hash')) {
1165 debug_report_bug(__FUNCTION__, __LINE__, 'Missing file_hash in ' . __FUNCTION__ . '.');
1168 // When the salt is empty build a new one, else use the first x configured characters as the salt
1170 // Build server string for more entropy
1171 $server = $_SERVER['PHP_SELF'] . getEncryptSeperator() . detectUserAgent() . getEncryptSeperator() . getenv('SERVER_SOFTWARE') . getEncryptSeperator() . detectRemoteAddr();
1174 $keys = getConfig('SITE_KEY') . getEncryptSeperator() . getConfig('DATE_KEY') . getEncryptSeperator() . getSecretKey() . getEncryptSeperator() . getFileHash() . getEncryptSeperator() . getDateFromPatchTime() . getEncryptSeperator() . getMasterSalt();
1177 $data = $plainText . getEncryptSeperator() . uniqid(mt_rand(), true) . getEncryptSeperator() . time();
1179 // Calculate number for generating the code
1180 $a = time() + getConfig('_ADD') - 1;
1182 // Generate SHA1 sum from modula of number and the prime number
1183 $sha1 = sha1(($a % getPrime()) . $server . getEncryptSeperator() . $keys . getEncryptSeperator() . $data . getEncryptSeperator() . getConfig('DATE_KEY') . getEncryptSeperator() . $a);
1184 //* DEBUG: */ debugOutput('SHA1=' . $sha1.' ('.strlen($sha1).')<br />');
1185 $sha1 = scrambleString($sha1);
1186 //* DEBUG: */ debugOutput('Scrambled=' . $sha1.' ('.strlen($sha1).')<br />');
1187 //* DEBUG: */ $sha1b = descrambleString($sha1);
1188 //* DEBUG: */ debugOutput('Descrambled=' . $sha1b.' ('.strlen($sha1b).')<br />');
1190 // Generate the password salt string
1191 $salt = substr($sha1, 0, getSaltLength());
1192 //* DEBUG: */ debugOutput($salt.' ('.strlen($salt).')<br />');
1195 //* DEBUG: */ debugOutput('salt=' . $salt);
1196 $salt = substr($salt, 0, getSaltLength());
1197 //* DEBUG: */ debugOutput('salt=' . $salt . '(' . strlen($salt) . '/' . getSaltLength() . ')<br />');
1199 // Sanity check on salt
1200 if (strlen($salt) != getSaltLength()) {
1202 debug_report_bug(__FUNCTION__, __LINE__, 'salt length mismatch! ('.strlen($salt).'/'.getSaltLength().')');
1206 // Generate final hash (for debug output)
1207 $finalHash = $salt . sha1($salt . $plainText);
1210 //* DEBUG: */ debugOutput('finalHash('.strlen($finalHash).')=' . $finalHash);
1216 // Scramble a string
1217 function scrambleString ($str) {
1221 // Final check, in case of failture it will return unscrambled string
1222 if (strlen($str) > 40) {
1223 // The string is to long
1225 } elseif (strlen($str) == 40) {
1227 $scrambleNums = explode(':', getPassScramble());
1229 // Generate new numbers
1230 $scrambleNums = explode(':', genScrambleString(strlen($str)));
1233 // Compare both lengths and abort if different
1234 if (strlen($str) != count($scrambleNums)) return $str;
1236 // Scramble string here
1237 //* DEBUG: */ debugOutput('***Original=' . $str.'***<br />');
1238 for ($idx = 0; $idx < strlen($str); $idx++) {
1239 // Get char on scrambled position
1240 $char = substr($str, $scrambleNums[$idx], 1);
1242 // Add it to final output string
1243 $scrambled .= $char;
1246 // Return scrambled string
1247 //* DEBUG: */ debugOutput('***Scrambled=' . $scrambled.'***<br />');
1251 // De-scramble a string scrambled by scrambleString()
1252 function descrambleString ($str) {
1253 // Scramble only 40 chars long strings
1254 if (strlen($str) != 40) return $str;
1256 // Load numbers from config
1257 $scrambleNums = explode(':', getPassScramble());
1260 if (count($scrambleNums) != 40) return $str;
1262 // Begin descrambling
1263 $orig = str_repeat(' ', 40);
1264 //* DEBUG: */ debugOutput('+++Scrambled=' . $str.'+++<br />');
1265 for ($idx = 0; $idx < 40; $idx++) {
1266 $char = substr($str, $idx, 1);
1267 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
1270 // Return scrambled string
1271 //* DEBUG: */ debugOutput('+++Original=' . $orig.'+++<br />');
1275 // Generated a "string" for scrambling
1276 function genScrambleString ($len) {
1277 // Prepare array for the numbers
1278 $scrambleNumbers = array();
1280 // First we need to setup randomized numbers from 0 to 31
1281 for ($idx = 0; $idx < $len; $idx++) {
1283 $rand = mt_rand(0, ($len - 1));
1285 // Check for it by creating more numbers
1286 while (array_key_exists($rand, $scrambleNumbers)) {
1287 $rand = mt_rand(0, ($len - 1));
1291 $scrambleNumbers[$rand] = $rand;
1294 // So let's create the string for storing it in database
1295 $scrambleString = implode(':', $scrambleNumbers);
1296 return $scrambleString;
1299 // Generate an PGP-like encrypted hash of given hash for e.g. cookies
1300 function encodeHashForCookie ($passHash) {
1301 // Return vanilla password hash
1304 // Is a secret key and master salt already initialized?
1305 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, intval(isExtensionInstalled('sql_patches')) . '/' . intval(isConfigEntrySet('_PRIME')) . '/' . intval(isConfigEntrySet('secret_key')) . '/' . intval(isConfigEntrySet('master_salt')));
1306 if ((isExtensionInstalled('sql_patches')) && (isConfigEntrySet('_PRIME')) && (isConfigEntrySet('secret_key')) && (isConfigEntrySet('master_salt'))) {
1307 // Only calculate when the secret key is generated
1308 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, strlen($passHash) . '/' . strlen(getSecretKey()));
1309 if ((strlen($passHash) != 49) || (strlen(getSecretKey()) != 40)) {
1310 // Both keys must have same length so return unencrypted
1311 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, strlen($passHash) . '!=49/' . strlen(getSecretKey()) . '!=40');
1315 $newHash = ''; $start = 9;
1316 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'passHash=' . $passHash . '(' . strlen($passHash) . ')');
1317 for ($idx = 0; $idx < 20; $idx++) {
1318 $part1 = hexdec(substr($passHash, ($idx * 2) + (strlen($passHash) - strlen(getSecretKey())), 2));
1319 $part2 = hexdec(substr(getSecretKey(), $start, 2));
1320 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'part1=' . $part1 . '/part2=' . $part2);
1321 $mod = dechex($idx);
1322 if ($part1 > $part2) {
1323 $mod = dechex(sqrt(($part1 - $part2) * getPrime() / pi()));
1324 } elseif ($part2 > $part1) {
1325 $mod = dechex(sqrt(($part2 - $part1) * getPrime() / pi()));
1327 $mod = substr($mod, 0, 2);
1328 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'part1=' . $part1 . '/part2=' . $part2 . '/mod=' . $mod . '(' . strlen($mod) . ')');
1329 $mod = str_repeat(0, (2 - strlen($mod))) . $mod;
1330 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'mod(' . ($idx * 2) . ')=' . $mod . '*');
1335 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $passHash . ',' . $newHash . ' (' . strlen($newHash) . ')');
1336 $ret = generateHash($newHash, getMasterSalt());
1340 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret=' . $ret . '');
1344 // Fix "deleted" cookies
1345 function fixDeletedCookies ($cookies) {
1346 // Is this an array with entries?
1347 if ((is_array($cookies)) && (count($cookies) > 0)) {
1348 // Then check all cookies if they are marked as deleted!
1349 foreach ($cookies as $cookieName) {
1350 // Is the cookie set to "deleted"?
1351 if (getSession($cookieName) == 'deleted') {
1352 setSession($cookieName, '');
1358 // Checks if a given apache module is loaded
1359 function isApacheModuleLoaded ($apacheModule) {
1360 // Check it and return result
1361 return (((function_exists('apache_get_modules')) && (in_array($apacheModule, apache_get_modules()))) || (!function_exists('apache_get_modules')));
1364 // Get current theme name
1365 function getCurrentTheme () {
1366 // The default theme is 'default'... ;-)
1369 // Do we have ext-theme installed and active?
1370 if (isExtensionActive('theme')) {
1371 // Call inner method
1372 $ret = getActualTheme();
1375 // Return theme value
1379 // Generates an error code from given account status
1380 function generateErrorCodeFromUserStatus ($status = '') {
1381 // If no status is provided, use the default, cached
1382 if ((empty($status)) && (isMember())) {
1384 $status = getUserData('status');
1387 // Default error code if unknown account status
1388 $errorCode = getCode('ACCOUNT_STATUS_UNKNOWN');
1390 // Generate constant name
1391 $codeName = sprintf("ACCOUNT_STATUS_%s", strtoupper($status));
1393 // Is the constant there?
1394 if (isCodeSet($codeName)) {
1396 $errorCode = getCode($codeName);
1399 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown error status %s detected.", $status));
1402 // Return error code
1406 // Back-ported from the new ship-simu engine. :-)
1407 function debug_get_printable_backtrace () {
1409 $backtrace = '<ol>';
1411 // Get and prepare backtrace for output
1412 $backtraceArray = debug_backtrace();
1413 foreach ($backtraceArray as $key => $trace) {
1414 if (!isset($trace['file'])) $trace['file'] = __FUNCTION__;
1415 if (!isset($trace['line'])) $trace['line'] = __LINE__;
1416 if (!isset($trace['args'])) $trace['args'] = array();
1417 $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>';
1421 $backtrace .= '</ol>';
1423 // Return the backtrace
1427 // A mail-able backtrace
1428 function debug_get_mailable_backtrace () {
1432 // Get and prepare backtrace for output
1433 $backtraceArray = debug_backtrace();
1434 foreach ($backtraceArray as $key => $trace) {
1435 if (!isset($trace['file'])) $trace['file'] = __FUNCTION__;
1436 if (!isset($trace['line'])) $trace['line'] = __LINE__;
1437 if (!isset($trace['args'])) $trace['args'] = array();
1438 $backtrace .= ($key+1) . '.:' . basename($trace['file']) . ':' . $trace['line'] . ', ' . $trace['function'] . '(' . count($trace['args']) . ")\n";
1441 // Return the backtrace
1445 // Generates a ***weak*** seed
1446 function generateSeed () {
1447 return microtime(true) * 100000;
1450 // Converts a message code to a human-readable message
1451 function getMessageFromErrorCode ($code) {
1455 case getCode('LOGOUT_DONE') : $message = '{--LOGOUT_DONE--}'; break;
1456 case getCode('LOGOUT_FAILED') : $message = '<span class="notice">{--LOGOUT_FAILED--}</span>'; break;
1457 case getCode('DATA_INVALID') : $message = '{--MAIL_DATA_INVALID--}'; break;
1458 case getCode('POSSIBLE_INVALID') : $message = '{--MAIL_POSSIBLE_INVALID--}'; break;
1459 case getCode('USER_404') : $message = '{--USER_404--}'; break;
1460 case getCode('STATS_404') : $message = '{--MAIL_STATS_404--}'; break;
1461 case getCode('ALREADY_CONFIRMED') : $message = '{--MAIL_ALREADY_CONFIRMED--}'; break;
1462 case getCode('WRONG_PASS') : $message = '{--LOGIN_WRONG_PASS--}'; break;
1463 case getCode('WRONG_ID') : $message = '{--LOGIN_WRONG_ID--}'; break;
1464 case getCode('ACCOUNT_LOCKED') : $message = '{--LOGIN_STATUS_LOCKED--}'; break;
1465 case getCode('ACCOUNT_UNCONFIRMED'): $message = '{--LOGIN_STATUS_UNCONFIRMED--}'; break;
1466 case getCode('COOKIES_DISABLED') : $message = '{--LOGIN_COOKIES_DISABLED--}'; break;
1467 case getCode('BEG_SAME_AS_OWN') : $message = '{--BEG_SAME_UID_AS_OWN--}'; break;
1468 case getCode('LOGIN_FAILED') : $message = '{--GUEST_LOGIN_FAILED_GENERAL--}'; break;
1469 case getCode('MODULE_MEMBER_ONLY') : $message = getMaskedMessage('MODULE_MEMBER_ONLY', getRequestParameter('mod')); break;
1470 case getCode('OVERLENGTH') : $message = '{--MEMBER_TEXT_OVERLENGTH--}'; break;
1471 case getCode('URL_FOUND') : $message = '{--MEMBER_TEXT_CONTAINS_URL--}'; break;
1472 case getCode('SUBJECT_URL') : $message = '{--MEMBER_SUBJECT_CONTAINS_URL--}'; break;
1473 case getCode('BLIST_URL') : $message = '{--MEMBER_URL_BLACK_LISTED--}<br />{--MEMBER_BLIST_TIME--}: ' . generateDateTime(getRequestParameter('blist'), 0); break;
1474 case getCode('NO_RECS_LEFT') : $message = '{--MEMBER_SELECTED_MORE_RECS--}'; break;
1475 case getCode('INVALID_TAGS') : $message = '{--MEMBER_HTML_INVALID_TAGS--}'; break;
1476 case getCode('MORE_POINTS') : $message = '{--MEMBER_MORE_POINTS_NEEDED--}'; break;
1477 case getCode('MORE_RECEIVERS1') : $message = '{--MEMBER_ENTER_MORE_RECEIVERS--}'; break;
1478 case getCode('MORE_RECEIVERS2') : $message = '{--MEMBER_NO_MORE_RECEIVERS_FOUND--}'; break;
1479 case getCode('MORE_RECEIVERS3') : $message = '{--MEMBER_ENTER_MORE_MIN_RECEIVERS--}'; break;
1480 case getCode('INVALID_URL') : $message = '{--MEMBER_ENTER_INVALID_URL--}'; break;
1481 case getCode('NO_MAIL_TYPE') : $message = '{--MEMBER_NO_MAIL_TYPE_SELECTED--}'; break;
1482 case getCode('UNKNOWN_ERROR') : $message = '{--LOGIN_UNKNOWN_ERROR--}'; break;
1483 case getCode('UNKNOWN_STATUS') : $message = '{--LOGIN_UNKNOWN_STATUS--}'; break;
1484 case getCode('PROFILE_UPDATED') : $message = '{--MEMBER_PROFILE_UPDATED--}'; break;
1486 case getCode('ERROR_MAILID'):
1487 if (isExtensionActive('mailid', true)) {
1488 $message = '{--ERROR_CONFIRMING_MAIL--}';
1490 $message = generateExtensionInactiveNotInstalledMessage('mailid');
1494 case getCode('EXTENSION_PROBLEM'):
1495 if (isGetRequestParameterSet('ext')) {
1496 $message = generateExtensionInactiveNotInstalledMessage(getRequestParameter('ext'));
1498 $message = '{--EXTENSION_PROBLEM_UNSET_EXT--}';
1502 case getCode('URL_TIME_LOCK'):
1503 // @TODO Move this SQL code into a function, let's say 'getTimestampFromPoolId($id) ?
1504 $result = SQL_QUERY_ESC("SELECT `timestamp` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
1505 array(bigintval(getRequestParameter('id'))), __FUNCTION__, __LINE__);
1507 // Load timestamp from last order
1508 $content = SQL_FETCHARRAY($result);
1511 SQL_FREERESULT($result);
1513 // Translate it for templates
1514 $content['timestamp'] = generateDateTime($content['timestamp'], 1);
1516 // Calculate hours...
1517 $content['hours'] = round(getConfig('url_tlock') / 60 / 60);
1520 $content['minutes'] = round((getConfig('url_tlock') - $content['hours'] * 60 * 60) / 60);
1523 $content['seconds'] = round(getConfig('url_tlock') - $content['hours'] * 60 * 60 - $content['minutes'] * 60);
1525 // Finally contruct the message
1526 $message = loadTemplate('tlock_message', true, $content);
1530 // Missing/invalid code
1531 $message = getMaskedMessage('UNKNOWN_MAILID_CODE', $code);
1534 logDebugMessage(__FUNCTION__, __LINE__, $message);
1538 // Return the message
1542 // Function taken from user comments on www.php.net / function isInStringIgnoreCase()
1543 function isUrlValidSimple ($url) {
1545 $url = secureString(str_replace("\\", '', compileRawCode(urldecode($url))));
1547 // Allows http and https
1548 $http = "(http|https)+(:\/\/)";
1550 $domain1 = "([[:alnum:]]([-[:alnum:]])*\.)?([[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})?";
1551 // Test double-domains (e.g. .de.vu)
1552 $domain2 = "([-[:alnum:]])?(\.[[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})(\.[[:alpha:]]{2,5})?";
1554 $ip = "([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})";
1556 $dir = "((/)+([-_\.[:alnum:]])+)*";
1558 $page = "/([-_[:alnum:]][-\._[:alnum:]]*\.[[:alnum:]]{2,5})?";
1559 // ... and the string after and including question character
1560 $getstring1 = "([\?/]([[:alnum:]][-\._%[:alnum:]]*(=)?([-\@\._:%[:alnum:]])+)(&([[:alnum:]]([-_%[:alnum:]])*(=)?([-\@\[\._:%[:alnum:]])+(\])*))*)?";
1561 // Pattern for URLs like http://url/dir/doc.html?var=value
1562 $pattern['d1dpg1'] = $http . $domain1 . $dir . $page . $getstring1;
1563 $pattern['d2dpg1'] = $http . $domain2 . $dir . $page . $getstring1;
1564 $pattern['ipdpg1'] = $http . $ip . $dir . $page . $getstring1;
1565 // Pattern for URLs like http://url/dir/?var=value
1566 $pattern['d1dg1'] = $http . $domain1 . $dir.'/' . $getstring1;
1567 $pattern['d2dg1'] = $http . $domain2 . $dir.'/' . $getstring1;
1568 $pattern['ipdg1'] = $http . $ip . $dir.'/' . $getstring1;
1569 // Pattern for URLs like http://url/dir/page.ext
1570 $pattern['d1dp'] = $http . $domain1 . $dir . $page;
1571 $pattern['d1dp'] = $http . $domain2 . $dir . $page;
1572 $pattern['ipdp'] = $http . $ip . $dir . $page;
1573 // Pattern for URLs like http://url/dir
1574 $pattern['d1d'] = $http . $domain1 . $dir;
1575 $pattern['d2d'] = $http . $domain2 . $dir;
1576 $pattern['ipd'] = $http . $ip . $dir;
1577 // Pattern for URLs like http://url/?var=value
1578 $pattern['d1g1'] = $http . $domain1 . '/' . $getstring1;
1579 $pattern['d2g1'] = $http . $domain2 . '/' . $getstring1;
1580 $pattern['ipg1'] = $http . $ip . '/' . $getstring1;
1581 // Pattern for URLs like http://url?var=value
1582 $pattern['d1g12'] = $http . $domain1 . $getstring1;
1583 $pattern['d2g12'] = $http . $domain2 . $getstring1;
1584 $pattern['ipg12'] = $http . $ip . $getstring1;
1586 // Test all patterns
1588 foreach ($pattern as $key => $pat) {
1590 if (isDebugRegularExpressionEnabled()) {
1591 // @TODO Are these convertions still required?
1592 $pat = str_replace('.', '\.', $pat);
1593 $pat = str_replace('@', '\@', $pat);
1594 //* DEBUG: */ debugOutput($key . '= ' . $pat);
1597 // Check if expression matches
1598 $reg = ($reg || preg_match(('^' . $pat . '^'), $url));
1601 if ($reg === true) break;
1604 // Return true/false
1608 // Wtites data to a config.php-style file
1609 // @TODO Rewrite this function to use readFromFile() and writeToFile()
1610 function changeDataInFile ($FQFN, $comment, $prefix, $suffix, $DATA, $seek=0) {
1611 // Initialize some variables
1617 // Is the file there and read-/write-able?
1618 if ((isFileReadable($FQFN)) && (is_writeable($FQFN))) {
1619 $search = 'CFG: ' . $comment;
1620 $tmp = $FQFN . '.tmp';
1622 // Open the source file
1623 $fp = fopen($FQFN, 'r') or debug_report_bug(__FUNCTION__, __LINE__, 'Cannot read. file=' . basename($FQFN));
1625 // Is the resource valid?
1626 if (is_resource($fp)) {
1627 // Open temporary file
1628 $fp_tmp = fopen($tmp, 'w') or debug_report_bug(__FUNCTION__, __LINE__, 'Cannot write. tmp=' . basename($tmp) . ',file=' . $FQFN);
1630 // Is the resource again valid?
1631 if (is_resource($fp_tmp)) {
1632 // Mark temporary file as readable
1633 $GLOBALS['file_readable'][$tmp] = true;
1636 while (!feof($fp)) {
1637 // Read from source file
1638 $line = fgets ($fp, 1024);
1640 if (strpos($line, $search) > -1) {
1646 if ($next === $seek) {
1648 $line = $prefix . $DATA . $suffix . "\n";
1654 // Write to temp file
1655 fwrite($fp_tmp, $line);
1661 // Finished writing tmp file
1665 // Close source file
1668 if (($done === true) && ($found === true)) {
1669 // Copy back tmp file and delete tmp :-)
1670 copyFileVerified($tmp, $FQFN, 0644);
1671 return removeFile($tmp);
1672 } elseif ($found === false) {
1673 outputHtml('<strong>CHANGE:</strong> 404!');
1675 outputHtml('<strong>TMP:</strong> UNDONE!');
1679 // File not found, not readable or writeable
1680 debug_report_bug(__FUNCTION__, __LINE__, 'File not readable/writeable. file=' . basename($FQFN));
1683 // An error was detected!
1686 // Send notification to admin
1687 function sendAdminNotification ($subject, $templateName, $content=array(), $userid = '0') {
1688 if ((isExtensionInstalledAndNewer('admins', '0.4.1')) && (function_exists('sendAdminsEmails'))) {
1690 sendAdminsEmails($subject, $templateName, $content, $userid);
1692 // Send out out-dated way
1693 $message = loadEmailTemplate($templateName, $content, $userid);
1694 sendAdminEmails($subject, $message);
1698 // Debug message logger
1699 function logDebugMessage ($funcFile, $line, $message, $force=true) {
1700 // Is debug mode enabled?
1701 if ((isDebugModeEnabled()) || ($force === true)) {
1703 $message = str_replace("\r", '', str_replace("\n", '', $message));
1705 // Log this message away
1706 $fp = fopen(getCachePath() . 'debug.log', 'a') or debug_report_bug(__FUNCTION__, __LINE__, 'Cannot write logfile debug.log!');
1707 fwrite($fp, generateDateTime(time(), '4') . '|' . getModule(false) . '|' . basename($funcFile) . '|' . $line . '|' . $message . "\n");
1712 // Handle extra values
1713 function handleExtraValues ($filterFunction, $value, $extraValue) {
1714 // Default is the value itself
1717 // Do we have a special filter function?
1718 if (!empty($filterFunction)) {
1719 // Does the filter function exist?
1720 if (function_exists($filterFunction)) {
1721 // Do we have extra parameters here?
1722 if (!empty($extraValue)) {
1723 // Put both parameters in one new array by default
1724 $args = array($value, $extraValue);
1726 // If we have an array simply use it and pre-extend it with our value
1727 if (is_array($extraValue)) {
1728 // Make the new args array
1729 $args = merge_array(array($value), $extraValue);
1732 // Call the multi-parameter call-back
1733 $ret = call_user_func_array($filterFunction, $args);
1735 // One parameter call
1736 $ret = call_user_func($filterFunction, $value);
1745 // Converts timestamp selections into a timestamp
1746 function convertSelectionsToTimestamp (&$postData, &$DATA, &$id, &$skip) {
1747 // Init test variable
1751 // Get last three chars
1752 $test = substr($id, -3);
1754 // Improved way of checking! :-)
1755 if (in_array($test, array('_ye', '_mo', '_we', '_da', '_ho', '_mi', '_se'))) {
1756 // Found a multi-selection for timings?
1757 $test = substr($id, 0, -3);
1758 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)) {
1759 // Generate timestamp
1760 $postData[$test] = createTimestampFromSelections($test, $postData);
1761 $DATA[] = sprintf("`%s`='%s'", $test, $postData[$test]);
1762 $GLOBALS['skip_config'][$test] = true;
1764 // Remove data from array
1765 foreach (array('ye', 'mo', 'we', 'da', 'ho', 'mi', 'se') as $rem) {
1766 unset($postData[$test . '_' . $rem]);
1777 // Reverts the german decimal comma into Computer decimal dot
1778 function convertCommaToDot ($str) {
1779 // Default float is not a float... ;-)
1782 // Which language is selected?
1783 switch (getLanguage()) {
1784 case 'de': // German language
1785 // Remove german thousand dots first
1786 $str = str_replace('.', '', $str);
1788 // Replace german commata with decimal dot and cast it
1789 $float = (float)str_replace(',', '.', $str);
1792 default: // US and so on
1793 // Remove thousand dots first and cast
1794 $float = (float)str_replace(',', '', $str);
1802 // Handle menu-depending failed logins and return the rendered content
1803 function handleLoginFailures ($accessLevel) {
1804 // Default output is empty ;-)
1807 // Is the session data set?
1808 if ((isSessionVariableSet('mailer_' . $accessLevel . '_failures')) && (isSessionVariableSet('mailer_' . $accessLevel . '_last_failure'))) {
1809 // Ignore zero values
1810 if (getSession('mailer_' . $accessLevel . '_failures') > 0) {
1811 // Non-guest has login failures found, get both data and prepare it for template
1812 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'accessLevel=' . $accessLevel . '<br />');
1814 'login_failures' => 'mailer_' . $accessLevel . '_failures',
1815 'last_failure' => generateDateTime(getSession('mailer_' . $accessLevel . '_last_failure'), 2)
1819 $OUT = loadTemplate('login_failures', true, $content);
1822 // Reset session data
1823 setSession('mailer_' . $accessLevel . '_failures', '');
1824 setSession('mailer_' . $accessLevel . '_last_failure', '');
1827 // Return rendered content
1832 function rebuildCache ($cache, $inc = '', $force = false) {
1834 /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, sprintf("cache=%s, inc=%s, force=%s", $cache, $inc, intval($force)));
1836 // Shall I remove the cache file?
1837 if (isCacheInstanceValid()) {
1839 if ($GLOBALS['cache_instance']->loadCacheFile($cache)) {
1841 $GLOBALS['cache_instance']->removeCacheFile($force);
1844 // Include file given?
1847 $inc = sprintf("inc/loader/load_cache-%s.php", $inc);
1849 // Is the include there?
1850 if (isIncludeReadable($inc)) {
1851 // And rebuild it from scratch
1852 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "inc={$inc} - LOADED!<br />");
1855 // Include not found!
1856 logDebugMessage(__FUNCTION__, __LINE__, 'Include ' . $inc . ' not found. cache=' . $cache);
1862 // Determines the real remote address
1863 function determineRealRemoteAddress () {
1864 // Is a proxy in use?
1865 if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
1867 $address = $_SERVER['HTTP_X_FORWARDED_FOR'];
1868 } elseif (isset($_SERVER['HTTP_CLIENT_IP'])) {
1869 // Yet, another proxy
1870 $address = $_SERVER['HTTP_CLIENT_IP'];
1872 // The regular address when no proxy was used
1873 $address = $_SERVER['REMOTE_ADDR'];
1876 // This strips out the real address from proxy output
1877 if (strstr($address, ',')) {
1878 $addressArray = explode(',', $address);
1879 $address = $addressArray[0];
1882 // Return the result
1886 // Adds a bonus mail to the queue
1887 // This is a high-level function!
1888 function addNewBonusMail ($data, $mode = '', $output=true) {
1889 // Use mode from data if not set and availble ;-)
1890 if ((empty($mode)) && (isset($data['mode']))) $mode = $data['mode'];
1892 // Generate receiver list
1893 $receiver = generateReceiverList($data['cat'], $data['receiver'], $mode);
1896 if (!empty($receiver)) {
1897 // Add bonus mail to queue
1898 addBonusMailToQueue(
1910 // Mail inserted into bonus pool
1911 if ($output === true) {
1912 loadTemplate('admin_settings_saved', false, '{--ADMIN_BONUS_SEND--}');
1914 } elseif ($output === true) {
1915 // More entered than can be reached!
1916 loadTemplate('admin_settings_saved', false, '{--ADMIN_MORE_SELECTED--}');
1919 logDebugMessage(__FUNCTION__, __LINE__, 'cat=' . $data['cat'] . ',receiver=' . $data['receiver'] . ',data=' . base64_encode(serialize($data)) . ' More selected, than available!');
1923 // Determines referal id and sets it
1924 function determineReferalId () {
1925 // Skip this in non-html-mode and outside ref.php
1926 if ((!isHtmlOutputMode()) && (basename($_SERVER['PHP_SELF']) != 'ref.php')) return false;
1928 // Check if refid is set
1929 if ((isset($GLOBALS['refid'])) && ($GLOBALS['refid'] > 0)) {
1931 } elseif (isPostRequestParameterSet('refid')) {
1932 // Get referal id from POST element refid
1933 $GLOBALS['refid'] = secureString(postRequestParameter('refid'));
1934 } elseif (isGetRequestParameterSet('refid')) {
1935 // Get referal id from GET parameter refid
1936 $GLOBALS['refid'] = secureString(getRequestParameter('refid'));
1937 } elseif (isGetRequestParameterSet('ref')) {
1938 // Set refid=ref (the referal link uses such variable)
1939 $GLOBALS['refid'] = secureString(getRequestParameter('ref'));
1940 } elseif ((isGetRequestParameterSet('user')) && (basename($_SERVER['PHP_SELF']) == 'click.php')) {
1941 // The variable user comes from click.php
1942 $GLOBALS['refid'] = bigintval(getRequestParameter('user'));
1943 } elseif ((isSessionVariableSet('refid')) && (isValidUserId(getSession('refid')))) {
1944 // Set session refid als global
1945 $GLOBALS['refid'] = bigintval(getSession('refid'));
1946 } elseif (isRandomReferalIdEnabled()) {
1947 // Select a random user which has confirmed enougth mails
1948 $GLOBALS['refid'] = determineRandomReferalId();
1949 } elseif ((isExtensionInstalledAndNewer('sql_patches', '0.1.2')) && (isValidUserId(getDefRefid()))) {
1950 // Set default refid as refid in URL
1951 $GLOBALS['refid'] = getDefRefid();
1953 // No default id when sql_patches is not installed or none set
1954 $GLOBALS['refid'] = null;
1957 // Set cookie when default refid > 0
1958 if (!isSessionVariableSet('refid') || (isValidUserId($GLOBALS['refid'])) || ((!isValidUserId(getSession('refid'))) && (isExtensionInstalledAndNewer('sql_patches', '0.1.2')) && (isValidUserId(getDefRefid())))) {
1959 // Default is not found
1962 // Do we have nickname or userid set?
1963 if ((isExtensionActive('nickname')) && (isNicknameUsed($GLOBALS['refid']))) {
1964 // Nickname in URL, so load the id
1965 $found = fetchUserData($GLOBALS['refid'], 'nickname');
1966 } elseif (isValidUserId($GLOBALS['refid'])) {
1967 // Direct userid entered
1968 $found = fetchUserData($GLOBALS['refid']);
1971 // Is the record valid?
1972 if ((($found === false) || (!isUserDataValid())) && (isExtensionInstalledAndNewer('sql_patches', '0.1.2'))) {
1973 // No, then reset referal id
1974 $GLOBALS['refid'] = getDefRefid();
1978 setSession('refid', $GLOBALS['refid']);
1981 // Return determined refid
1982 return $GLOBALS['refid'];
1985 // Enables the reset mode and runs it
1986 function doReset () {
1987 // Enable the reset mode
1988 $GLOBALS['reset_enabled'] = true;
1991 runFilterChain('reset');
1994 // Our shutdown-function
1995 function shutdown () {
1996 // Call the filter chain 'shutdown'
1997 runFilterChain('shutdown', null);
1999 // Check if not in installation phase and the link is up
2000 if ((!isInstallationPhase()) && (SQL_IS_LINK_UP())) {
2002 SQL_CLOSE(__FUNCTION__, __LINE__);
2003 } elseif (!isInstallationPhase()) {
2005 addFatalMessage(__FUNCTION__, __LINE__, '{--NO_DB_LINK_SHUTDOWN--}');
2008 // Stop executing here
2013 function initMemberId () {
2014 $GLOBALS['member_id'] = '0';
2017 // Setter for member id
2018 function setMemberId ($memberid) {
2019 // We should not set member id to zero
2020 if ($memberid == '0') {
2021 debug_report_bug(__FUNCTION__, __LINE__, 'Userid should not be set zero.');
2025 $GLOBALS['member_id'] = bigintval($memberid);
2028 // Getter for member id or returns zero
2029 function getMemberId () {
2030 // Default member id
2033 // Is the member id set?
2034 if (isMemberIdSet()) {
2036 $memberid = $GLOBALS['member_id'];
2043 // Checks ether the member id is set
2044 function isMemberIdSet () {
2045 return (isset($GLOBALS['member_id']));
2048 // Setter for extra title
2049 function setExtraTitle ($extraTitle) {
2050 $GLOBALS['extra_title'] = $extraTitle;
2053 // Getter for extra title
2054 function getExtraTitle () {
2055 // Is the extra title set?
2056 if (!isExtraTitleSet()) {
2057 // No, then abort here
2058 debug_report_bug(__FUNCTION__, __LINE__, 'extra_title is not set!');
2062 return $GLOBALS['extra_title'];
2065 // Checks if the extra title is set
2066 function isExtraTitleSet () {
2067 return ((isset($GLOBALS['extra_title'])) && (!empty($GLOBALS['extra_title'])));
2070 // Reads a directory recursively by default and searches for files not matching
2071 // an exclusion pattern. You can now keep the exclusion pattern empty for reading
2072 // a whole directory.
2073 function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = false, $addBaseDir = true, $excludeArray = array(), $extension = '.php', $excludePattern = '@(\.|\.\.)$@', $recursive = true, $suffix = '') {
2074 // Add default entries we should exclude
2075 $excludeArray[] = '.';
2076 $excludeArray[] = '..';
2077 $excludeArray[] = '.svn';
2078 $excludeArray[] = '.htaccess';
2080 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'baseDir=' . $baseDir . ',prefix=' . $prefix . ' - Entered!');
2085 $dirPointer = opendir(getPath() . $baseDir) or debug_report_bug(__FUNCTION__, __LINE__, 'Cannot read directory ' . basename($baseDir) . '.');
2088 while ($baseFile = readdir($dirPointer)) {
2089 // Exclude '.', '..' and entries in $excludeArray automatically
2090 if (in_array($baseFile, $excludeArray, true)) {
2092 //* DEBUG: */ debugOutput('excluded=' . $baseFile);
2096 // Construct include filename and FQFN
2097 $fileName = $baseDir . $baseFile;
2098 $FQFN = getPath() . $fileName;
2100 // Remove double slashes
2101 $FQFN = str_replace('//', '/', $FQFN);
2103 // Check if the base filenname matches an exclusion pattern and if the pattern is not empty
2104 if ((!empty($excludePattern)) && (preg_match($excludePattern, $baseFile, $match))) {
2105 // These Lines are only for debugging!!
2106 //* DEBUG: */ debugOutput('baseDir:' . $baseDir);
2107 //* DEBUG: */ debugOutput('baseFile:' . $baseFile);
2108 //* DEBUG: */ debugOutput('FQFN:' . $FQFN);
2114 // Skip also files with non-matching prefix genericly
2115 if (($recursive === true) && (isDirectory($FQFN))) {
2116 // Is a redirectory so read it as well
2117 $files = merge_array($files, getArrayFromDirectory($baseDir . $baseFile . '/', $prefix, $fileIncludeDirs, $addBaseDir, $excludeArray, $extension, $excludePattern, $recursive));
2119 // And skip further processing
2121 } elseif (substr($baseFile, 0, strlen($prefix)) != $prefix) {
2123 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Invalid prefix in file ' . $baseFile . ', prefix=' . $prefix);
2125 } elseif ((!empty($suffix)) && (substr($baseFile, -(strlen($suffix . $extension)), (strlen($suffix . $extension))) != $suffix . $extension)) {
2126 // Skip wrong suffix as well
2127 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Invalid suffix in file ' . $baseFile . ', suffix=' . $suffix);
2129 } elseif (!isFileReadable($FQFN)) {
2130 // Not readable so skip it
2131 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File ' . $FQFN . ' is not readable!');
2135 // Is the file a PHP script or other?
2136 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'baseDir=' . $baseDir . ',prefix=' . $prefix . ',baseFile=' . $baseFile);
2137 if ((substr($baseFile, -4, 4) == '.php') || (($fileIncludeDirs === true) && (isDirectory($FQFN)))) {
2138 // Is this a valid include file?
2139 if ($extension == '.php') {
2140 // Remove both for extension name
2141 $extName = substr($baseFile, strlen($prefix), -4);
2143 // Is the extension valid and active?
2144 if (isExtensionNameValid($extName)) {
2145 // Then add this file
2146 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Extension entry ' . $baseFile . ' added.');
2147 $files[] = $fileName;
2149 // Add non-extension files as well
2150 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Regular entry ' . $baseFile . ' added.');
2151 if ($addBaseDir === true) {
2152 $files[] = $fileName;
2154 $files[] = $baseFile;
2158 // We found .php file but should not search for them, why?
2159 debug_report_bug(__FUNCTION__, __LINE__, 'We should find files with extension=' . $extension . ', but we found a PHP script.');
2161 } elseif (substr($baseFile, -4, 4) == $extension) {
2162 // Other, generic file found
2163 $files[] = $fileName;
2168 closedir($dirPointer);
2173 // Return array with include files
2174 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '- Left!');
2178 // Maps a module name into a database table name
2179 function mapModuleToTable ($moduleName) {
2180 // Map only these, still lame code...
2181 switch ($moduleName) {
2182 // 'index' is the guest's menu
2183 case 'index': $moduleName = 'guest'; break;
2184 // ... and 'login' the member's menu
2185 case 'login': $moduleName = 'member'; break;
2186 // Anything else will not be mapped, silently.
2193 // Add SQL debug data to array for later output
2194 function addSqlToDebug ($result, $sqlString, $timing, $F, $L) {
2195 // Do we have cache?
2196 if (!isset($GLOBALS['debug_sql_available'])) {
2197 // Check it and cache it in $GLOBALS
2198 $GLOBALS['debug_sql_available'] = ((isConfigurationLoaded()) && (isDisplayDebugSqlEnabled()));
2201 // Don't execute anything here if we don't need or ext-other is missing
2202 if ($GLOBALS['debug_sql_available'] === false) {
2206 // Already executed?
2207 if (isset($GLOBALS['debug_sqls'][$F][$L][$sqlString])) {
2208 // Then abort here, we don't need to profile a query twice
2212 // Remeber this as profiled (or not, but we don't care here)
2213 $GLOBALS['debug_sqls'][$F][$L][$sqlString] = true;
2217 'num_rows' => SQL_NUMROWS($result),
2218 'affected' => SQL_AFFECTEDROWS(),
2219 'sql_str' => $sqlString,
2220 'timing' => $timing,
2221 'file' => basename($F),
2226 $GLOBALS['debug_sqls'][] = $record;
2229 // Initializes the cache instance
2230 function initCacheInstance () {
2231 // Load include for CacheSystem class
2232 loadIncludeOnce('inc/classes/cachesystem.class.php');
2234 // Initialize cache system only when it's needed
2235 $GLOBALS['cache_instance'] = new CacheSystem();
2236 if ($GLOBALS['cache_instance']->getStatus() != 'done') {
2237 // Failed to initialize cache sustem
2238 addFatalMessage(__FUNCTION__, __LINE__, '(<font color="#0000aa">' . __LINE__ . '</font>): {--CACHE_CANNOT_INITIALIZE--}');
2242 // Getter for message from array or raw message
2243 function getMessageFromIndexedArray ($message, $pos, $array) {
2244 // Check if the requested message was found in array
2245 if (isset($array[$pos])) {
2246 // ... if yes then use it!
2247 $ret = $array[$pos];
2249 // ... else use default message
2257 // Convert ';' to ', ' for e.g. receiver list
2258 function convertReceivers ($old) {
2259 return str_replace(';', ', ', $old);
2262 // Get a module from filename and access level
2263 function getModuleFromFileName ($file, $accessLevel) {
2264 // Default is 'invalid';
2265 $modCheck = 'invalid';
2267 // @TODO This is still very static, rewrite it somehow
2268 switch ($accessLevel) {
2270 $modCheck = 'admin';
2276 $modCheck = getModule();
2279 default: // Unsupported file name / access level
2280 debug_report_bug(__FUNCTION__, __LINE__, 'Unsupported file name=' . basename($file) . '/access level=' . $accessLevel);
2288 // Encodes an URL for adding session id, etc.
2289 function encodeUrl ($url, $outputMode = '0') {
2290 // Do we have already have a PHPSESSID inside or view.php is called? Then abort here
2291 if ((strpos($url, session_name()) !== false) || (isRawOutputMode())) return $url;
2293 // Do we have a valid session?
2294 if (((!isset($GLOBALS['valid_session'])) || ($GLOBALS['valid_session'] === false) || (!isset($_COOKIE[session_name()]))) && (isSpider() === false)) {
2296 // Determine right seperator
2297 $seperator = '&';
2298 if (strpos($url, '?') === false) {
2301 } elseif ((!isHtmlOutputMode()) || ($outputMode != '0')) {
2307 if (session_id() != '') {
2308 $url .= $seperator . session_name() . '=' . session_id();
2313 if ((substr($url, 0, strlen(getUrl())) != getUrl()) && (substr($url, 0, 7) != '{?URL?}') && (substr($url, 0, 7) != 'http://') && (substr($url, 0, 8) != 'https://')) {
2315 $url = '{?URL?}/' . $url;
2322 // Simple check for spider
2323 function isSpider () {
2324 // Get the UA and trim it down
2325 $userAgent = trim(strtolower(detectUserAgent(true)));
2327 // It should not be empty, if so it is better a spider/bot
2328 if (empty($userAgent)) return true;
2331 return ((strpos($userAgent, 'spider') !== false) || (strpos($userAgent, 'slurp') !== false) || (strpos($userAgent, 'bot') !== false) || (strpos($userAgent, 'archiver') !== false));
2334 // Function to search for the last modified file
2335 function searchDirsRecursive ($dir, &$last_changed, $lookFor = 'Date') {
2337 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'dir=' . $dir);
2338 // Does it match what we are looking for? (We skip a lot files already!)
2339 // RegexPattern to exclude ., .., .revision, .svn, debug.log or .cache in the filenames
2340 $excludePattern = '@(\.revision|\.svn|debug\.log|\.cache|config\.php)$@';
2342 $ds = getArrayFromDirectory($dir, '', false, true, array(), '.php', $excludePattern);
2343 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'count(ds)='.count($ds));
2345 // Walk through all entries
2346 foreach ($ds as $d) {
2347 // Generate proper FQFN
2348 $FQFN = str_replace('//', '/', getPath() . $dir . '/' . $d);
2350 // Is it a file and readable?
2351 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'dir=' . $dir . ',d=' . $d);
2352 if (isFileReadable($FQFN)) {
2353 // $FQFN is a readable file so extract the requested data from it
2354 $check = extractRevisionInfoFromFile($FQFN, $lookFor);
2355 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File: ' . $d . ' found. check=' . $check);
2357 // Is the file more recent?
2358 if ((!isset($last_changed[$lookFor])) || ($last_changed[$lookFor] < $check)) {
2359 // This file is newer as the file before
2360 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'NEWER!');
2361 $last_changed['path_name'] = $FQFN;
2362 $last_changed[$lookFor] = $check;
2366 /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File: ' . $d . ' not readable or directory.');
2371 // Handles the braces [] of a field (e.g. value of 'name' attribute)
2372 function handleFieldWithBraces ($field) {
2373 // Are there braces [] at the end?
2374 if (substr($field, -2, 2) == '[]') {
2375 // Try to find one and replace it. I do it this way to allow easy
2376 // extending of this code.
2377 foreach (array('admin_list_builder_id_value') as $key) {
2378 // Is the cache entry set?
2379 if (isset($GLOBALS[$key])) {
2381 $field = str_replace('[]', '[' . $GLOBALS[$key] . ']', $field);
2393 // Converts a userid so it can be used in SQL queries
2394 function makeDatabaseUserId ($userid) {
2395 // Is it a valid username?
2396 if (isValidUserId($userid)) {
2398 $userid = bigintval($userid);
2400 // Is not valid or zero
2408 // Capitalizes a string with underscores, e.g.: some_foo_string will become SomeFooString
2409 // Note: This function is cached
2410 function capitalizeUnderscoreString ($str) {
2411 // Do we have cache?
2412 if (!isset($GLOBALS[__FUNCTION__][$str])) {
2413 // Init target string
2416 // Explode it with the underscore, but rewrite dashes to underscore before
2417 $strArray = explode('_', str_replace('-', '_', $str));
2419 // "Walk" through all elements and make them lower-case but first upper-case
2420 foreach ($strArray as $part) {
2421 // Capitalize the string part
2422 $capitalized .= ucfirst(strtolower($part));
2425 // Store the converted string in cache array
2426 $GLOBALS[__FUNCTION__][$str] = $capitalized;
2430 return $GLOBALS[__FUNCTION__][$str];
2433 //-----------------------------------------------------------------------------
2434 // Automatically re-created functions, all taken from user comments on www.php.net
2435 //-----------------------------------------------------------------------------
2437 if (!function_exists('html_entity_decode')) {
2438 // Taken from documentation on www.php.net
2439 function html_entity_decode ($string) {
2440 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
2441 $trans_tbl = array_flip($trans_tbl);
2442 return strtr($string, $trans_tbl);
2446 if (!function_exists('http_build_query')) {
2447 // Taken from documentation on www.php.net, credits to Marco K. (Germany) and some light mods by R.Haeder
2448 function http_build_query($data, $prefix = '', $sep = '', $key = '') {
2450 foreach ((array) $data as $k => $v) {
2451 if (is_int($k) && $prefix != null) {
2452 $k = urlencode($prefix . $k);
2455 if ((!empty($key)) || ($key === 0)) $k = $key . '[' . urlencode($k) . ']';
2457 if (is_array($v) || is_object($v)) {
2458 array_push($ret, http_build_query($v, '', $sep, $k));
2460 array_push($ret, $k.'='.urlencode($v));
2464 if (empty($sep)) $sep = ini_get('arg_separator.output');
2466 return implode($sep, $ret);