Renamed generic 'data' to 'filterData'
[mailer.git] / inc / filter-functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/27/2009 *
4  * ===================                          Last change: 10/27/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : filter-functions.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Functions for filter system                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Funktionen fuer Filter-System                    *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
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.                                  *
26  *                                                                      *
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.                         *
31  *                                                                      *
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,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Init "generic filter system"
44 function initFilterSystem () {
45         // Is the filter already initialized?
46         if (isset($GLOBALS['filter_init'])) {
47                 // Then abort here
48                 debug_report_bug(__FUNCTION__, __LINE__, 'Filter system already initialized.');
49         } // END - if
50
51         // Load all saved filers if sql_patches is updated
52         if ((isset($GLOBALS['cache_array']['filter']['filter_name'])) && (!isset($GLOBALS['cache_array']['filter']['chains']))) {
53                 // Prepare filter array
54                 prepareFilterArray();
55
56                 // Mark it as initialized
57                 $GLOBALS['filter_init'] = true;
58         } elseif ((!isInstallationPhase()) && (isExtensionInstalledAndNewer('sql_patches', '0.5.9'))) {
59                 // Init add
60                 $add = '';
61                 if (isExtensionINstalledAndNewer('sql_patches', '0.6.0')) $add = ", `filter_counter`";
62
63                 // Load all filters
64                 $result = SQL_QUERY('SELECT
65         `filter_name`,`filter_function`,`filter_active`' . $add . '
66 FROM
67         `{?_MYSQL_PREFIX?}_filters`
68 ORDER BY
69         `filter_id` ASC', __FUNCTION__, __LINE__);
70
71                 // Are there entries?
72                 if (!SQL_HASZERONUMS($result)) {
73                         // Load all filters
74                         while ($filterArray = SQL_FETCHARRAY($result)) {
75                                 // Get filter name and function
76                                 $filterName     = $filterArray['filter_name'];
77                                 $filterFunction = $filterArray['filter_function'];
78
79                                 // Set counter to default
80                                 $GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction] = '0';
81
82                                 // Mark this filter as loaded (from database)
83                                 $GLOBALS['cache_array']['filter']['loaded'][$filterName][$filterFunction] = true;
84
85                                 // Set this filter
86                                 $GLOBALS['cache_array']['filter']['chains'][$filterName][$filterFunction] = $filterArray['filter_active'];
87
88                                 // Is the array element for counter there?
89                                 if (isset($filterArray['filter_counter'])) {
90                                         // Then use this value!
91                                         $GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction] = $filterArray['filter_counter'];
92                                 } // END - if
93                         } // END - while
94                 } // END - if
95
96                 // Free result
97                 SQL_FREERESULT($result);
98         }
99
100         // Init filters
101         registerFilter('init', 'LOAD_CONFIGURATION');
102         registerFilter('init', 'INIT_RANDOMIZER');
103         registerFilter('init', 'LOAD_RUNTIME_INCLUDES');
104         registerFilter('init', 'INIT_EXTENSIONS');
105         registerFilter('init', 'SET_CURRENT_DATE');
106         registerFilter('init', 'INIT_RANDOM_NUMBER');
107         registerFilter('init', 'CHECK_REPOSITORY_REVISION');
108         registerFilter('init', 'RUN_HOURLY_RESET');
109         registerFilter('init', 'RUN_DAILY_RESET');
110         registerFilter('init', 'TRIGGER_SENDING_POOL');
111         registerFilter('init', 'DETERMINE_USERNAME');
112         registerFilter('init', 'DETERMINE_WHAT_ACTION');
113         registerFilter('init', 'COUNT_MODULE');
114         registerFilter('init', 'UPDATE_LOGIN_DATA');
115         registerFilter('init', 'ACTIVATE_EXCHANGE');
116
117         // Page headers - pre-filter (normally, you want to register here)
118         registerFilter('pre_page_header', 'LOAD_PAGE_HEADER');
119
120         // Page headers - post-filter (normally, you don't want to register here)
121         // ------------------- LAST FILTER FOR THIS CHAIN! ------------------------
122         registerFilter('post_page_header', 'FINISH_PAGE_HEADER');
123         // ------------------- LAST FILTER FOR THIS CHAIN! ------------------------
124
125         // 'You are here' navigation - post filter
126         registerFilter('post_youhere_line', 'CALL_HANDLER_LOGIN_FAILTURES');
127
128         // Filters for pre-extension-registration
129         registerFilter('pre_extension_installed', 'RUN_SQLS');
130
131         // Filters for post-extension-registration
132         registerFilter('post_extension_installed', 'AUTO_ACTIVATE_EXTENSION');
133         registerFilter('post_extension_installed', 'SOLVE_TASK');
134         registerFilter('post_extension_installed', 'LOAD_INCLUDES');
135         registerFilter('post_extension_installed', 'REMOVE_UPDATES');
136
137         // Solving tasks
138         registerFilter('solve_task', 'SOLVE_TASK');
139
140         // Loading includes in general
141         registerFilter('load_includes', 'LOAD_INCLUDES');
142
143         // Run SQLs
144         registerFilter('run_sqls', 'RUN_SQLS');
145
146         // Admin ACL check
147         registerFilter('check_admin_acl', 'CHECK_ADMIN_ACL');
148
149         // Register shutdown filters
150         registerFilter('shutdown', 'FLUSH_FILTERS');
151         registerFilter('shutdown', 'FLUSH_STATS');
152         registerFilter('shutdown', 'FLUSH_TEMPLATE_CACHE');
153         registerFilter('shutdown', 'FLUSH_OUTPUT');
154
155         // Compiling code
156         registerFilter('compile_code', 'COMPILE_CONFIG');
157         registerFilter('compile_code', 'COMPILE_EXPRESSION_CODE');
158
159         // Generic extension update filters
160         registerFilter('extension_update', 'UPDATE_EXTENSION_DATA');
161
162         // Do hourly reset stuff, keep this entry first in this chain:
163         registerFilter('hourly', 'RUN_HOURLY_INCLUDES');
164
165         // Do reset stuff, keep this entry first in this chain:
166         registerFilter('reset', 'RUN_RESET_INCLUDES');
167
168         // Remove extension
169         registerFilter('extension_remove', 'REMOVE_EXTENSION');
170
171         // Exclude some users
172         registerFilter('exclude_users', 'HTML_INCLUDE_USERS');
173
174         // Handling of fatal errors
175         registerFilter('handle_fatal_errors', 'HANDLE_FATAL_ERRORS');
176
177         // Page footer filters
178         registerFilter('page_footer', 'HANDLE_FATAL_ERRORS');
179         registerFilter('page_footer', 'DISPLAY_COPYRIGHT');
180         registerFilter('page_footer', 'DISPLAY_PARSING_TIME');
181
182         // Member login check. Always keep FETCH_USER_DATA as first entry!
183         registerFilter('member_login_check', 'FETCH_USER_DATA');
184
185         // Admin login
186         registerFilter('do_admin_login_done', 'DO_LOGIN_ADMIN');
187 }
188
189 // "Registers" a new filter function
190 function registerFilter ($filterName, $filterFunction, $silentAbort = true, $force = false, $dry_run = false) {
191         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ENTRY: filterName=' . $filterName . ',filterFunction=' . $filterFunction . ' - ENTERED!');
192
193         // Extend the filter function name
194         $filterFunction = sprintf("FILTER_%s", strtoupper($filterFunction));
195
196         // Is that filter already there?
197         if ((isset($GLOBALS['cache_array']['filter']['chains'][$filterName][$filterFunction])) && ($force === false)) {
198                 // In installation phase we always want to abort
199                 if (($silentAbort === false) || (isInstallationPhase())) {
200                         // Add fatal message
201                         debug_report_bug(__FUNCTION__, __LINE__, sprintf("Filter chain %s has already filter function %s registered!", $filterName, $filterFunction));
202                 } // END - if
203
204                 // Abort here
205                 return false;
206         } // END - if
207
208         // Shall we add it?
209         if ($dry_run === false) {
210                 // Is the function there?
211                 if (!function_exists($filterFunction)) {
212                         // Then abort here
213                         addFatalMessage(__FUNCTION__, __LINE__, sprintf("Filter function %s could not be added to filter chain %s.", $filterFunction, $filterName));
214                         return false;
215                 } // END - if
216
217                 // Simply add it to the array
218                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'REGISTER: filterName=' . $filterName . ',filterFunction=' . $filterFunction);
219                 $GLOBALS['cache_array']['filter']['chains'][$filterName][$filterFunction] = 'A';
220                 $GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction] = '0';
221         } // END - if
222
223         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ENTRY: filterName=' . $filterName . ',filterFunction=' . $filterFunction . ' - EXIT!');
224 }
225
226 // "Unregisters" a filter from the given chain
227 function unregisterFilter ($F, $L, $filterName, $filterFunction, $force = false, $dry_run = false) {
228         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ENTRY: F=' . $F . ',L=' . $L . ',filterName=' . $filterName . ',filterFunction=' . $filterFunction . ',force=' . intval($force) . ',dry=' . intval($dry_run) . ' - ENTERED!');
229
230         // Extend the filter function name only if not loaded from database
231         if (!isset($GLOBALS['cache_array']['filter']['loaded'][$filterName][$filterFunction])) {
232                 $filterFunction = sprintf("FILTER_%s", strtoupper($filterFunction));
233         } // END - if
234
235         // Is that filter there?
236         if ((!isset($GLOBALS['cache_array']['filter']['chains'][$filterName][$filterFunction])) && ($force === false)) {
237                 // Not found, so abort here
238                 addFatalMessage(__FUNCTION__, __LINE__, sprintf(getMessage('FILTER_FAILED_NOT_REMOVED'), $filterFunction, $filterName));
239                 return false;
240         } // END - if
241
242         // Shall we remove? (default, not while just showing an extension removal)
243         if ($dry_run === false) {
244                 // Mark for filter removal
245                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'REMOVE: F=' . $F . ',L=' . $L . ',filterName=' . $filterName . ',filterFunction=' . $filterFunction);
246                 $GLOBALS['cache_array']['filter']['chains'][$filterName][$filterFunction] = 'R';
247         } // END - if
248
249         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ENTRY: F=' . $F . ',L=' . $L . ',filterName=' . $filterName . ',filterFunction=' . $filterFunction . ',force=' . intval($force) . ',dry=' . intval($dry_run) . ' - EXIT!');
250 }
251
252 // "Runs" the given filters, filterData is optional and can be any type of data
253 function runFilterChain ($filterName, $filterData = null) {
254         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'filterName=' . $filterName . ',filterData[]=' . gettype($filterData) . ' - ENTERED!');
255
256         // Is that filter chain there?
257         if (!isset($GLOBALS['cache_array']['filter']['chains'][$filterName])) {
258                 // Log not found filters in debug-mode
259                 if (isDebugModeEnabled()) {
260                         // Log it away...
261                         logDebugMessage(__FUNCTION__, __LINE__, 'Filter chain ' . $filterName . ' not found.');
262                 } // END - if
263
264                 // Abort here and return content
265                 return $filterData;
266         } // END - if
267
268         // Default return value
269         $returnValue = $filterData;
270
271         // Then run all filters
272         foreach ($GLOBALS['cache_array']['filter']['chains'][$filterName] as $filterFunction => $active) {
273                 // Debug message
274                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Running: name=' . $filterName . ',func=' . $filterFunction . ',active=' . $active);
275
276                 // Is the filter active or newly added??
277                 if (($active == 'Y') || ($active == 'A') || ((in_array($filterName, array('shutdown','extension_remove','post_extension_run_sql'))) && ($active == 'R'))) {
278                         // Is this filter there?
279                         if (!function_exists($filterFunction)) {
280                                 // Unregister it
281                                 unregisterFilter(__FUNCTION__, __LINE__, $filterName, $filterFunction);
282
283                                 // Skip this entry
284                                 continue;
285                         } // END - if
286
287                         // Call the filter chain
288                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $filterName . '/' . $filterFunction . ',[]=' . gettype($returnValue));
289                         $returnValue = call_user_func_array($filterFunction, array($returnValue));
290
291                         // Update usage counter
292                         countFilterUsage($filterName, $filterFunction);
293                 } elseif (isDebugModeEnabled()) {
294                         // Debug message
295                         logDebugMessage(__FUNCTION__, __LINE__, 'Skipped: name=' . $filterName . ',func=' . $filterFunction . ',active=' . $active);
296                 }
297         } // END - foreach
298
299         // Return the filtered content
300         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'filterName=' . $filterName . ',filterData[]=' . gettype($filterData) . ',returnValue[]=' . gettype($returnValue) . ' - EXIT!');
301         return $returnValue;
302 }
303
304 // Count the filter usage
305 function countFilterUsage ($filterName, $filterFunction) {
306         // Is it there?
307         if (isset($GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction])) {
308                 // Yes, then increase
309                 $GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction]++;
310         } else {
311                 // No, then create
312                 $GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction] = 1;
313         }
314 }
315
316 // Prepares the filter array for usage
317 function prepareFilterArray () {
318         // Abort here if array is absend (e.g. not cached)
319         if (!isset($GLOBALS['cache_array']['filter']['filter_name'])) {
320                 // Abort silently
321                 return false;
322         } // END - if
323
324         // Init dummy array
325         $filterArray = array(
326                 'chains'  => array(),
327                 'loaded'  => array(),
328                 'counter' => array()
329         );
330
331         // Found in cache so rewrite the array
332         foreach ($GLOBALS['cache_array']['filter']['filter_name'] as $idx => $filterName) {
333                 // Get filter function
334                 $filterFunction = $GLOBALS['cache_array']['filter']['filter_function'][$idx];
335
336                 // Add the element with mapped index
337                 $filterArray['counter'][$filterName][$filterFunction] = $GLOBALS['cache_array']['filter']['filter_counter'][$idx];
338                 $filterArray['loaded'][$filterName][$filterFunction]  = true;
339                 $filterArray['chains'][$filterName][$filterFunction]  = $GLOBALS['cache_array']['filter']['filter_active'][$idx];
340         } // END - foreach
341
342         // Remove the cache
343         $GLOBALS['cache_array']['filter'] = $filterArray;
344 }
345
346 // Loads filter for given extension if present. This function will silently
347 // ignore absent filter files.
348 function loadExtensionFilters ($ext_name) {
349         // Do we have cache entry?
350         if (!isset($GLOBALS[__FUNCTION__][$ext_name])) {
351                 // Default is not found
352                 $GLOBALS[__FUNCTION__][$ext_name] = false;
353
354                 // Construct include file name
355                 $incFileName = sprintf("inc/filter/%s_filter.php", $ext_name);
356
357                 // Is the include file readable?
358                 if (isIncludeReadable($incFileName)) {
359                         // Load the include file
360                         loadIncludeOnce($incFileName);
361
362                         // Mark the file as loaded
363                         $GLOBALS[__FUNCTION__][$ext_name] = true;
364                 } elseif (isDebugModeEnabled()) {
365                         // Log missing file
366                         logDebugMessage(__FUNCTION__, __LINE__, 'Include file ' . $incFileName . ' for extension ' . $ext_name . ' is missing.');
367                 }
368         } // END - if
369 }
370
371 // [EOF]
372 ?>