X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffunctions.php;h=e202db15d3e7750537b78684bf6b0ae533f3c5be;hp=dcdfdc6ea03845940ec3fa110573bb0b6d0564b3;hb=ee0625c4882bb462985c504abf65a3ef0e7bf1eb;hpb=4001187f22197f55e5a1f211fc8defcc180f7c32 diff --git a/inc/functions.php b/inc/functions.php index dcdfdc6ea0..e202db15d3 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Viele Nicht-MySQL-Funktionen (auch Dateizugriff) * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -30,27 +35,12 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, * * MA 02110-1301 USA * ************************************************************************/ - // Some security stuff... if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php"; require($INC); } -// Check if our config file is writeable or not -function IS_INC_WRITEABLE ($inc) { - // Generate FQFN - $FQFN = sprintf("%sinc/%s.php", constant('PATH'), $inc); - - // Abort by simple test - if ((FILE_READABLE($FQFN)) && (!is_writeable($FQFN))) { - return false; - } // END - if - - // Test write-access - return is_writeable($FQFN); -} - // Output HTML code directly or "render" it. You addionally switch the new-line character off function OUTPUT_HTML ($HTML, $newLine = true) { // Some global variables @@ -90,7 +80,7 @@ function OUTPUT_HTML ($HTML, $newLine = true) { default: // Huh, something goes wrong or maybe you have edited config.php ??? DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid renderer %s detected.", constant('OUTPUT_MODE'))); - mxchange_die("{--FATAL_ERROR--}: {--LANG_NO_RENDER_DIRECT--}"); + app_die(__FUNCTION__, __LINE__, "{--FATAL_ERROR--}: {--LANG_NO_RENDER_DIRECT--}"); break; } } elseif ((constant('_OB_CACHING') == "on") && (isset($GLOBALS['footer_sent'])) && ($GLOBALS['footer_sent'] == 1)) { @@ -139,7 +129,7 @@ function OUTPUT_HTML ($HTML, $newLine = true) { // Was that eval okay? if (empty($newContent)) { // Something went wrong! - mxchange_die("Evaluation error:
".htmlentities($eval)."
"); + app_die(__FUNCTION__, __LINE__, "Evaluation error:
".htmlentities($eval)."
"); } // END - if $OUTPUT = $newContent; } // END - while @@ -187,6 +177,7 @@ function getFatalArray () { // Add a fatal error message to the queue array function addFatalMessage ($F, $L, $message, $extra="") { + debug_report_bug($message); if (is_array($extra)) { // Multiple extras for a message with masks $message = call_user_func_array('sprintf', $extra); @@ -241,7 +232,7 @@ function LOAD_TEMPLATE ($template, $return=false, $content=array()) { if ($template == "member_support_form") { // Support request of a member $result = SQL_QUERY_ESC("SELECT userid, gender, surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", - array($GLOBALS['userid']), __FUNCTION__, __LINE__); + array(getUserId()), __FUNCTION__, __LINE__); // Is content an array? if (is_array($content)) { @@ -381,68 +372,68 @@ function LOAD_TEMPLATE ($template, $return=false, $content=array()) { } // Send mail out to an email address -function SEND_EMAIL($TO, $SUBJECT, $MSG, $HTML = "N", $FROM = "") { - //* DEBUG: */ print __FUNCTION__."(".__LINE__."):TO={$TO},SUBJECT={$SUBJECT}
\n"; +function SEND_EMAIL($toEmail, $subject, $message, $HTML = "N", $mailHeader = "") { + //* DEBUG: */ print __FUNCTION__."(".__LINE__."):TO={$toEmail},SUBJECT={$subject}
\n"; // Compile subject line (for POINTS constant etc.) - $eval = "\$SUBJECT = decodeEntities(\"".COMPILE_CODE(smartAddSlashes($SUBJECT))."\");"; + $eval = "\$subject = decodeEntities(\"".COMPILE_CODE(smartAddSlashes($subject))."\");"; eval($eval); // Set from header - if ((!eregi("@", $TO)) && ($TO > 0)) { + if ((!eregi("@", $toEmail)) && ($toEmail > 0)) { // Value detected, is the message extension installed? if (EXT_IS_ACTIVE("msg")) { - ADD_MESSAGE_TO_BOX($TO, $SUBJECT, $MSG, $HTML); + ADD_MESSAGE_TO_BOX($toEmail, $subject, $message, $HTML); return; } else { // Load email address - $result_email = SQL_QUERY_ESC("SELECT email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", array(bigintval($TO)), __FUNCTION__, __LINE__); + $result_email = SQL_QUERY_ESC("SELECT email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", array(bigintval($toEmail)), __FUNCTION__, __LINE__); //* DEBUG: */ print __FUNCTION__."(".__LINE__."):numRows=".SQL_NUMROWS($result_email)."
\n"; // Does the user exist? if (SQL_NUMROWS($result_email)) { // Load email address - list($TO) = SQL_FETCHROW($result_email); + list($toEmail) = SQL_FETCHROW($result_email); } else { // Set webmaster - $TO = constant('WEBMASTER'); + $toEmail = constant('WEBMASTER'); } // Free result SQL_FREERESULT($result_email); } - } elseif ("$TO" == "0") { + } elseif ("$toEmail" == "0") { // Is the webmaster! - $TO = constant('WEBMASTER'); + $toEmail = constant('WEBMASTER'); } - //* DEBUG: */ print __FUNCTION__."(".__LINE__."):TO={$TO}
\n"; + //* DEBUG: */ print __FUNCTION__."(".__LINE__."):TO={$toEmail}
\n"; // Check for PHPMailer or debug-mode if (!CHECK_PHPMAILER_USAGE()) { // Not in PHPMailer-Mode - if (empty($FROM)) { + if (empty($mailHeader)) { // Load email header template - $FROM = LOAD_EMAIL_TEMPLATE("header"); + $mailHeader = LOAD_EMAIL_TEMPLATE("header"); } else { // Append header - $FROM .= LOAD_EMAIL_TEMPLATE("header"); + $mailHeader .= LOAD_EMAIL_TEMPLATE("header"); } } elseif (isDebugModeEnabled()) { - if (empty($FROM)) { + if (empty($mailHeader)) { // Load email header template - $FROM = LOAD_EMAIL_TEMPLATE("header"); + $mailHeader = LOAD_EMAIL_TEMPLATE("header"); } else { // Append header - $FROM .= LOAD_EMAIL_TEMPLATE("header"); + $mailHeader .= LOAD_EMAIL_TEMPLATE("header"); } } // Compile "TO" - $eval = "\$TO = \"".COMPILE_CODE(smartAddSlashes($TO))."\";"; + $eval = "\$toEmail = \"".COMPILE_CODE(smartAddSlashes($toEmail))."\";"; eval($eval); // Compile "MSG" - $eval = "\$MSG = \"".COMPILE_CODE(smartAddSlashes($MSG))."\";"; + $eval = "\$message = \"".COMPILE_CODE(smartAddSlashes($message))."\";"; eval($eval); // Fix HTML parameter (default is no!) @@ -450,20 +441,20 @@ function SEND_EMAIL($TO, $SUBJECT, $MSG, $HTML = "N", $FROM = "") { if (isDebugModeEnabled()) { // In debug mode we want to display the mail instead of sending it away so we can debug this part print("
-".htmlentities(trim($FROM))."
-To      : ".$TO."
-Subject : ".$SUBJECT."
-Message : ".$MSG."
+".htmlentities(trim($mailHeader))."
+To      : ".$toEmail."
+Subject : ".$subject."
+Message : ".$message."
 
\n"); } elseif (($HTML == "Y") && (EXT_IS_ACTIVE("html_mail"))) { // Send mail as HTML away - SEND_HTML_EMAIL($TO, $SUBJECT, $MSG, $FROM); - } elseif (!empty($TO)) { + SEND_HTML_EMAIL($toEmail, $subject, $message, $mailHeader); + } elseif (!empty($toEmail)) { // Send Mail away - SEND_RAW_EMAIL($TO, $SUBJECT, $MSG, $FROM); + SEND_RAW_EMAIL($toEmail, $subject, $message, $mailHeader); } elseif ($HTML == "N") { // Problem found! - SEND_RAW_EMAIL(constant('WEBMASTER'), "[PROBLEM:]".$SUBJECT, $MSG, $FROM); + SEND_RAW_EMAIL(constant('WEBMASTER'), "[PROBLEM:]".$subject, $message, $mailHeader); } } @@ -477,7 +468,7 @@ function CHECK_PHPMAILER_USAGE() { /* * Send out a raw email with PHPMailer class or legacy mail() command */ -function SEND_RAW_EMAIL ($to, $subject, $msg, $from) { +function SEND_RAW_EMAIL ($toEmail, $subject, $msg, $from) { // Shall we use PHPMailer class or legacy mode? if (CHECK_PHPMAILER_USAGE()) { // Use PHPMailer class with SMTP enabled @@ -509,14 +500,14 @@ function SEND_RAW_EMAIL ($to, $subject, $msg, $from) { } else { $mail->Body = decodeEntities($msg); } - $mail->AddAddress($to, ""); + $mail->AddAddress($toEmail, ""); $mail->AddReplyTo(constant('WEBMASTER'), constant('MAIN_TITLE')); $mail->AddCustomHeader("Errors-To:".constant('WEBMASTER')); $mail->AddCustomHeader("X-Loop:".constant('WEBMASTER')); $mail->Send(); } else { // Use legacy mail() command - @mail($to, $subject, decodeEntities($msg), $from); + @mail($toEmail, $subject, decodeEntities($msg), $from); } } // @@ -657,8 +648,7 @@ function TRANSLATE_GENDER ($gender) { // function FRAMETESTER ($URL) { // Prepare frametester URL - $frametesterUrl = sprintf("%s/modules.php?module=frametester&url=%s", - URL, + $frametesterUrl = sprintf("{!URL!}/modules.php?module=frametester&url=%s", encodeString(compileUriCode($URL)) ); return $frametesterUrl; @@ -695,7 +685,7 @@ function TRANSLATE_STATUS ($status) { default: DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status)); - $ret = sprintf(getMessage('UNKNOWN_STATUS"'), $status); + $ret = sprintf(getMessage('UNKNOWN_STATUS'), $status); break; } @@ -946,7 +936,7 @@ function LOAD_URL ($URL, $addUrlData=true) { LOAD_TEMPLATE("redirect_url", false, str_replace("&", "&", $URL)); LOAD_INC("inc/footer.php"); } - exit; + shutdown(); } // Wrapper for LOAD_URL but URL comes from a configuration entry @@ -972,13 +962,14 @@ function COMPILE_CODE ($code, $simple = false, $constants = true, $full = true) return $code; } // END - if - $ARRAY = $GLOBALS['security_chars']; + // Init replacement-array with full security characters + $secChars = $GLOBALS['security_chars']; // Select smaller set of chars to replace when we e.g. want to compile URLs - if (!$full) $ARRAY = $GLOBALS['url_chars']; + if (!$full) $secChars = $GLOBALS['url_chars']; // Compile constants - if ($constants) { + if ($constants === true) { // BEFORE 0.2.1 : Language and data constants // WITH 0.2.1+ : Only language constants $code = str_replace('{--','".', str_replace('--}','."', $code)); @@ -989,16 +980,16 @@ function COMPILE_CODE ($code, $simple = false, $constants = true, $full = true) } // END - if // Compile QUOT and other non-HTML codes - foreach ($ARRAY['to'] as $k => $to) { + foreach ($secChars['to'] as $k => $to) { // Do the reversed thing as in inc/libs/security_functions.php - $code = str_replace($to, $ARRAY['from'][$k], $code); + $code = str_replace($to, $secChars['from'][$k], $code); } // END - foreach // But shall I keep simple quotes for later use? if ($simple) $code = str_replace("'", '{QUOT}', $code); // Find $content[bla][blub] entries - @preg_match_all('/\$(content|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches); + preg_match_all('/\$(content|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches); // Are some matches found? if ((count($matches) > 0) && (count($matches[0]) > 0)) { @@ -1253,7 +1244,7 @@ function generateRandomCodde ($length, $code, $uid, $DATA="") { // Add more additional data if (isSessionVariableSet('u_hash')) $data .= ":".get_session('u_hash'); - if (isset($GLOBALS['userid'])) $data .= ":".$GLOBALS['userid']; + if (isUserIdSet()) $data .= ":".getUserId(); if (isSessionVariableSet('mxchange_theme')) $data .= ":".get_session('mxchange_theme'); if (isSessionVariableSet('mx_lang')) $data .= ":".GET_LANGUAGE(); if (isset($GLOBALS['refid'])) $data .= ":".$GLOBALS['refid']; @@ -1773,7 +1764,11 @@ function GET_URL ($script) { $request = "GET /" . trim($script) . " HTTP/1.1\r\n"; $request .= "Host: " . $host . "\r\n"; $request .= "Referer: " . constant('URL') . "/admin.php\r\n"; - $request .= "User-Agent: " . constant('TITLE') . "/" . constant('FULL_VERSION') . "\r\n"; + if (defined('FULL_VERSION')) { + $request .= "User-Agent: " . constant('TITLE') . "/" . constant('FULL_VERSION') . "\r\n"; + } else { + $request .= "User-Agent: " . constant('TITLE') . "/?.?.?\r\n"; + } $request .= "Content-Type: text/plain\r\n"; $request .= "Cache-Control: no-cache\r\n"; $request .= "Connection: Close\r\n\r\n"; @@ -2032,8 +2027,6 @@ function CREATE_EMAIL_LINK ($email, $table = "admins") { // Generate a hash for extra-security for all passwords function generateHash ($plainText, $salt = "") { - global $_SERVER; - // Is the required extension "sql_patches" there and a salt is not given? if (((EXT_VERSION_IS_OLDER("sql_patches", "0.3.6")) || (!EXT_IS_ACTIVE("sql_patches"))) && (empty($salt))) { // Extension sql_patches is missing/outdated so we hash the plain text with MD5 @@ -2165,7 +2158,7 @@ function genScrambleString ($len) { // normally be stored in cookies function ADD_URL_DATA ($URL) { // Init add - $ADD = ""; + $add = ""; // Determine URL binder $BIND = "?"; @@ -2175,15 +2168,15 @@ function ADD_URL_DATA ($URL) { // Cookies are not accepted if ((REQUEST_ISSET_GET(('refid'))) && (strpos($URL, "refid=") == 0)) { // Cookie found in URL - $ADD .= $BIND."refid=".bigintval(REQUEST_GET('refid')); + $add .= $BIND."refid=".bigintval(REQUEST_GET('refid')); } elseif ((GET_EXT_VERSION("sql_patches") != '') && (getConfig('def_refid') > 0)) { // Not found! So let's set default here - $ADD .= $BIND."refid=".getConfig('def_refid'); + $add .= $BIND."refid=".getConfig('def_refid'); } } // END - if // Add all together and return it - return $URL . $ADD; + return $URL . $add; } // Generate an PGP-like encrypted hash of given hash for e.g. cookies @@ -2240,10 +2233,13 @@ function FIX_DELETED_COOKIES ($cookies) { } // Output error messages in a fasioned way and die... -function mxchange_die ($msg) { +function app_die ($F, $L, $msg) { // Load header LOAD_INC_ONCE("inc/header.php"); + // Prepare message for output + $msg = sprintf(getMessage('MXCHANGE_HAS_DIED'), basename($F), $L, $msg); + // Load the message template LOAD_TEMPLATE("admin_settings_saved", false, $msg); @@ -2251,7 +2247,7 @@ function mxchange_die ($msg) { LOAD_INC_ONCE("inc/footer.php"); // Exit explicitly - exit; + shutdown(); } // Display parsing time and number of SQL queries in footer @@ -2345,8 +2341,6 @@ function getMessage ($messageId) { // Get current theme name function GET_CURR_THEME() { - global $INC_POOL; - // The default theme is 'default'... ;-) $ret = "default"; @@ -2387,10 +2381,10 @@ function GET_CURR_THEME() { } // Add (maybe) found theme.php file to inclusion list - $theme = sprintf("%stheme/%s/theme.php", constant('PATH'), SQL_ESCAPE($ret)); + $INC = sprintf("theme/%s/theme.php", SQL_ESCAPE($ret)); // Try to load the requested include file - if (FILE_READABLE($theme)) $INC_POOL[] = $theme; + if (INCLUDE_READABLE($INC)) ADD_INC_TO_POOL($INC); // Return theme value return $ret; @@ -2475,7 +2469,7 @@ function WRITE_FILE ($FQFN, $content) { $return = file_put_contents($FQFN, $content); } else { // Write it with fopen - $fp = fopen($FQFN, 'w') or mxchange_die("Cannot write file ".basename($FQFN)."!"); + $fp = fopen($FQFN, 'w') or app_die(__FUNCTION__, __LINE__, "Cannot write file ".basename($FQFN)."!"); fwrite($fp, $content); fclose($fp); @@ -2490,22 +2484,22 @@ function WRITE_FILE ($FQFN, $content) { // Generates an error code from given account status function GEN_ERROR_CODE_FROM_ACCOUNT_STATUS ($status) { // Default error code if unknown account status - $ERROR = constant('CODE_UNKNOWN_STATUS'); + $errorCode = getCode('UNKNOWN_STATUS'); // Generate constant name - $constantName = sprintf("CODE_ID_%s", $status); + $constantName = sprintf("ID_%s", $status); // Is the constant there? - if (defined($constantName)) { + if (isCodeSet($constantName)) { // Then get it! - $ERROR = constant($constantName); + $errorCode = getCode($constantName); } else { // Unknown status DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown error status %s detected.", $status)); } // Return error code - return $ERROR; + return $errorCode; } // Clears the output buffer. This function does *NOT* backup sent content. @@ -2517,57 +2511,190 @@ function clearOutputBuffer () { } // END - if } +// Function to search for the last modifified file +function searchDirsRecursive ($dir, &$last_changed) { + // Get dir as array + //* DEBUG: */ print __FUNCTION__."(".__LINE__."):dir=".$dir."
\n"; + // Does it match what we are looking for? (We skip a lot files already!) + // RegexPattern to exclude ., .., .revision, .svn, debug.log or .cache in the filenames + $excludePattern = '@(\.|\.\.|\.revision|\.svn|debug\.log|\.cache|config\.php)$@'; + $ds = GET_DIR_AS_ARRAY($dir, "", true, false, $excludePattern); + //* DEBUG: */ print __FUNCTION__."(".__LINE__."):ds[]=".count($ds)."
\n"; + + // Walk through all entries + foreach ($ds as $d) { + // Generate proper FQFN + $FQFN = str_replace("//", "/", constant('PATH') . $dir. "/". $d); + + // Is it a file and readable? + //* DEBUG: */ print __FUNCTION__."(".__LINE__."):FQFN={$FQFN}
\n"; + if (isDirectory($FQFN)) { + // $FQFN is a directory so also crawl into this directory + $newDir = $d; + if (!empty($dir)) $newDir = $dir . "/". $d; + //* DEBUG: */ print __FUNCTION__."(".__LINE__."):DESCENT: ".$newDir."
\n"; + searchDirsRecursive($newDir, $last_changed); + } elseif (FILE_READABLE($FQFN)) { + // $FQFN is a filename and no directory + $time = filemtime($FQFN); + //* DEBUG: */ print __FUNCTION__."(".__LINE__."):File: ".$d." found. (".($last_changed['time'] - $time).")
\n"; + if ($last_changed['time'] < $time) { + // This file is newer as the file before + //* DEBUG: */ print __FUNCTION__."(".__LINE__.") - NEWER!
\n"; + $last_changed['path_name'] = $FQFN; + $last_changed['time'] = $time; + } // END - if + } + } // END - foreach +} + // "Getter" for revision/version data -function getActualVersion ($type = 0) { +function getActualVersion ($type = 'Revision') { // By default nothing is new... ;-) $new = false; - // FQFN of revision file - $FQFN = sprintf("%sinc/cache/.revision", constant('PATH')); + if (EXT_IS_ACTIVE("cache")) { + // Check if $_GET['check_revision_data'] is setted (switch for manually rewrite the .revision-File) + if (isset($_GET['check_revision_data']) && $_GET['check_revision_data'] == 'yes') $new = true; + if (!isset($GLOBALS['cache_array']['revision'][$type]) + || count($GLOBALS['cache_array']['revision']) < 3 + || !$GLOBALS['cache_instance']->loadCacheFile("revision")) $new = true; + + // Is the cache file outdated/invalid? + if ($new === true){ + $GLOBALS['cache_instance']->destroyCacheFile(); // @TODO isn't it better to do $GLOBALS['cache_instance']->destroyCacheFile('revision')? + + // @TODO shouldn't do the unset and the reloading $GLOBALS['cache_instance']->destroyCacheFile() Or a new methode like forceCacheReload('revision')? + unset($GLOBALS['cache_array']['revision']); + + // Reload load_cach-revison.php + LOAD_INC("inc/loader/load_cache-revision.php"); + } // END - if + + // Return found value + return $GLOBALS['cache_array']['revision'][$type][0]; - // Check for revision file - if (!FILE_READABLE($FQFN)) { - // Not found, so we need to create it - $new = true; } else { - // Revision file found - $ins_vers = explode("\n", READ_FILE($FQFN)); + // Old Version without ext-cache active (deprecated ?) + + // FQFN of revision file + $FQFN = sprintf("%sinc/cache/.revision", constant('PATH')); - // Is the content valid? - if ((!is_array($ins_vers)) || (count($ins_vers) <= 0) || (!isset($ins_vers[$type])) || ($ins_vers[0]) == "new") { - // File needs update! + // Check if $_GET['check_revision_data'] is setted (switch for manually rewrite the .revision-File) + if ((isset($_GET['check_revision_data'])) && ($_GET['check_revision_data'] == 'yes')) { + // Has changed! $new = true; } else { - // Revision-File has valid Data and isn't 'new' so return the Rev-Number - return trim($ins_vers[$type]); + // Check for revision file + if (!FILE_READABLE($FQFN)) { + // Not found, so we need to create it + $new = true; + } else { + // Revision file found + $ins_vers = explode("\n", READ_FILE($FQFN)); + + // Get array for mapping information + $mapper = array_flip(getSearchFor()); + //* DEBUG: */ print("
".print_r($mapper, true).print_r($ins_vers, true)."
"); + + // Is the content valid? + if ((!is_array($ins_vers)) || (count($ins_vers) <= 0) || (!isset($ins_vers[$mapper[$type]])) || (trim($ins_vers[$mapper[$type]]) == "") || ($ins_vers[0]) == "new") { + // File needs update! + $new = true; + } else { + // Return found value + return trim($ins_vers[$mapper[$type]]); + } + } } + + // Has it been updated? + if ($new === true) { + WRITE_FILE($FQFN, implode("\n", getAkt_vers())); + } // END - if } +} - // Has it been updated? - if ($new === true) { - // No Revision-File or has no valid Data so read the Revision from the Server. - $version = GET_URL("check-updates3.php"); +// Repares an array we are looking for +// The returned Array is needed twice (in getAkt_vers() and in getActualVersion() in the old .revision-fallback) so I puted it in an extra function to not polute the global namespace +function getSearchFor () { + // Add Revision, Date, Tag and Author + $searchFor = array('Revision', 'Date', 'Tag', 'Author'); - // Prepare content - $akt_vers[] = trim($version[10]); - $akt_vers[] = trim($version[9]); - $akt_vers[] = trim($version[8]); + // Return the created array + return $searchFor; +} + +function getAkt_vers () { + // Init variables + $next_dir = ""; // Directory to start with search + $last_changed = array( + 'path_name' => "", + 'time' => 0 + ); + $akt_vers = array(); // Init return array + $res = 0; // Init value for counting the founded keywords - // Write file - WRITE_FILE($FQFN, implode("\n", $akt_vers)); + // Searches all Files and there date of the last modifikation and puts the newest File in $last_changed. + searchDirsRecursive($next_dir, $last_changed); // @TODO small change to API to $last_changed = searchDirsRecursive($next_dir, $time); - // Return requested content - return trim($akt_vers[$type]); + // Get file + $last_file = READ_FILE($last_changed['path_name']); + + // Get all the keywords to search for + $searchFor = getSearchFor(); + + // This foreach loops the $searchFor-Tags (array('Revision', 'Date', 'Tag', 'Author') --> could easaly extended in the future) + foreach ($searchFor as $search) { + //Searches for "$search-tag:VALUE$" or "$search-tag::VALUE$"(the stylish keywordversion ;-)) in the lates modified file + $res += preg_match('@\$'.$search.'(:|::) (.*) \$@U', $last_file, $t); + // This trimms the search-result and puts it in the $akt_vers-return array + if (isset($t[2])) $akt_vers[$search] = trim($t[2]); + } // END - foreach + + // Save the last-changed filename for debugging + $akt_vers['File'] = $last_changed['path_name']; + + // at least 3 keyword-Tags are needed for propper values + if ($res && $res >= 3 + && isset($akt_vers['Revision']) && $akt_vers['Revision'] != '' + && isset($akt_vers['Date']) && $akt_vers['Date'] != '' + && isset($akt_vers['Tag']) && $akt_vers['Tag'] != '') { + // Prepare content witch need special treadment + + // Prepare timestamp for date + preg_match('@(....)-(..)-(..) (..):(..):(..)@', $akt_vers['Date'], $match_d); + $akt_vers['Date'] = mktime($match_d[4], $match_d[5], $match_d[6], $match_d[2], $match_d[3], $match_d[1]); + + // Add author to the Tag if the author is set and is not quix0r (lead coder) + if ((isset($akt_vers['Author'])) && ($akt_vers['Author'] != "quix0r")) { + $akt_vers['Tag'] .= '-'.strtoupper($akt_vers['Author']); + } // END - if + + } else { + // No valid Data from the last modificated file so read the Revision from the Server. Fallback-solution!! Should not be removed I think. + $version = GET_URL("check-updates3.php"); + + // Prepare content + // Only sets not setted or not proper values to the Online-Server-Fallback-Solution + if (!isset($akt_vers['Revision']) || $akt_vers['Revision'] == '') $akt_vers['Revision'] = trim($version[10]); + if (!isset($akt_vers['Date']) || $akt_vers['Date'] == '') $akt_vers['Date'] = trim($version[9]); + if (!isset($akt_vers['Tag']) || $akt_vers['Tag'] == '') $akt_vers['Tag'] = trim($version[8]); + if (!isset($akt_vers['Author']) || $akt_vers['Author'] == '') $akt_vers['Author'] = "quix0r"; } + + // Return prepared array + return $akt_vers; } + // Loads an include file and logs any missing files for debug purposes function LOAD_INC ($INC) { // Add the path. This is why we need a trailing slash in config.php $FQFN = constant('PATH') . $INC; // Is the include file there? - if (!FILE_READABLE($FQFN)) { + if (!INCLUDE_READABLE($INC)) { // Not there so log it debug_report_bug(sprintf("Include file %s not found.", $INC)); return false; @@ -2626,11 +2753,13 @@ function debug_report_bug ($message = "") { } // END - if // Add output - $debug .= ("Please report this error at bugs.mxchange.org:
");
-	$debug .= (debug_get_printable_backtrace());
-	$debug .= ("
Thank you for your help finding bugs."); + $debug .= "Please report this bug at bugs.mxchange.org:
";
+	$debug .= debug_get_printable_backtrace();
+	$debug .= "
Request-URI: ".$_SERVER['REQUEST_URI']."
\n"; + $debug .= "Thank you for finding bugs."; // And abort here + // @TODO This cannot be rewritten to app_die(), try to find a solution for this. die($debug); } @@ -2644,16 +2773,16 @@ function generateSeed () { function convertCodeToMessage ($code) { $msg = ""; switch ($code) { - case constant('CODE_LOGOUT_DONE') : $msg = getMessage('LOGOUT_DONE'); break; - case constant('CODE_LOGOUT_FAILED') : $msg = "{--LOGOUT_FAILED--}"; break; - case constant('CODE_DATA_INVALID') : $msg = getMessage('MAIL_DATA_INVALID'); break; - case constant('CODE_POSSIBLE_INVALID') : $msg = getMessage('MAIL_POSSIBLE_INVALID'); break; - case constant('CODE_ACCOUNT_LOCKED') : $msg = getMessage('MEMBER_ACCOUNT_LOCKED_UNC'); break; - case constant('CODE_USER_404') : $msg = getMessage('USER_NOT_FOUND'); break; - case constant('CODE_STATS_404') : $msg = getMessage('MAIL_STATS_404'); break; - case constant('CODE_ALREADY_CONFIRMED'): $msg = getMessage('MAIL_ALREADY_CONFIRMED'); break; - - case constant('CODE_ERROR_MAILID'): + case getCode('LOGOUT_DONE') : $msg = getMessage('LOGOUT_DONE'); break; + case getCode('LOGOUT_FAILED') : $msg = "{--LOGOUT_FAILED--}"; break; + case getCode('DATA_INVALID') : $msg = getMessage('MAIL_DATA_INVALID'); break; + case getCode('POSSIBLE_INVALID') : $msg = getMessage('MAIL_POSSIBLE_INVALID'); break; + case getCode('ACCOUNT_LOCKED') : $msg = getMessage('MEMBER_ACCOUNT_LOCKED_UNC'); break; + case getCode('USER_404') : $msg = getMessage('USER_NOT_FOUND'); break; + case getCode('STATS_404') : $msg = getMessage('MAIL_STATS_404'); break; + case getCode('ALREADY_CONFIRMED'): $msg = getMessage('MAIL_ALREADY_CONFIRMED'); break; + + case getCode('ERROR_MAILID'): if (EXT_IS_ACTIVE($ext, true)) { $msg = getMessage('ERROR_CONFIRMING_MAIL'); } else { @@ -2661,7 +2790,7 @@ function convertCodeToMessage ($code) { } break; - case constant('CODE_EXTENSION_PROBLEM'): + case getCode('EXTENSION_PROBLEM'): if (REQUEST_ISSET_GET(('ext'))) { $msg = sprintf(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), REQUEST_GET(('ext'))); } else { @@ -2669,10 +2798,18 @@ function convertCodeToMessage ($code) { } break; - case constant('CODE_COOKIES_DISABLED') : $msg = getMessage('LOGIN_NO_COOKIES'); break; - case constant('CODE_BEG_SAME_AS_OWN') : $msg = getMessage('BEG_SAME_UID_AS_OWN'); break; - case constant('CODE_LOGIN_FAILED') : $msg = getMessage('LOGIN_FAILED_GENERAL'); break; - default : $msg = sprintf(getMessage('UNKNOWN_MAILID_CODE'), $code); break; + case getCode('COOKIES_DISABLED') : $msg = getMessage('LOGIN_NO_COOKIES'); break; + case getCode('BEG_SAME_AS_OWN') : $msg = getMessage('BEG_SAME_UID_AS_OWN'); break; + case getCode('LOGIN_FAILED') : $msg = getMessage('LOGIN_FAILED_GENERAL'); break; + case getCode('MODULE_MEM_ONLY') : $msg = sprintf(getMessage('MODULE_MEM_ONLY'), REQUEST_GET('mod')); break; + + default: + // Missing/invalid code + $msg = sprintf(getMessage('UNKNOWN_MAILID_CODE'), $code); + + // Log it + DEBUG_LOG(__FUNCTION__, __LINE__, $msg); + break; } // END - switch // Return the message @@ -2685,7 +2822,7 @@ function REDIRCT_ON_UNINSTALLED_EXTENSION ($ext_name) { // Is the extension uninstalled/inactive? if (!EXT_IS_ACTIVE($ext_name)) { // Redirect to index - LOAD_URL("modules.php?module=index&msg=".constant('CODE_EXTENSION_PROBLEM')."&ext=".$ext_name); + LOAD_URL("modules.php?module=index&msg=".getCode('EXTENSION_PROBLEM')."&ext=".$ext_name); } // END - if } @@ -2695,9 +2832,11 @@ function GENERATE_AID_LINK ($aid) { $admin = "{--ADMIN_NO_ADMIN_ASSIGNED--}"; // Zero? = Not assigned - if ($aid == "0") { + if (bigintval($aid) > 0) { // Load admin's login $login = GET_ADMIN_LOGIN($aid); + + // Is the login valid? if ($login != "***") { // Is the extension there? if (EXT_IS_ACTIVE("admins")) { @@ -2951,56 +3090,16 @@ function merge_array ($array1, $array2) { function DEBUG_LOG ($funcFile, $line, $message, $force=true) { // Is debug mode enabled? if ((isDebugModeEnabled()) || ($force === true)) { + // Remove CRLF + $message = str_replace("\r", "", str_replace("\n", "", $message)); + // Log this message away - $fp = fopen(constant('PATH')."inc/cache/debug.log", 'a') or mxchange_die("Cannot write logfile debug.log!"); + $fp = fopen(constant('PATH')."inc/cache/debug.log", 'a') or app_die(__FUNCTION__, __LINE__, "Cannot write logfile debug.log!"); fwrite($fp, date("d.m.Y|H:i:s", time())."|".basename($funcFile)."|".$line."|".strip_tags($message)."\n"); fclose($fp); } // END - if } -// Reads a directory with PHP files in and gets only files back -function GET_DIR_AS_ARRAY ($baseDir, $prefix) { - $INCs = array(); - - // Open directory - $dirPointer = opendir(constant('PATH') . $baseDir) or mxchange_die("Cannot read ".basename($baseDir)." path!"); - - // Read all entries - while ($baseFile = readdir($dirPointer)) { - // Load file only if extension is active - $INC = $baseDir.$baseFile; - $FQFN = constant('PATH') . $INC; - - // Is this a valid reset file? - //* DEBUG: */ print __FUNCTION__."(".__LINE__."):baseDir={$baseDir},prefix={$prefix},baseFile={$baseFile}
\n"; - if ((FILE_READABLE($FQFN)) && (substr($baseFile, 0, strlen($prefix)) == $prefix) && (substr($baseFile, -4, 4) == ".php")) { - // Remove both for extension name - $extName = substr($baseFile, strlen($prefix), -4); - - // Try to find it - $extId = GET_EXT_ID($extName); - - // Is the extension valid and active? - if (($extId > 0) && (EXT_IS_ACTIVE($extName))) { - // Then add this file - $INCs[] = $INC; - } elseif ($extId == 0) { - // Add non-extension files as well - $INCs[] = $INC; - } - } // END - if - } // END - while - - // Close directory - closedir($dirPointer); - - // Sort array - asort($INCs); - - // Return array with include files - return $INCs; -} - // Load more reset scripts function runResetIncludes () { // Is the reset set or old sql_patches? @@ -3010,7 +3109,7 @@ function runResetIncludes () { } // END - if // Get more daily reset scripts - $INC_POOL = GET_DIR_AS_ARRAY("inc/reset/", "reset_"); + SET_INC_POOL(GET_DIR_AS_ARRAY("inc/reset/", "reset_")); // Update database if (!defined('DEBUG_RESET')) UPDATE_CONFIG("last_update", time()); @@ -3023,7 +3122,7 @@ function runResetIncludes () { // Has it changed? if (getConfig('last_week') != $currWeek) { // Include weekly reset scripts - $INC_POOL = merge_array($INC_POOL, GET_DIR_AS_ARRAY("inc/weekly/", "weekly_")); + MERGE_INC_POOL(GET_DIR_AS_ARRAY("inc/weekly/", "weekly_")); // Update config if (!defined('DEBUG_WEEKLY')) UPDATE_CONFIG("last_week", $currWeek); @@ -3035,7 +3134,7 @@ function runResetIncludes () { // Has it changed? if (getConfig('last_month') != $currMonth) { // Include monthly reset scripts - $INC_POOL = merge_array($INC_POOL, GET_DIR_AS_ARRAY("inc/monthly/", "monthly_")); + MERGE_INC_POOL(GET_DIR_AS_ARRAY("inc/monthly/", "monthly_")); // Update config if (!defined('DEBUG_MONTHLY')) UPDATE_CONFIG("last_month", $currMonth); @@ -3043,7 +3142,7 @@ function runResetIncludes () { } // END - if // Run the filter - runFilterChain('load_includes', $INC_POOL); + runFilterChain('load_includes'); } // Handle extra values @@ -3220,7 +3319,7 @@ function CACHE_PURGE_ADMIN_MENU ($id=0, $action="", $what="", $str="") { // Translates the "pool type" into human-readable function TRANSLATE_POOL_TYPE ($type) { - // Default type is unknown + // Default?type is unknown $translated = sprintf(getMessage('POOL_TYPE_UNKNOWN'), $type); // Generate constant @@ -3236,10 +3335,34 @@ function TRANSLATE_POOL_TYPE ($type) { return $translated; } +// Determines the real remote address +function determineRealRemoteAddress () { + // Is a proxy in use? + if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])){ + // Proxy was used + $address = $_SERVER['HTTP_X_FORWARDED_FOR']; + } elseif (isset($_SERVER['HTTP_CLIENT_IP'])){ + // Yet, another proxy + $address = $_SERVER['HTTP_CLIENT_IP']; + } else { + // The regular address when no proxy was used + $address = $_SERVER['REMOTE_ADDR']; + } + + // This strips out the real address from proxy output + if (strstr($address, ",")){ + $addressArray = explode(",", $address); + $address = $addressArray[0]; + } // END - if + + // Return the result + return $address; +} + // "Getter" for remote IP number function GET_REMOTE_ADDR () { // Get remote ip from environment - $remoteAddr = getenv('REMOTE_ADDR'); + $remoteAddr = determineRealRemoteAddress(); // Is removeip installed? if (EXT_IS_ACTIVE("removeip")) { @@ -3333,10 +3456,8 @@ function ADD_NEW_BONUS_MAIL ($data, $mode="", $output=true) { // Determines referal id and sets it function DETERMINE_REFID () { - global $CLICK, $_SERVER; - // Check if refid is set - if ((!empty($_GET['user'])) && ($CLICK == 1) && (basename($_SERVER['PHP_SELF']) == "click.php")) { + if ((!empty($_GET['user'])) && (basename($_SERVER['PHP_SELF']) == "click.php")) { // The variable user comes from the click-counter script click.php and we only accept this here $GLOBALS['refid'] = bigintval($_GET['user']); } elseif (!empty($_POST['refid'])) { @@ -3374,7 +3495,9 @@ function DETERMINE_REFID () { // Check wether we are installing function isInstalling () { - return (isset($GLOBALS['mxchange_installing'])); + $installing = ((isset($GLOBALS['mxchange_installing'])) || (REQUEST_ISSET_GET('installing'))); + //* DEBUG: */ var_dump($installing); + return $installing; } // Check wether this script is installed @@ -3414,6 +3537,77 @@ function isCacheInstanceValid () { return ((isset($GLOBALS['cache_instance'])) && (is_object($GLOBALS['cache_instance']))); } +// Our shutdown-function +function shutdown () { + // Call the filter chain 'shutdown' + runFilterChain('shutdown', null, false); + + if (SQL_IS_LINK_UP()) { + // Close link + SQL_CLOSE(__FILE__, __LINE__); + } elseif ((!isInstalling()) && (isInstalled())) { + // No database link + addFatalMessage(__FILE__, __LINE__, getMessage('NO_DB_LINK_SHUTDOWN')); + } + + // Stop executing here + exit; +} + +// Setter for userid +function setUserId ($userid) { + $GLOBALS['userid'] = bigintval($userid); +} + +// Getter for userid or returns zero +function getUserId () { + // Default userid + $userid = 0; + + // Is the userid set? + if (isUserIdSet()) { + // Then use it + $userid = $GLOBALS['userid']; + } // END - if + + // Return it + return $userid; +} + +// Checks ether the userid is set +function isUserIdSet () { + return (isset($GLOBALS['userid'])); +} + +// Checks wether the given FQFN is a directory and not .,.. or .svn +function isDirectory ($FQFN) { + // Generate baseName + $baseName = basename($FQFN); + + // Check it + $isDirectory = ((is_dir($FQFN)) && ($baseName != ".") && ($baseName != "..") && ($baseName != ".svn")); + + // Return the result + return $isDirectory; +} + +// Handle message codes from URL +function handleCodeMessage () { + if (REQUEST_ISSET_GET(('msg'))) { + // Default extension is "unknown" + $ext = "unknown"; + + // Is extension given? + if (REQUEST_ISSET_GET(('ext'))) $ext = REQUEST_GET(('ext')); + + // Convert the 'msg' parameter from URL to a human-readable message + $msg = convertCodeToMessage(REQUEST_GET('msg')); + + // Load message template + LOAD_TEMPLATE("message", false, $msg); + } // END - if +} + ////////////////////////////////////////////////// // AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS // //////////////////////////////////////////////////