274ded1875e60b1975ac21e9ee741694ffdaf913
[mailer.git] / inc / filter-functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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:: 1185                                                   $ *
14  * $Date:: 2009-10-11 04:16:39 +0200 (Sun, 11 Oct 2009)               $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author:: quix0r                                                   $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Init "generic filter system"
45 function initFilterSystem () {
46         // Is the filter already initialized?
47         if (isset($GLOBALS['filters'])) {
48                 // Then abort here
49                 debug_report_bug(getMessage('FILTER_FAILED_ALREADY_INIT'));
50         } // END - if
51
52         // Load all saved filers if sql_patches is updated
53         if (isset($GLOBALS['cache_array']['filter']['filter_name'])) {
54                 // Init dummy array
55                 $filterArray = array(
56                         'chains'  => array(),
57                         'loaded'  => array(),
58                         'counter' => array()
59                 );
60
61                 // Found in cache so rewrite the array
62                 foreach ($GLOBALS['cache_array']['filter']['filter_name'] as $idx => $filterName) {
63                         // Get filter function
64                         $filterFunction = $GLOBALS['cache_array']['filter']['filter_function'][$idx];
65
66                         // Add the element with mapped index
67                         $filterArray['counter'][$filterName][$filterFunction] = $GLOBALS['cache_array']['filter']['filter_counter'][$idx];
68                         $filterArray['loaded'][$filterName][$filterFunction]  = true;
69                         $filterArray['chains'][$filterName][$filterFunction]  = $GLOBALS['cache_array']['filter']['filter_active'][$idx];
70                 } // END - foreach
71
72                 // Mark filters as loaded
73                 $GLOBALS['cache_array']['filter'] = true;
74
75                 // Remove the cache
76                 $GLOBALS['cache_array']['filter'] = $filterArray;
77         } elseif ((!isInstallationPhase()) && (isExtensionInstalledAndNewer('sql_patches', '0.5.9'))) {
78                 // Init add
79                 $add = '';
80                 if (getExtensionVersion('sql_patches') >= '0.6.0') $add = ", `filter_counter`";
81
82                 // Load all active filers
83                 $result = SQL_QUERY("SELECT
84         `filter_name`,`filter_function`,`filter_active`".$add."
85 FROM
86         `{?_MYSQL_PREFIX?}_filters`
87 ORDER BY
88         `filter_id` ASC", __FUNCTION__, __LINE__);
89
90                 // Are there entries?
91                 if (SQL_NUMROWS($result) > 0) {
92                         // Load all filters
93                         while ($filterArray = SQL_FETCHARRAY($result)) {
94                                 // Get filter name and function
95                                 $filterName     = $filterArray['filter_name'];
96                                 $filterFunction = $filterArray['filter_function'];
97
98                                 // Set counter to default
99                                 $GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction] = 0;
100
101                                 // Mark this filter as loaded (from database)
102                                 $GLOBALS['cache_array']['filter']['loaded'][$filterName][$filterFunction] = true;
103
104                                 // Set this filter
105                                 $GLOBALS['cache_array']['filter']['chains'][$filterName][$filterFunction] = $filterArray['filter_active'];
106
107                                 // Is the array element for counter there?
108                                 if (isset($filterArray['filter_counter'])) {
109                                         // Then use this value!
110                                         $GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction] = $filterArray['filter_counter'];
111                                 } // END - if
112                         } // END - while
113                 } // END - if
114
115                 // Free result
116                 SQL_FREERESULT($result);
117         }
118
119         // Init filters
120         registerFilter('init', 'LOAD_CONFIGURATION');
121         registerFilter('init', 'INIT_EXTENSIONS');
122         registerFilter('init', 'LOAD_RUNTIME_INCLUDES');
123         registerFilter('init', 'CHECK_SVN_REVISION');
124         registerFilter('init', 'RUN_DAILY_RESET');
125         registerFilter('init', 'INIT_RANDOMIZER');
126         registerFilter('init', 'TRIGGER_SENDING_POOL');
127         registerFilter('init', 'DETERMINE_USERNAME');
128         registerFilter('init', 'DETERMINE_WHAT_ACTION');
129         registerFilter('init', 'UPDATE_LOGIN_DATA');
130         registerFilter('init', 'ACTIVATE_EXCHANGE');
131
132         // Login failures handler
133         registerFilter('post_youhere_line', 'CALL_HANDLER_LOGIN_FAILTURES');
134
135         // Filters for pre-extension-registration
136         registerFilter('pre_extension_installed', 'RUN_SQLS');
137
138         // Filters for post-extension-registration
139         registerFilter('post_extension_installed', 'AUTO_ACTIVATE_EXTENSION');
140         registerFilter('post_extension_installed', 'SOLVE_TASK');
141         registerFilter('post_extension_installed', 'LOAD_INCLUDES');
142         registerFilter('post_extension_installed', 'REMOVE_UPDATES');
143
144         // Solving tasks
145         registerFilter('solve_task', 'SOLVE_TASK');
146
147         // Loading includes in general
148         registerFilter('load_includes', 'LOAD_INCLUDES');
149
150         // Run SQLs
151         registerFilter('run_sqls', 'RUN_SQLS');
152
153         // Admin ACL check
154         registerFilter('check_admin_acl', 'CHECK_ADMIN_ACL');
155
156         // Register shutdown filters
157         registerFilter('shutdown', 'FLUSH_FILTERS');
158         registerFilter('shutdown', 'FLUSH_STATS');
159         registerFilter('shutdown', 'FLUSH_OUTPUT');
160
161         // Compiling code
162         registerFilter('compile_code', 'COMPILE_CONFIG');
163         registerFilter('compile_code', 'COMPILE_EXTENSION');
164
165         // Generic extension update filters
166         registerFilter('extension_update', 'UPDATE_EXTENSION_DATA');
167
168         // Do reset stuff, keep this entry first in this chain:
169         registerFilter('reset', 'RUN_RESET_INCLUDES');
170
171         // Remove extension
172         registerFilter('extension_remove', 'REMOVE_EXTENSION');
173
174         // Exclude some users
175         registerFilter('exclude_users', 'HTML_INCLUDE_USERS');
176 }
177
178 // "Registers" a new filter function
179 function registerFilter ($filterName, $filterFunction, $silentAbort = true, $force = false, $dry_run = false) {
180         // Extend the filter function name
181         $filterFunction = sprintf("FILTER_%s", strtoupper($filterFunction));
182
183         // Is that filter already there?
184         if ((isset($GLOBALS['cache_array']['filter']['chains'][$filterName][$filterFunction])) && ($force === false)) {
185                 // Then abort here
186                 if ($silentAbort === false) {
187                         addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_ALREADY_ADDED'), array($filterFunction, $filterName));
188                 } // END - if
189
190                 // Abort here
191                 return false;
192         } // END - if
193
194         // Shall we add it?
195         if ($dry_run === false) {
196                 // Is the function there?
197                 if (!function_exists($filterFunction)) {
198                         // Then abort here
199                         addFatalMessage(__FUNCTION__, __LINE__, sprintf(getMessage('FILTER_FAILED_404'), $filterFunction, $filterName));
200                         return false;
201                 } // END - if
202
203                 // Simply add it to the array
204                 //* DEBUG: */ print __FUNCTION__.': filterName='.$filterName.',filterFunction='.$filterFunction.'<br />';
205                 $GLOBALS['cache_array']['filter']['chains'][$filterName][$filterFunction] = 'A';
206                 $GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction] = 0;
207         } // END - if
208 }
209
210 // "Unregisters" a filter from the given chain
211 function unregisterFilter ($filterName, $filterFunction, $force = false, $dry_run = false) {
212         // Extend the filter function name only if not loaded from database
213         if (!isset($GLOBALS['cache_array']['filter']['loaded'][$filterName][$filterFunction])) {
214                 $filterFunction = sprintf("FILTER_%s", strtoupper($filterFunction));
215         } // END - if
216
217         // Is that filter there?
218         if ((!isset($GLOBALS['cache_array']['filter']['chains'][$filterName][$filterFunction])) && ($force === false)) {
219                 // Not found, so abort here
220                 addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_NOT_REMOVED'), array($filterFunction, $filterName));
221                 return false;
222         } // END - if
223
224         // Shall we remove? (default, not while just showing an extension removal)
225         if ($dry_run === false) {
226                 // Mark for filter removal
227                 //* DEBUG: */ print __FUNCTION__.': filterName='.$filterName.',filterFunction='.$filterFunction.'<br />';
228                 $GLOBALS['cache_array']['filter']['chains'][$filterName][$filterFunction] = 'R';
229         } // END - if
230 }
231
232 // "Runs" the given filters, data is optional and can be any type of data
233 function runFilterChain ($filterName, $data = null) {
234         // Is that filter chain there?
235         if (!isset($GLOBALS['cache_array']['filter']['chains'][$filterName])) {
236                 // We should find all these non-existing filter chains
237                 /* Only for tracking: */ if ($filterName != 'sql_admin_extra_data') {
238                 /* Only for tracking: */ debug_report_bug('Filter chain <strong>' . $filterName . '</strong> not found!');
239                 /* Only for tracking: */ }
240                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Filter chain ' . $filterName . ' not found!');
241
242                 // Abort here and return content
243                 return $data;
244         } // END - if
245
246         // Default return value
247         $returnValue = $data;
248
249         // Then run all filters
250         foreach ($GLOBALS['cache_array']['filter']['chains'][$filterName] as $filterFunction => $active) {
251                 // Debug message
252                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Running: name={$filterName},func={$filterFunction},active={$active}");
253
254                 // Is the filter active?
255                 if (($active == 'Y') || ($active == 'A') || ((in_array($filterName, array('shutdown','extension_remove','post_extension_run_sql'))) && ($active == 'R'))) {
256                         // Is this filter there?
257                         if (!function_exists($filterFunction)) {
258                                 // Unregister it
259                                 unregisterFilter($filterName, $filterFunction);
260
261                                 // Skip this entry
262                                 continue;
263                         } // END - if
264
265                         // Call the filter chain
266                         //* DEBUG: */ print $filterName.'/'.$filterFunction.',[]='.gettype($returnValue).'<br />';
267                         $returnValue = call_user_func_array($filterFunction, array($returnValue));
268
269                         // Update usage counter
270                         countFilterUsage($filterName, $filterFunction);
271                 } elseif (isDebugModeEnabled()) {
272                         // Debug message
273                         logDebugMessage(__FUNCTION__, __LINE__, "Skipped: name={$filterName},func={$filterFunction},active={$active}");
274                 }
275         } // END - foreach
276
277         // Return the filtered content
278         return $returnValue;
279 }
280
281 // Count the filter usage
282 function countFilterUsage ($filterName, $filterFunction) {
283         // Is it there?
284         if (isset($GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction])) {
285                 // Yes, then increase
286                 $GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction]++;
287         } else {
288                 // No, then create
289                 $GLOBALS['cache_array']['filter']['counter'][$filterName][$filterFunction] = 1;
290         }
291 }
292
293 // [EOF]
294 ?>