X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fgen_sql_patches.php;h=b2b984b4e59cb36d146d06ce7fecc76eee3d6c38;hp=91dd06ea859147f5a3eb3917b459aaa033b7ba31;hb=f23709a2e9afa25b4bf3b732155fec667fbc1a2a;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa diff --git a/inc/gen_sql_patches.php b/inc/gen_sql_patches.php index 91dd06ea85..b2b984b4e5 100644 --- a/inc/gen_sql_patches.php +++ b/inc/gen_sql_patches.php @@ -14,12 +14,10 @@ * $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 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -40,13 +38,10 @@ // Some security stuff... if (!defined('__SECURITY')) { die(); -} - -// Check for version of sql_patches -if (getExtensionVersion('sql_patches') < '0.3.6') return false; +} // END - if // Check if there is no scrambling string -if (getConfig('pass_scramble') == '') { +if (getPassScramble() == '') { // Generate 40 chars long scramble string $scrambleString = genScrambleString(40); @@ -58,7 +53,7 @@ if (getConfig('pass_scramble') == '') { } // END - if // Check if there is no master salt string -if (getConfig('master_salt') == '') { +if (getMasterSalt() == '') { // Generate the master salt which is the first chars minus 40 chars of this random hash // We do an extra scrambling here... $masterSalt = scrambleString(sha1(generatePassword(mt_rand(128, 256)))); @@ -70,11 +65,12 @@ if (getConfig('master_salt') == '') { unset($masterSalt); } // END - if -if (getConfig('file_hash') == '') { +if ((getFileHash() == '') || (!isFileReadable(getPath() . getCachePath() . '.' . getFileHash() . '.cache'))) { // Create filename from hashed random string $fileHash = sha1(generatePassword(mt_rand(128, 256))); - $FQFN = sprintf("%sinc/.secret/.%s", - getConfig('PATH'), + $FQFN = sprintf('%s%s.%s.cache', + getPath(), + getCachePath(), $fileHash ); @@ -86,33 +82,26 @@ if (getConfig('file_hash') == '') { // Is the file there? if (isFileReadable($FQFN)) { - //* DEBUG: */ removeFile($FQFN); - //* DEBUG: */ $test = hexdec(getSession('u_hash')) / hexdec($secretKey); - //* DEBUG: */ $test = generateHash(str_replace('.', '', $test)); - //* DEBUG: */ die("Secret-Key: ".$secretKey."
Cookie: ".getSession('u_hash')."
Test: ".$test); - - // Write $fileHash to database - updateConfiguration('file_hash', $fileHash); - - // Generate FQFN for .htaccess file - $FQFN = sprintf("%sinc/.secret/.htaccess", - getConfig('PATH') - ); - - // Is the .htaccess file there? - if (!isFileReadable($FQFN)) { - // Also create .htaccess file - writeToFile($FQFN, "Deny from all\n"); - } // END - if - // Also update configuration setConfigEntry('secret_key', $secretKey); + // Force update + updateConfiguration('file_hash', $fileHash, '', '0', TRUE); + // Remove variables unset($secretKey); unset($fileHash); } // END - if } // END - if -// -?> \ No newline at end of file +// @TODO Rewrite this to a filter +if ((isExtensionInstalledAndNewer('cache', '0.1.2')) && (isValidCacheInstance())) { + // Destroy some cache files + foreach (array('config', 'extension', 'filter', 'modules') as $cache) { + // Use rebuildCache() + rebuildCache($cache); + } // END - foreach +} // END - if + +// [EOF] +?>