X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Ffilters.php;h=80e45043c371f3cf75eb6e0a291d9d11a58ba38a;hb=b29dab42eab7c64ca1945eb70fa7713f8898f6ae;hp=ebed4a6034f5a088c5e033e2d90ea787247fe58e;hpb=f74581eca45c393033acfd9d7798b958031bc625;p=mailer.git diff --git a/inc/filters.php b/inc/filters.php index ebed4a6034..80e45043c3 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Funktionen fuer Filter-System * * -------------------------------------------------------------------- * - * * + * $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 * @@ -42,7 +47,7 @@ function INIT_FILTER_SYSTEM () { // Is the filter already initialized? if ((isset($GLOBALS['filters']['chains'])) && (is_array($GLOBALS['filters']['chains']))) { // Then abort here - addFatalMessage(getMessage('FILTER_FAILED_ALREADY_INIT')); + addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_ALREADY_INIT')); return false; } // END - if @@ -63,13 +68,13 @@ function INIT_FILTER_SYSTEM () { // Load all saved filers if sql_patches is updated if (GET_EXT_VERSION("sql_patches") >= "0.5.9") { // Init add - $ADD = ""; - if (GET_EXT_VERSION("sql_patches") >= "0.6.0") $ADD = ", `filter_counter`"; + $add = ""; + if (GET_EXT_VERSION("sql_patches") >= "0.6.0") $add = ", `filter_counter`"; // Load all active filers - $result = SQL_QUERY("SELECT `filter_name`, `filter_function`, `filter_active`".$ADD." + $result = SQL_QUERY("SELECT `filter_name`,`filter_function`,`filter_active`".$add." FROM `{!_MYSQL_PREFIX!}_filters` -ORDER BY `filter_id` ASC", __FILE__, __LINE__); +ORDER BY `filter_id` ASC", __FUNCTION__, __LINE__); // Are there entries? if (SQL_NUMROWS($result) > 0) { @@ -103,7 +108,6 @@ ORDER BY `filter_id` ASC", __FILE__, __LINE__); // Init filters REGISTER_FILTER('init', 'UPDATE_LOGIN_DATA'); REGISTER_FILTER('init', 'INIT_RANDOMIZER'); - REGISTER_FILTER('init', 'INIT_MEM_CACHE'); // Login failures handler REGISTER_FILTER('post_youhere_line', 'CALL_HANDLER_LOGIN_FAILTURES'); @@ -115,6 +119,7 @@ ORDER BY `filter_id` ASC", __FILE__, __LINE__); REGISTER_FILTER('post_extension_installed', 'AUTO_ACTIVATE_EXTENSION'); REGISTER_FILTER('post_extension_installed', 'SOLVE_TASK'); REGISTER_FILTER('post_extension_installed', 'LOAD_INCLUDES'); + REGISTER_FILTER('post_extension_installed', 'REMOVE_UPDATES'); // Solving tasks REGISTER_FILTER('solve_task', 'SOLVE_TASK'); @@ -141,7 +146,7 @@ function REGISTER_FILTER ($filterName, $filterFunction, $silentAbort = true, $fo if ((isset($GLOBALS['filters']['chains'][$filterName][$filterFunction])) && (!$force)) { // Then abort here if (!$silentAbort) { - addFatalMessage(getMessage('FILTER_FAILED_ALREADY_ADDED'), array($filterFunction, $filterName)); + addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_ALREADY_ADDED'), array($filterFunction, $filterName)); } // END - if // Abort here @@ -151,7 +156,7 @@ function REGISTER_FILTER ($filterName, $filterFunction, $silentAbort = true, $fo // Is the function there? if (!function_exists($filterFunction)) { // Then abort here - addFatalMessage(getMessage('FILTER_FAILED_NOT_FOUND'), array($filterFunction, $filterName)); + addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_NOT_FOUND'), array($filterFunction, $filterName)); return false; } // END - if @@ -173,7 +178,7 @@ function UNREGISTER_FILTER ($filterName, $filterFunction, $force = false, $dry_r // Is that filter there? if ((!isset($GLOBALS['filters']['chains'][$filterName][$filterFunction])) && (!$force)) { // Not found, so abort here - addFatalMessage(getMessage('FILTER_FAILED_NOT_REMOVED'), array($filterFunction, $filterName)); + addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_NOT_REMOVED'), array($filterFunction, $filterName)); return false; } // END - if @@ -186,13 +191,13 @@ function UNREGISTER_FILTER ($filterName, $filterFunction, $force = false, $dry_r } // "Runs" the given filters, data is optional and can be any type of data -function RUN_FILTER ($filterName, $data = null, $silentAbort = true) { +function runFilterChain ($filterName, $data = null, $silentAbort = true) { // Is that filter chain there? if (!isset($GLOBALS['filters']['chains'][$filterName])) { // Then abort here (quick'N'dirty hack) if ((!$silentAbort) && (defined('FILTER_FAILED_NO_FILTER_FOUND'))) { // Add fatal message - addFatalMessage(getMessage('FILTER_FAILED_NO_FILTER_FOUND'), $filterName); + addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_NO_FILTER_FOUND'), $filterName); } // END - if // Abort here @@ -236,15 +241,19 @@ function RUN_FILTER ($filterName, $data = null, $silentAbort = true) { // Filter for flushing all new filters to the database function FILTER_FLUSH_FILTERS () { - global $SQLs; - // Clear all previous SQL queries - $SQLs = array(); + INIT_SQLS(); + + // Are we installing? + if ((isInstalling()) || (!isInstalled())) { + // Then silently skip this filter + return true; + } // END - if // Is a database link here and not in installation mode? if ((!SQL_IS_LINK_UP()) && (!isInstalling())) { // Abort here - addFatalMessage(getMessage('FILTER_FLUSH_FAILED_NO_DATABASE')); + addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FLUSH_FAILED_NO_DATABASE')); return false; } // END - if @@ -284,7 +293,7 @@ function FILTER_FLUSH_FILTERS () { $insertSQL = substr($insertSQL, 0, -1); // And run it - $SQLs[] = $insertSQL; + ADD_SQL($insertSQL); } // END - if // Something has been removed? @@ -293,7 +302,7 @@ function FILTER_FLUSH_FILTERS () { $removeSQL = substr($removeSQL, 0, -2) . "LIMIT ".$removed; // And run it - $SQLs[] = $removeSQL; + ADD_SQL($removeSQL); } // END - if // Shall we update usage counters (ONLY FOR DEBUGGING!) @@ -303,17 +312,17 @@ function FILTER_FLUSH_FILTERS () { // Walk through all filters foreach ($filterArray as $filterFunction => $cnt) { // Construct and add the query - $SQLs[] = sprintf("UPDATE `{!_MYSQL_PREFIX!}_filters` SET `filter_counter`=%s WHERE `filter_name`='%s' AND `filter_function`='%s' LIMIT 1", + ADD_SQL(sprintf("UPDATE `{!_MYSQL_PREFIX!}_filters` SET `filter_counter`=%s WHERE `filter_name`='%s' AND `filter_function`='%s' LIMIT 1", bigintval($cnt), $filterName, $filterFunction - ); + )); } // END - foreach } // END - foreach } // END - if // Run the run_sqls filter in non-dry mode - RUN_FILTER('run_sqls', array('dry_run' => false, 'sqls' => $SQLs)); + runFilterChain('run_sqls'); } // Filter for calling the handler for login failures @@ -349,11 +358,8 @@ function FILTER_REDIRECT_TO_LOGOUT_SQL_PATCHES () { // Filter for auto-activation of a extension function FILTER_AUTO_ACTIVATE_EXTENSION ($data) { - // @TODO Try to rewrite this - global $EXT_ALWAYS_ACTIVE; - // Is this extension always activated? - if ($EXT_ALWAYS_ACTIVE == "Y") { + if (EXT_GET_ALWAYS_ACTIVE() == "Y") { // Then activate the extension //* DEBUG: */ echo __FUNCTION__."(".__LINE__."): ext_name={$data['ext_name']}
\n"; ACTIVATE_EXTENSION($data['ext_name']); @@ -382,28 +388,28 @@ function FILTER_SOLVE_TASK ($data) { } // Filter to load include files -function FILTER_LOAD_INCLUDES ($data) { +function FILTER_LOAD_INCLUDES () { // Default is $data as inclusion list - $INC_POOL = $data; + $data = GET_INC_POOL(); // Is it an array? if ((!isset($data)) || (!is_array($data))) { // Then abort here - debug_report_bug(sprintf("INC_POOL is no array! Type: %s", gettype($INC_POOL))); + debug_report_bug(sprintf("INC_POOL is no array! Type: %s", gettype($data))); } elseif (isset($data['inc_pool'])) { // Use this as new inclusion pool! - $INC_POOL = $data['inc_pool']; + SET_INC_POOL($data['inc_pool']); } // Check for added include files - if (count($INC_POOL) > 0) { + if (COUNT_INC_POOL() > 0) { // Loads every include file - foreach ($INC_POOL as $FQFN) { + foreach (GET_INC_POOL() as $FQFN) { LOAD_INC_ONCE($FQFN); } // END - foreach // Reset array - if (isset($data['inc_pool'])) $data['inc_pool'] = array(); + INIT_INC_POOL(); } // END - if // Continue with processing @@ -412,23 +418,35 @@ function FILTER_LOAD_INCLUDES ($data) { // Filter for running SQL commands function FILTER_RUN_SQLS ($data) { + // Debug message + //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " - Entered!"); + // Is the array there? - if ((isset($data['sqls'])) && ((!isset($data['dry_run'])) || ($data['dry_run'] == false))) { + if ((IS_SQLS_VALID()) && ((!isset($data['dry_run'])) || ($data['dry_run'] == false))) { // Run SQL commands - foreach ($data['sqls'] as $sql) { + //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " - Found ".COUNT_SQLS()." queries to run."); + foreach (GET_SQLS() as $sql) { + // Trim spaces away $sql = trim($sql); + + // Is there still a query left? if (!empty($sql)) { // Do we have an "ALTER TABLE" command? if (substr(strtolower($sql), 0, 11) == "alter table") { // Analyse the alteration command - SQL_ALTER_TABLE($sql, __FILE__, __LINE__); + //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "Alterting table: {$sql}"); + SQL_ALTER_TABLE($sql, __FUNCTION__, __LINE__); } else { // Run regular SQL command - $result = SQL_QUERY($sql, __FILE__, __LINE__, false); + //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "Running regular query: {$sql}"); + SQL_QUERY($sql, __FUNCTION__, __LINE__, false); } } // END - if } // END - foreach } // END - if + + // Debug message + //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " - Left!"); } // Filter for updating/validating login data @@ -440,11 +458,11 @@ function FILTER_UPDATE_LOGIN_DATA () { if (!IS_MEMBER()) return false; // Secure user ID - $GLOBALS['userid'] = bigintval(get_session('userid')); + setUserId(get_session('userid')); // Load last module and last online time $result = SQL_QUERY_ESC("SELECT last_module, last_online FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", - array($GLOBALS['userid']), __FILE__, __LINE__); + array(getUserId()), __FUNCTION__, __LINE__); // Entry found? if (SQL_NUMROWS($result) == 1) { @@ -467,8 +485,8 @@ function FILTER_UPDATE_LOGIN_DATA () { } // END - if // Update last module / online time - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET last_module='%s', last_online=UNIX_TIMESTAMP(), REMOTE_ADDR='%s' WHERE userid=%s LIMIT 1", - array($GLOBALS['what'], GET_REMOTE_ADDR(), $GLOBALS['userid']), __FILE__, __LINE__); + SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `last_module`='%s', last_online=UNIX_TIMESTAMP(), REMOTE_ADDR='%s' WHERE userid=%s LIMIT 1", + array($GLOBALS['what'], GET_REMOTE_ADDR(), getUserId()), __FUNCTION__, __LINE__); } else { // Destroy session, we cannot update! destroy_user_session(); @@ -506,10 +524,28 @@ function FILTER_INIT_RANDOMIZER () { mt_srand(generateSeed() + constant('_ADD')); } -// Filter for initializing misc mem-cache arrays (NOT memcache!) -function FILTER_INIT_MEM_CACHE () { - // For LOAD_INC_ONCE() - $GLOBALS['cache_array']['load_once'] = array(); +// Filter for removing updates +function FILTER_REMOVE_UPDATES () { + // Init removal list + EXT_INIT_REMOVAL_LIST(); + + // Add the current extension to it + EXT_ADD_CURRENT_TO_REMOVAL_LIST(); + + // Simply remove it + UNSET_EXT_SQLS(); + + // Do we need to remove update depency? + if (EXT_COUNT_UPDATE_DEPENDS() > 0) { + // Then find all updates we shall no longer execute + foreach (EXT_GET_UPDATE_DEPENDS() as $id=>$ext_name) { + // Shall we remove this update? + if (in_array($ext_name, EXT_GET_REMOVAL_LIST())) { + // Then remove this extension! + EXT_REMOVE_UPDATE_DEPENDS($ext_name); + } // END - if + } // END - foreach + } // END - if } //