X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffunctions.php;h=dceab6c671772b094d7ea252157846a148408529;hb=28d2461a2288bfe7dca2907e471303e230c99b52;hp=4545846423668f31b61935d1a004fa80c1cf823c;hpb=2bda7ccdfd87b065a61ff976b5f9e98e46f73591;p=mailer.git diff --git a/inc/functions.php b/inc/functions.php index 4545846423..dceab6c671 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Viele Nicht-MySQL-Funktionen (auch Dateizugriff) * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -245,7 +245,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)) { @@ -1257,7 +1257,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']; @@ -2525,27 +2525,43 @@ function clearOutputBuffer () { } // END - if } -// Function to search for the last modifikated file -function searchDirsRecoursive ($dir, &$last_changed) { - $ds = scandir($dir); // Needs adjustment for PHP < 5.0.0!! +// Function to search for the last modifified file +function searchDirsRecursive ($dir, &$last_changed) { + // Get dir as array + //* DEBUG: */ print __FUNCTION__."(".__LINE__."):dir=".$dir."
\n"; + $ds = GET_DIR_AS_ARRAY($dir, "", true, false); + //* DEBUG: */ print __FUNCTION__."(".__LINE__."):ds[]=".count($ds)."
\n"; + + // Walk through all entries foreach ($ds as $d) { - $f_name = $dir.'/'.$d; // makes a proper Filename - if (!preg_match('@(\.|\.\.|\.revision|\.svn|debug\.log|\.cache)$@',$d)) { // no . or .. or .revision or .svn in the filename - $is_dir = is_dir($f_name); - if (!$is_dir) { // $f_name is a filename and no directory - $time = filemtime($f_name); - if ($last_changed['time'] < $time) { // This file is newer as the file before - $last_changed['path_name'] = $f_name; + // Generate proper FQFN + $FQFN = str_replace("//", "/", constant('PATH') . $dir. "/". $d); + + // Does it match what we are looking for? (We skip a lot files already!) + if (!preg_match('@(\.|\.\.|\.revision|\.svn|debug\.log|\.cache)$@', $d)) { // no . or .. or .revision or .svn in the filename + // 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; - } - } elseif ($is_dir) { // $f_name is a directory so also crawl into this directory - searchDirsRecoursive($f_name, $last_changed); + } // END - if } - } - } + } // END - if + } // END - foreach } - // "Getter" for revision/version data function getActualVersion ($type = 'Revision') { // By default nothing is new... ;-) @@ -2558,28 +2574,30 @@ function getActualVersion ($type = 'Revision') { || count($GLOBALS['cache_array']['revision']) < 3 || !$GLOBALS['cache_instance']->loadCacheFile("revision")) $new = true; - if ($new){ - + // 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'); - } + LOAD_INC("inc/loader/load_cache-revision.php"); + } // END - if + // Return found value return $GLOBALS['cache_array']['revision'][$type][0]; } else { - // old Version without ext-cache aktive (depricated ?) + // Old Version without ext-cache active (deprecated ?) // FQFN of revision file $FQFN = sprintf("%sinc/cache/.revision", constant('PATH')); // 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') { + if ((isset($_GET['check_revision_data'])) && ($_GET['check_revision_data'] == 'yes')) { + // Has changed! $new = true; - } else { // Check for revision file if (!FILE_READABLE($FQFN)) { @@ -2589,62 +2607,83 @@ function getActualVersion ($type = 'Revision') { // 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[$type])) || (trim($ins_vers[$type]) == '') || ($ins_vers[0]) == "new") { + 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 { - // Revision-File has valid Data and isn't 'new' so return the Rev-Number - $ttype = array_search ($type,array_keys(getSearchFor())); - if ($ttype || $ttype != null) return trim($ins_vers[$ttype]); - else return false; + // 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 } } +// Repares an array we are looking for function getSearchFor () { - $searchFor[] = 'Revision'; - $searchFor[] = 'Date'; - $searchFor[] = 'Tag'; - $searchFor[] = 'Author'; + // Add Revision, Date, Tag and Author + $searchFor = array('Revision', 'Date', 'Tag', 'Author'); + // Return the created array return $searchFor; } function getAkt_vers () { - $next_dir = '.'; - $last_changed['path_name'] = ''; - $last_changed['time'] = 0; + // Init variables + $next_dir = ""; + $last_changed = array( + 'path_name' => "", + 'time' => 0 + ); $akt_vers = array(); - searchDirsRecoursive($next_dir, $last_changed); //Searches all Files and there date of the last modifikation and puts the newest File in $last_changed. + $res = 0; + + // Searches all Files and there date of the last modifikation and puts the newest File in $last_changed. + searchDirsRecursive($next_dir, $last_changed); + + // Get file $last_file = READ_FILE($last_changed['path_name']); - $ergeb = 0; $searchFor = getSearchFor(); + // @TODO What does this loop/regex do? Document it, please. foreach ($searchFor as $search) { - $ergeb += preg_match('@\$'.$search.'(:|::) (.*) \$@U', $last_file, $t); + $res += preg_match('@\$'.$search.'(:|::) (.*) \$@U', $last_file, $t); if (isset($t[2])) $akt_vers[$search] = trim($t[2]); - } + } // END - foreach - if ($ergeb && $ergeb >= 3) { + if ($res && $res >= 3) { // Prepare content - 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]); - if (isset($akt_vers['Author']) && $akt_vers['Author'] != 'quix0r') $akt_vers['Tag'] .= '-'.strtoupper($akt_vers['Author']); + preg_match('@(....)-(..)-(..) (..):(..):(..)@', $akt_vers['Date'], $match_d); + + // Prepare timestamp for date + $akt_vers['Date'] = mktime($match_d[4], $match_d[5], $match_d[6], $match_d[2], $match_d[3], $match_d[1]); + + // Add 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. FallbackSolution!! Could be removed I think. + // No valid Data from the last modificated file so read the Revision from the Server. Fallback-solution!! Could be removed I think. $version = GET_URL("check-updates3.php"); + // Prepare content $akt_vers['Revision'] = trim($version[10]); - $akt_vers['Date'] = trim($version[9]); - $akt_vers['Tag'] = trim($version[8]); + $akt_vers['Date'] = trim($version[9]); + $akt_vers['Tag'] = trim($version[8]); + $akt_vers['Author'] = "quix0r"; } + + // Return prepared array return $akt_vers; } @@ -2714,11 +2753,12 @@ 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 error at bugs.mxchange.org:
";
+	$debug .= debug_get_printable_backtrace();
+	$debug .= "
Thank you for finding bugs."; // And abort here + // @TODO This cannot be rewritten to mxchange_die(), try to find a solution for this. die($debug); } @@ -3047,7 +3087,8 @@ function DEBUG_LOG ($funcFile, $line, $message, $force=true) { } // Reads a directory with PHP files in and gets only files back -function GET_DIR_AS_ARRAY ($baseDir, $prefix) { +function GET_DIR_AS_ARRAY ($baseDir, $prefix, $includeDirs = false, $addBaseDir = true) { + // Init includes $INCs = array(); // Open directory @@ -3055,13 +3096,13 @@ function GET_DIR_AS_ARRAY ($baseDir, $prefix) { // Read all entries while ($baseFile = readdir($dirPointer)) { - // Load file only if extension is active - $INC = $baseDir.$baseFile; + // Construct include filename and FQFN + $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")) { + if (((FILE_READABLE($FQFN)) && (substr($baseFile, 0, strlen($prefix)) == $prefix) && (substr($baseFile, -4, 4) == ".php")) || (($includeDirs) && (isDirectory($FQFN)))) { // Remove both for extension name $extName = substr($baseFile, strlen($prefix), -4); @@ -3071,10 +3112,16 @@ function GET_DIR_AS_ARRAY ($baseDir, $prefix) { // Is the extension valid and active? if (($extId > 0) && (EXT_IS_ACTIVE($extName))) { // Then add this file + //* DEBUG: */ print __FUNCTION__."(".__LINE__."): Extension entry ".$baseFile." added.
\n"; $INCs[] = $INC; } elseif ($extId == 0) { // Add non-extension files as well - $INCs[] = $INC; + //* DEBUG: */ print __FUNCTION__."(".__LINE__."): Regular entry ".$baseFile." added.
\n"; + if ($addBaseDir) { + $INCs[] = $INC; + } else { + $INCs[] = $baseFile; + } } } // END - if } // END - while @@ -3521,6 +3568,43 @@ function shutdown () { 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; +} + ////////////////////////////////////////////////// // AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS // //////////////////////////////////////////////////