Functions renamed to new naming convetion, TODOs.txt updated
[mailer.git] / inc / filters.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 12/16/2008 *
4  * ===============                              Last change: 12/16/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : filters.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  * 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 - 2008 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         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 }
44
45 // Init "generic filter system"
46 function initFilterSystem () {
47         // Is the filter already initialized?
48         if ((isset($GLOBALS['filters']['chains'])) && (is_array($GLOBALS['filters']['chains']))) {
49                 // Then abort here
50                 addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_ALREADY_INIT'));
51                 return false;
52         } // END - if
53
54         // Init the filter system (just some ideas)
55         $GLOBALS['filters']['chains'] = array(
56                 'preinit'   => array(), // Filters for pre-init phase
57                 'postinit'  => array(), // Filters for post-init phase
58                 'shutdown'  => array()  // Filters for shutdown phase
59         );
60
61         // Init loaded filters and counter
62         $GLOBALS['filters']['loaded'] =  array();
63         $GLOBALS['filters']['counter'] = array();
64
65         // Load all saved filers if sql_patches is updated
66         if (GET_EXT_VERSION('sql_patches') >= '0.5.9') {
67                 // Init add
68                 $add = '';
69                 if (GET_EXT_VERSION('sql_patches') >= '0.6.0') $add = ", `filter_counter`";
70
71                 // Load all active filers
72                 $result = SQL_QUERY("SELECT `filter_name`,`filter_function`,`filter_active`".$add."
73 FROM `{!_MYSQL_PREFIX!}_filters`
74 ORDER BY `filter_id` ASC", __FUNCTION__, __LINE__);
75
76                 // Are there entries?
77                 if (SQL_NUMROWS($result) > 0) {
78                         // Load all filters
79                         while ($filterArray = SQL_FETCHARRAY($result)) {
80                                 // Get filter name and function
81                                 $filterName     = $filterArray['filter_name'];
82                                 $filterFunction = $filterArray['filter_function'];
83
84                                 // Set counter to default
85                                 $GLOBALS['filters']['counter'][$filterName][$filterFunction] = 0;
86
87                                 // Mark this filter as loaded (from database)
88                                 $GLOBALS['filters']['loaded'][$filterName][$filterFunction] = true;
89
90                                 // Set this filter
91                                 $GLOBALS['filters']['chains'][$filterName][$filterFunction] = $filterArray['filter_active'];
92
93                                 // Is the array element for counter there?
94                                 if (isset($filterArray['filter_counter'])) {
95                                         // Then use this value!
96                                         $GLOBALS['filters']['counter'][$filterName][$filterFunction] = $filterArray['filter_counter'];
97                                 } // END - if
98                         } // END - while
99                 } // END - if
100
101                 // Free result
102                 SQL_FREERESULT($result);
103         } // END - if
104
105         // Init filters
106         registerFilter('init', 'UPDATE_LOGIN_DATA');
107         registerFilter('init', 'INIT_RANDOMIZER');
108
109         // Login failures handler
110         registerFilter('post_youhere_line', 'CALL_HANDLER_LOGIN_FAILTURES');
111
112         // Filters for pre-extension-registration
113         registerFilter('pre_extension_installed', 'RUN_SQLS');
114
115         // Filters for post-extension-registration
116         registerFilter('post_extension_installed', 'AUTO_ACTIVATE_EXTENSION');
117         registerFilter('post_extension_installed', 'SOLVE_TASK');
118         registerFilter('post_extension_installed', 'loadIncludeLUDES');
119         registerFilter('post_extension_installed', 'REMOVE_UPDATES');
120
121         // Solving tasks
122         registerFilter('solve_task', 'SOLVE_TASK');
123
124         // Loading includes in general
125         registerFilter('load_includes', 'loadIncludeLUDES');
126
127         // Run SQLs
128         registerFilter('run_sqls', 'RUN_SQLS');
129
130         // Admin ACL check
131         registerFilter('check_admin_acl', 'CHECK_ADMIN_ACL');
132
133         // Register shutdown filters
134         registerFilter('shutdown', 'FLUSH_FILTERS');
135 }
136
137 // "Registers" a new filter function
138 function registerFilter ($filterName, $filterFunction, $silentAbort = true, $force = false, $dry_run = false) {
139         // Extend the filter function name
140         $filterFunction = sprintf("FILTER_%s", strtoupper($filterFunction));
141
142         // Is that filter already there?
143         if ((isset($GLOBALS['filters']['chains'][$filterName][$filterFunction])) && (!$force)) {
144                 // Then abort here
145                 if (!$silentAbort) {
146                         addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_ALREADY_ADDED'), array($filterFunction, $filterName));
147                 } // END - if
148
149                 // Abort here
150                 return false;
151         } // END - if
152
153         // Is the function there?
154         if (!function_exists($filterFunction)) {
155                 // Then abort here
156                 addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_NOT_FOUND'), array($filterFunction, $filterName));
157                 return false;
158         } // END - if
159
160         // Shall we add it?
161         if (!$dry_run) {
162                 // Simply add it to the array
163                 $GLOBALS['filters']['chains'][$filterName][$filterFunction] = 'Y';
164                 $GLOBALS['filters']['counter'][$filterName][$filterFunction] = 0;
165         } // END - if
166 }
167
168 // "Unregisters" a filter from the given chain
169 function unregisterFilter ($filterName, $filterFunction, $force = false, $dry_run = false) {
170         // Extend the filter function name only if not loaded from database
171         if (!isset($GLOBALS['filters']['loaded'][$filterName][$filterFunction])) {
172                 $filterFunction = sprintf("FILTER_%s", strtoupper($filterFunction));
173         } // END - if
174
175         // Is that filter there?
176         if ((!isset($GLOBALS['filters']['chains'][$filterName][$filterFunction])) && (!$force)) {
177                 // Not found, so abort here
178                 addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_NOT_REMOVED'), array($filterFunction, $filterName));
179                 return false;
180         } // END - if
181
182         // Shall we remove? (default, not while just showing an extension removal)
183         if (!$dry_run) {
184                 // Mark for filter removal
185                 $GLOBALS['filters']['chains'][$filterName][$filterFunction] = "R";
186                 unset($GLOBALS['filters']['counter'][$filterName][$filterFunction]);
187         } // END  - if
188 }
189
190 // "Runs" the given filters, data is optional and can be any type of data
191 function runFilterChain ($filterName, $data = null, $silentAbort = true) {
192         // Is that filter chain there?
193         if (!isset($GLOBALS['filters']['chains'][$filterName])) {
194                 // Then abort here (quick'N'dirty hack)
195                 if ((!$silentAbort) && (defined('FILTER_FAILED_NO_FILTER_FOUND'))) {
196                         // Add fatal message
197                         addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FAILED_NO_FILTER_FOUND'), $filterName);
198                 } // END - if
199
200                 // Abort here
201                 return false;
202         } // END - if
203
204         // Default return value
205         $returnValue = $data;
206
207         // Then run all filters
208         foreach ($GLOBALS['filters']['chains'][$filterName] as $filterFunction=>$active) {
209                 // Debug message
210                 //* DEBUG: */ echo __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): name={$filterName},func={$filterFunction},active={$active}<br />\n";
211
212                 // Is the filter active?
213                 if ($active == 'Y') {
214                         // Is this filter there?
215                         if (!function_exists($filterFunction)) {
216                                 // Unregister it
217                                 unregisterFilter($filterName, $filterFunction);
218
219                                 // Skip this entry
220                                 continue;
221                         } // END - if
222
223                         // Call the filter chain
224                         $returnValue = call_user_func_array($filterFunction, array($returnValue));
225
226                         // Update usage counter
227                         $GLOBALS['filters']['counter'][$filterName][$filterFunction]++;
228                 } // END - if
229         } // END - foreach
230
231         // Return the filtered content
232         return $returnValue;
233 }
234
235 // -----------------------------------------------------------------------------
236 // Generic filter functions we always need
237 // -----------------------------------------------------------------------------
238
239 // Filter for flushing all new filters to the database
240 function FILTER_FLUSH_FILTERS () {
241         // Clear all previous SQL queries
242         INIT_SQLS();
243
244         // Are we installing?
245         if ((isInstalling()) || (!isInstalled())) {
246                 // Then silently skip this filter
247                 return true;
248         } // END - if
249
250         // Is a database link here and not in installation mode?
251         if ((!SQL_IS_LINK_UP()) && (!isInstalling())) {
252                 // Abort here
253                 addFatalMessage(__FUNCTION__, __LINE__, getMessage('FILTER_FLUSH_FAILED_NO_DATABASE'));
254                 return false;
255         } // END - if
256
257         // Is the extension sql_patches updated?
258         if (EXT_VERSION_IS_OLDER('sql_patches', '0.5.9')) {
259                 // Abort silently here
260                 return false;
261         } // END - if
262
263         // Nothing is added/remove by default
264         $inserted = 0; $removed = 0;
265
266         // Prepare SQL queries
267         $insertSQL = "INSERT INTO `{!_MYSQL_PREFIX!}_filters` (`filter_name`,`filter_function`,`filter_active`) VALUES";
268         $removeSQL = "DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_filters` WHERE";
269
270         // Write all filters to database
271         foreach ($GLOBALS['filters']['chains'] as $filterName => $filterArray) {
272                 // Walk through all filters
273                 foreach ($filterArray as $filterFunction => $active) {
274                         // Is this filter loaded?
275                         if (!isset($GLOBALS['filters']['loaded'][$filterName][$filterFunction])) {
276                                 // Add this filter (all filters are active by default)
277                                 $insertSQL .= sprintf("('%s','%s','Y'),", $filterName, $filterFunction);
278                                 $inserted++;
279                         } elseif ($active == "R") {
280                                 // Remove this filter
281                                 $removeSQL .= sprintf(" (`filter_name`='%s' AND `filter_function`='%s') OR", $filterName, $filterFunction);
282                                 $removed++;
283                         }
284                 } // END - foreach
285         } // END - foreach
286
287         // Something has been added?
288         if ($inserted > 0) {
289                 // Finish SQL command
290                 $insertSQL = substr($insertSQL, 0, -1);
291
292                 // And run it
293                 ADD_SQL($insertSQL);
294         } // END - if
295
296         // Something has been removed?
297         if ($removed > 0) {
298                 // Finish SQL command
299                 $removeSQL = substr($removeSQL, 0, -2) . "LIMIT ".$removed;
300
301                 // And run it
302                 ADD_SQL($removeSQL);
303         } // END - if
304
305         // Shall we update usage counters (ONLY FOR DEBUGGING!)
306         if (getConfig('update_filter_usage') == 'Y') {
307                 // Update all counters
308                 foreach ($GLOBALS['filters']['counter'] as $filterName => $filterArray) {
309                         // Walk through all filters
310                         foreach ($filterArray as $filterFunction => $cnt) {
311                                 // Construct and add the query
312                                 ADD_SQL(sprintf("UPDATE `{!_MYSQL_PREFIX!}_filters` SET `filter_counter`=%s WHERE `filter_name`='%s' AND `filter_function`='%s' LIMIT 1",
313                                 bigintval($cnt),
314                                 $filterName,
315                                 $filterFunction
316                                 ));
317                         } // END - foreach
318                 } // END - foreach
319         } // END - if
320
321         // Run the run_sqls filter in non-dry mode
322         runFilterChain('run_sqls');
323 }
324
325 // Filter for calling the handler for login failures
326 function FILTER_CALL_HANDLER_LOGIN_FAILTURES ($data) {
327         // Init content
328         $content = $data;
329
330         // Handle failed logins here if not in guest
331         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):type={$data['type']},action={$GLOBALS['action']},what={$GLOBALS['what']},lvl={$data['access_level']}<br />\n";
332         if ((($data['type'] == "what") || ($data['type'] == "action") && ((!isset($GLOBALS['what'])) || ($GLOBALS['what'] == "overview") || ($GLOBALS['what'] == getConfig('index_home')))) && ($data['access_level'] != 'guest') && ((GET_EXT_VERSION('sql_patches') >= '0.4.7') || (GET_EXT_VERSION('admins') >= '0.7.0'))) {
333                 // Handle failure
334                 $content['content'] .= HANDLE_LOGIN_FAILTURES($data['access_level']);
335         } // END - if
336
337         // Return the content
338         return $content;
339 }
340
341 // Filter for redirecting to logout if sql_patches has been installed
342 function FILTER_REDIRECT_TO_LOGOUT_SQL_PATCHES () {
343         // Remove this filter
344         unregisterFilter('shutdown', __FUNCTION__);
345
346         // Is the element set?
347         if (isset($GLOBALS['ext_load_mode'])) {
348                 // Redirect here
349                 redirectToUrl('modules.php?module=admin&amp;logout=1&amp;' . $GLOBALS['ext_load_mode'] . '=sql_patches');
350         } // END - if
351
352         // This should not happen!
353         DEBUG_LOG(__FUNCTION__, __LINE__, 'Cannot auto-logout because no extension load-mode has been set.');
354 }
355
356 // Filter for auto-activation of a extension
357 function FILTER_AUTO_ACTIVATE_EXTENSION ($data) {
358         // Is this extension always activated?
359         if (EXT_GET_ALWAYS_ACTIVE() == 'Y') {
360                 // Then activate the extension
361                 //* DEBUG: */ echo __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ext_name={$data['ext_name']}<br />\n";
362                 ACTIVATE_EXTENSION($data['ext_name']);
363         } // END - if
364
365         // Return the data
366         return $data;
367 }
368
369 // Filter for solving task given task
370 function FILTER_SOLVE_TASK ($data) {
371         // Don't solve anything if no admin!
372         if (!IS_ADMIN()) return $data;
373
374         // Is this a direct task id or array element task_id is found?
375         if (is_int($data)) {
376                 // Then solve it...
377                 ADMIN_SOLVE_TASK($data);
378         } elseif ((is_array($data)) && (isset($data['task_id']))) {
379                 // Solve it...
380                 ADMIN_SOLVE_TASK($data['task_id']);
381         }
382
383         // Return the data
384         return $data;
385 }
386
387 // Filter to load include files
388 function FILTER_loadIncludeLUDES () {
389         // Default is $data as inclusion list
390         $data = GET_INC_POOL();
391
392         // Is it an array?
393         if ((!isset($data)) || (!is_array($data))) {
394                 // Then abort here
395                 debug_report_bug(sprintf("INC_POOL is no array! Type: %s", gettype($data)));
396         } elseif (isset($data['inc_pool'])) {
397                 // Use this as new inclusion pool!
398                 SET_INC_POOL($data['inc_pool']);
399         }
400
401         // Check for added include files
402         if (COUNT_INC_POOL() > 0) {
403                 // Loads every include file
404                 foreach (GET_INC_POOL() as $FQFN) {
405                         loadIncludeOnce($FQFN);
406                 } // END - foreach
407
408                 // Reset array
409                 INIT_INC_POOL();
410         } // END - if
411
412         // Continue with processing
413         return $data;
414 }
415
416 // Filter for running SQL commands
417 function FILTER_RUN_SQLS ($data) {
418         // Debug message
419         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " - Entered!");
420
421         // Is the array there?
422         if ((IS_SQLS_VALID()) && ((!isset($data['dry_run'])) || ($data['dry_run'] == false))) {
423                 // Run SQL commands
424                 //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " - Found ".COUNT_SQLS()." queries to run.");
425                 foreach (GET_SQLS() as $sql) {
426                         // Trim spaces away
427                         $sql = trim($sql);
428
429                         // Is there still a query left?
430                         if (!empty($sql)) {
431                                 // Do we have an "ALTER TABLE" command?
432                                 if (substr(strtolower($sql), 0, 11) == "alter table") {
433                                         // Analyse the alteration command
434                                         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "Alterting table: {$sql}");
435                                         SQL_ALTER_TABLE($sql, __FUNCTION__, __LINE__);
436                                 } else {
437                                         // Run regular SQL command
438                                         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "Running regular query: {$sql}");
439                                         SQL_QUERY($sql, __FUNCTION__, __LINE__, false);
440                                 }
441                         } // END - if
442                 } // END - foreach
443         } // END - if
444
445         // Debug message
446         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " - Left!");
447 }
448
449 // Filter for updating/validating login data
450 function FILTER_UPDATE_LOGIN_DATA () {
451         // Add missing array
452         if ((!isset($GLOBALS['last'])) || (!is_array($GLOBALS['last']))) $GLOBALS['last'] = array();
453
454         // Recheck if logged in
455         if (!IS_MEMBER()) return false;
456
457         // Secure user ID
458         setUserId(getSession('userid'));
459
460         // Load last module and last online time
461         $result = SQL_QUERY_ESC("SELECT last_module, last_online FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
462         array(getUserId()), __FUNCTION__, __LINE__);
463
464         // Entry found?
465         if (SQL_NUMROWS($result) == 1) {
466                 // Load last module and online time
467                 list($mod, $onl) = SQL_FETCHROW($result);
468
469                 // Maybe first login time?
470                 if (empty($mod)) $mod = "login";
471
472                 // This will be displayed on welcome page! :-)
473                 if (empty($GLOBALS['last']['module'])) {
474                         $GLOBALS['last']['module'] = $mod; $GLOBALS['last']['online'] = $onl;
475                 } // END - if
476
477                 // "what" not set?
478                 if (empty($GLOBALS['what'])) {
479                         // Fix it to default
480                         $GLOBALS['what'] = "welcome";
481                         if (getConfig('index_home') != '') $GLOBALS['what'] = getConfig('index_home');
482                 } // END - if
483
484                 // Update last module / online time
485                 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `last_module`='%s', last_online=UNIX_TIMESTAMP(), REMOTE_ADDR='%s' WHERE userid=%s LIMIT 1",
486                 array($GLOBALS['what'], detectRemoteAddr(), getUserId()), __FUNCTION__, __LINE__);
487         }  else {
488                 // Destroy session, we cannot update!
489                 destroyUserSession();
490         }
491
492         // Free the result
493         SQL_FREERESULT($result);
494 }
495
496 // Filter for checking admin ACL
497 function FILTER_CHECK_ADMIN_ACL () {
498         // Extension not installed so it's always allowed to access everywhere!
499         $ret = true;
500
501         // Ok, Cookie-Update done
502         if ((GET_EXT_VERSION('admins') >= '0.3.0') && (EXT_IS_ACTIVE('admins'))) {
503                 // Check if action GET variable was set
504                 $action = SQL_ESCAPE($GLOBALS['action']);
505                 if (!empty($GLOBALS['what'])) {
506                         // Get action value by what-value
507                         $action = getModeAction('admin', $GLOBALS['what']);
508                 } // END - if
509
510                 // Check for access control line of current menu entry
511                 $ret = adminsCheckAdminAcl($action, $GLOBALS['what']);
512         } // END - if
513
514         // Return result
515         return $ret;
516 }
517
518 // Filter for initializing randomizer
519 function FILTER_INIT_RANDOMIZER () {
520         // Simply init the randomizer with seed and _ADD value
521         mt_srand(generateSeed() + getConfig('_ADD'));
522 }
523
524 // Filter for removing updates
525 function FILTER_REMOVE_UPDATES () {
526         // Init removal list
527         EXT_INIT_REMOVAL_LIST();
528
529         // Add the current extension to it
530         EXT_ADD_CURRENT_TO_REMOVAL_LIST();
531
532         // Simply remove it
533         UNSET_EXT_SQLS();
534
535         // Do we need to remove update depency?
536         if (EXT_COUNT_UPDATE_DEPENDS() > 0) {
537                 // Then find all updates we shall no longer execute
538                 foreach (EXT_GET_UPDATE_DEPENDS() as $id=>$ext_name) {
539                         // Shall we remove this update?
540                         if (in_array($ext_name, EXT_GET_REMOVAL_LIST())) {
541                                 // Then remove this extension!
542                                 EXT_REMOVE_UPDATE_DEPENDS($ext_name);
543                         } // END - if
544                 } // END - foreach
545         } // END - if
546 }
547
548 //
549 ?>