Fixed displaying of correct values in surfbar
[mailer.git] / inc / filters.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 12/16/2008 *
4  * ===================                          Last change: 12/16/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : filters.php                                      *
8  * -------------------------------------------------------------------- *
9  * Short description : Generic filters                                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Allgemeine Filter                                *
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 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } // END - if
44
45 // Filter for flushing all new filters to the database
46 function FILTER_FLUSH_FILTERS () {
47         // Clear all previous SQL queries
48         initSqls();
49
50         // Are we installing?
51         if ((isInstallationPhase())) {
52                 // Then silently skip this filter
53                 return true;
54         } // END - if
55
56         // Is a database link here and not in installation mode?
57         if ((!SQL_IS_LINK_UP()) && (!isInstalling())) {
58                 // Abort here
59                 addFatalMessage(__FUNCTION__, __LINE__, '{--FILTER_FLUSH_FAILED_NO_DATABASE--}');
60                 return false;
61         } // END - if
62
63         // Is the extension sql_patches updated?
64         if ((!isExtensionInstalled('sql_patches')) || (isExtensionInstalledAndOlder('sql_patches', '0.5.9'))) {
65                 // Abort silently here
66                 return false;
67         } // END - if
68
69         // Nothing is added/remove by default
70         $inserted = '0';
71         $removed = '0';
72
73         // Prepare SQL queries
74         $insertSQL = 'INSERT INTO `{?_MYSQL_PREFIX?}_filters` (`filter_name`,`filter_function`,`filter_active`) VALUES';
75         $removeSQL = 'DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_filters` WHERE';
76
77         // Write all filters to database
78         foreach ($GLOBALS['cache_array']['filter']['chains'] as $filterName => $filterArray) {
79                 // Walk through all filters
80                 foreach ($filterArray as $filterFunction => $active) {
81                         // Is this filter loaded?
82                         //* DEBUG: */ debugOutput('FOUND:'.$filterName.'/'.$filterFunction.'='.$active);
83                         if (((!isset($GLOBALS['cache_array']['filter']['loaded'][$filterName][$filterFunction])) && ($active != 'R')) || ($active == 'A')) {
84                                 // Add this filter (all filters are active by default)
85                                 //* DEBUG: */ debugOutput('ADD:'.$filterName.'/'.$filterFunction);
86                                 $insertSQL .= sprintf("('%s','%s','Y'),", $filterName, $filterFunction);
87                                 $inserted++;
88                         } elseif ($active == 'R') {
89                                 // Remove this filter
90                                 //* DEBUG: */ debugOutput('REMOVE:'.$filterName.'/'.$filterFunction);
91                                 $removeSQL .= sprintf(" (`filter_name`='%s' AND `filter_function`='%s') OR", $filterName, $filterFunction);
92                                 $removed++;
93                         }
94                 } // END - foreach
95         } // END - foreach
96
97         // Something has been added?
98         if ($inserted > 0) {
99                 // Finish SQL command and add it
100                 addSql(substr($insertSQL, 0, -1));
101         } // END - if
102
103         // Something has been removed?
104         if ($removed > 0) {
105                 // Finish SQL command and add it
106                 addSql(substr($removeSQL, 0, -2) . 'LIMIT ' . $removed);
107         } // END - if
108
109         // Shall we update usage counters (ONLY FOR DEBUGGING!)
110         if (isFilterUsageUpdateEnabled()) {
111                 // Update all counters
112                 foreach ($GLOBALS['cache_array']['filter']['counter'] as $filterName => $filterArray) {
113                         // Walk through all filters
114                         foreach ($filterArray as $filterFunction => $cnt) {
115                                 // Construct and add the query
116                                 addSql(sprintf("UPDATE `{?_MYSQL_PREFIX?}_filters` SET `filter_counter`=%s WHERE `filter_name`='%s' AND `filter_function`='%s' LIMIT 1",
117                                         bigintval($cnt),
118                                         $filterName,
119                                         $filterFunction
120                                 ));
121                         } // END - foreach
122                 } // END - foreach
123         } // END - if
124
125         // Run the run_sqls filter in non-dry mode
126         runFilterChain('run_sqls');
127
128         // Should we rebuild cache?
129         if (($inserted > 0) || ($removed > 0)) {
130                 // Destroy cache
131                 rebuildCache('filter', 'filter');
132         } // END - if
133 }
134
135 // Filter for calling the handler for login failures
136 function FILTER_CALL_HANDLER_LOGIN_FAILTURES ($data) {
137         // Init content
138         $content = $data;
139
140         // Handle failed logins here if not in guest
141         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "type=".$data['type'].",action=".getAction().",what=".getWhat().",level=".$data['access_level']."<br />");
142         if ((($data['type'] == 'what') || ($data['type'] == 'action') && ((!isWhatSet()) || (getWhat() == 'overview') || (getWhat() == getConfig('index_home')))) && ($data['access_level'] != 'guest') && ((isExtensionInstalledAndNewer('sql_patches', '0.4.7')) || (isExtensionInstalledAndNewer('admins', '0.7.0')))) {
143                 // Handle failure
144                 $content['content'] .= handleLoginFailures($data['access_level']);
145         } // END - if
146
147         // Return the content
148         return $content;
149 }
150
151 // Filter for redirecting to logout if sql_patches has been installed
152 function FILTER_REDIRECT_TO_LOGOUT_SQL_PATCHES () {
153         // Remove this filter
154         unregisterFilter(__FUNCTION__, __LINE__, 'shutdown', __FUNCTION__);
155
156         // Is the element set?
157         if (isset($GLOBALS['ext_load_mode'])) {
158                 // Redirect here
159                 redirectToUrl('modules.php?module=admin&amp;logout=1&amp;' . $GLOBALS['ext_load_mode'] . '=sql_patches');
160         } // END - if
161
162         // This should not happen!
163         logDebugMessage(__FUNCTION__, __LINE__, 'Cannot auto-logout because no extension load-mode has been set.');
164 }
165
166 // Filter for auto-activation of a extension
167 function FILTER_AUTO_ACTIVATE_EXTENSION ($data) {
168         // Is this extension always activated?
169         if (isExtensionAlwaysActive()) {
170                 // Then activate the extension
171                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "ext_name={$data['ext_name']}<br />");
172                 doActivateExtension($data['ext_name']);
173         } // END - if
174
175         // Return the data
176         return $data;
177 }
178
179 // Filter for solving task given task
180 function FILTER_SOLVE_TASK ($data) {
181         // Don't solve anything if no admin!
182         if (!isAdmin()) return $data;
183
184         // Is this a direct task id or array element task_id is found?
185         if (is_int($data)) {
186                 // Then solve it...
187                 adminSolveTask($data);
188         } elseif ((is_array($data)) && (isset($data['task_id']))) {
189                 // Solve it...
190                 adminSolveTask($data['task_id']);
191         } else {
192                 // Not detectable!
193                 debug_report_bug(__FUNCTION__, __LINE__, sprintf("Cannot resolve task. data[%s]=<pre>%s</pre>", gettype($data), print_r($data, true)));
194         }
195
196         // Return the data
197         return $data;
198 }
199
200 // Filter to load include files
201 function FILTER_LOAD_INCLUDES ($pool) {
202         // Is it null?
203         if (is_null($pool)) {
204                 // This should not happen!
205                 debug_report_bug(__FUNCTION__, __LINE__, 'pool is null.');
206         } // END - if
207
208         // Is the pool an array and 'pool' set?
209         if ((is_array($pool)) && (isset($pool['pool']))) {
210                 // Then use it as pool
211                 $realPool = $pool['pool'];
212         } else {
213                 // Default is $data as inclusion list
214                 $realPool = $pool;
215         }
216
217         // Get inc pool
218         $data = getIncludePool($realPool);
219
220         // Is it an array?
221         if ((!isset($data)) || (!is_array($data))) {
222                 // Then abort here
223                 debug_report_bug(__FUNCTION__, __LINE__, sprintf("INC_POOL is no array! Type: %s", gettype($data)));
224         } elseif (isset($data['inc_pool'])) {
225                 // Use this as new inclusion pool!
226                 setIncludePool($realPool, $data['inc_pool']);
227         }
228
229         // Check for added include files
230         if (countIncludePool($realPool) > 0) {
231                 // Loads every include file
232                 loadIncludePool($realPool);
233
234                 // Reset array
235                 initIncludePool($realPool);
236         } // END - if
237
238         // Continue with processing
239         return $pool;
240 }
241
242 // Filter for running SQL commands
243 function FILTER_RUN_SQLS ($data) {
244         // Debug message
245         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "- Entered!");
246
247         // Is the array there?
248         if ((isSqlsValid()) && ((!isset($data['dry_run'])) || ($data['dry_run'] == false))) {
249                 // Run SQL commands
250                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "- Found ".countSqls()." queries to run.");
251                 foreach (getSqls() as $sqls) {
252                         // New cache format...
253                         foreach ($sqls as $sql) {
254                                 // Trim spaces away
255                                 $sql = trim($sql);
256
257                                 // Is there still a query left?
258                                 if (!empty($sql)) {
259                                         // Do we have an "ALTER TABLE" command?
260                                         if (substr(strtolower($sql), 0, 11) == 'alter table') {
261                                                 // Analyse the alteration command
262                                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Alterting table: {$sql}");
263                                                 SQL_ALTER_TABLE($sql, __FUNCTION__, __LINE__);
264                                         } else {
265                                                 // Run regular SQL command
266                                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Running regular query: {$sql}");
267                                                 SQL_QUERY($sql, __FUNCTION__, __LINE__, false);
268                                         }
269                                 } // END - if
270                         } // END - foreach
271                 } // END - foreach
272         } // END - if
273
274         // Debug message
275         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "- Left!");
276 }
277
278 // Filter for updating/validating login data
279 function FILTER_UPDATE_LOGIN_DATA () {
280         // Add missing array
281         if ((!isset($GLOBALS['last_online'])) || (!is_array($GLOBALS['last_online']))) $GLOBALS['last_online'] = array();
282
283         // Recheck if logged in
284         if (!isMember()) return false;
285
286         // Secure user id
287         setMemberId(getSession('userid'));
288
289         // Found a userid?
290         if (fetchUserData(getMemberId())) {
291                 // Load last module and online time
292                 $content = getUserDataArray();
293
294                 // Maybe first login time?
295                 if (empty($content['last_module'])) $content['last_module'] = 'login';
296
297                 // This will be displayed on welcome page! :-)
298                 if (empty($GLOBALS['last_online']['module'])) {
299                         $GLOBALS['last_online']['module'] = $content['last_module'];
300                         $GLOBALS['last_online']['online'] = $content['last_online'];
301                 } // END - if
302
303                 // 'what' not set?
304                 if (!isWhatSet()) {
305                         // Fix it to default
306                         setWhat('welcome');
307                         if (getConfig('index_home') != '') setWhatFromConfig('index_home');
308                 } // END - if
309
310                 // Update last module / online time
311                 updateLastActivity(getMemberId());
312         }  else {
313                 // Destroy session, we cannot update!
314                 destroyMemberSession();
315         }
316 }
317
318 // Filter for initializing randomizer
319 function FILTER_INIT_RANDOMIZER () {
320         // Only execute this filter if installed
321         if ((!isInstalled()) || (!isExtensionInstalledAndNewer('other', '0.2.5'))) return;
322
323         // Take a prime number which is long (if you know a longer one please try it out!)
324         setConfigEntry('_PRIME', 591623);
325
326         // Calculate "entropy" with the prime number (for code generation)
327         setConfigEntry('_ADD', (getPrime() * getPrime() / (pi() * getConfig('code_length') + 1)));
328
329         // Simply init the randomizer with seed and _ADD value
330         mt_srand(generateSeed() + getConfig('_ADD'));
331 }
332
333 // Filter for removing updates
334 function FILTER_REMOVE_UPDATES ($data) {
335         // Init removal list
336         initExtensionRemovalList();
337
338         // Add the current extension to it
339         addCurrentExtensionToRemovalList();
340
341         // Simply remove it
342         unsetExtensionSqls();
343
344         // Do we need to remove update depency?
345         if (countExtensionUpdateDependencies() > 0) {
346                 // Then find all updates we shall no longer execute
347                 foreach (getExtensionUpdateDependencies() as $id => $ext_name) {
348                         // Shall we remove this update?
349                         if (in_array($ext_name, getExtensionRemovalList())) {
350                                 // Then remove this extension!
351                                 removeExtensionUpdateDependency($ext_name);
352                         } // END - if
353                 } // END - foreach
354         } // END - if
355
356         // Return data
357         return $data;
358 }
359
360 // Determines username for current user state
361 function FILTER_DETERMINE_USERNAME () {
362         // Check if logged in
363         if (isMember()) {
364                 // Is still logged in so we welcome him with his name
365                 if (fetchUserData(getMemberId())) {
366                         // Load surname and family's name and build the username
367                         $content = getUserDataArray();
368
369                         // Prepare username
370                         setUsername($content['surname'] . ' ' . $content['family']);
371
372                         // Additionally admin?
373                         if (isAdmin()) {
374                                 // Add it
375                                 setUsername(getUsername() . ' ({--USERNAME_ADMIN_SHORT--})');
376                         } // END - if
377                 } else {
378                         // Hmmm, logged in and no valid userid?
379                         setUsername('<em>{--USERNAME_UNKNOWN--}</em>');
380
381                         // Destroy session
382                         destroyMemberSession();
383                 }
384         } elseif (isAdmin()) {
385                 // Admin is there
386                 setUsername('{--USERNAME_ADMIN--}');
387         } else {
388                 // He's a guest, hello there... ;-)
389                 setUsername('{--USERNAME_GUEST--}');
390         }
391 }
392
393 // Filter for compiling config entries
394 function FILTER_COMPILE_CONFIG ($code, $compiled = false) {
395         // Save the uncompiled code
396         $uncompiled = $code;
397
398         // Do we have cache?
399         if (!isset($GLOBALS['compiled_config'][$code])) {
400                 // Compile {?some_var?} to getConfig('some_var')
401                 preg_match_all('/\{\?(([a-zA-Z0-9-_]+)*)\?\}/', $code, $matches);
402
403                 // Some entries found?
404                 if ((count($matches) > 0) && (count($matches[0]) > 0)) {
405                         // Replace all matches
406                         foreach ($matches[0] as $key => $match) {
407                                 // Do we have cache?
408                                 if (!isset($GLOBALS['compile_config'][$matches[1][$key]])) {
409                                         // Is the config valid?
410                                         if (isConfigEntrySet($matches[1][$key])) {
411                                                 // Set it for caching
412                                                 $GLOBALS['compile_config'][$matches[1][$key]] = '{%config=' . $matches[1][$key] . '%}';
413                                         } elseif (isConfigEntrySet('default_' . strtoupper($matches[1][$key]))) {
414                                                 // Use default value
415                                                 $GLOBALS['compile_config'][$matches[1][$key]] = '{%config=' . 'DEFAULT_' . strtoupper($matches[1][$key]) . '%}';
416                                         } elseif (isMessageIdValid('DEFAULT_' . strtoupper($matches[1][$key]))) {
417                                                 // No config, try the language system
418                                                 $GLOBALS['compile_config'][$matches[1][$key]] = '{%message,DEFAULT_' . strtoupper($matches[1][$key]) . '%}';
419                                         } else {
420                                                 // Unhandled!
421                                                 $GLOBALS['compile_config'][$matches[1][$key]] = '!' . $matches[1][$key] . '!';
422                                         }
423                                 } // END - if
424
425                                 // Use this for replacing
426                                 $code = str_replace($match, $GLOBALS['compile_config'][$matches[1][$key]], $code);
427                                 //* DEBUG: */ if (($match == '{?URL?}') && (strlen($code) > 10000)) die(__FUNCTION__.'['.__LINE__.']:<pre>'.secureString($code).'</pre>');
428                         } // END - foreach
429                 } // END - if
430
431                 // Add it to cache
432                 $GLOBALS['compiled_config'][$uncompiled] = $code;
433         } // END - if
434
435         // Should we compile it?
436         if ($compiled === true) {
437                 // Run the code
438                 $eval = "\$GLOBALS['compiled_config'][\$uncompiled] = \"" . $GLOBALS['compiled_config'][$uncompiled] . '";';
439                 //* DEBUG: */ debugOutput(__FUNCTION__.'['.__LINE__.']:<pre>' . encodeEntities($eval) . '</pre>');
440                 eval($eval);
441         } // END - if
442
443         // Return compiled code
444         return $GLOBALS['compiled_config'][$uncompiled];
445 }
446
447 // Filter for compiling expression code
448 function FILTER_COMPILE_EXPRESSION_CODE ($code) {
449         // Compile {%cmd,callback,extraFunction=some_value%} to get expression code snippets
450         // See switch() command below for supported commands
451         preg_match_all('/\{%(([a-zA-Z0-9-_,]+)(=([^\}]+)){0,1})*%\}/', $code, $matches);
452         //* DEBUG: */ debugOutput(__FUNCTION__.'['.__LINE__.']:<pre>'.print_r($matches, true).'</pre>');
453
454         // Default is from outputHtml()
455         $outputMode = getScriptOutputMode();
456
457         // Some entries found?
458         if ((count($matches) > 0) && (count($matches[3]) > 0)) {
459                 // Replace all matches
460                 foreach ($matches[2] as $key => $cmd) {
461                         // Init replacer/call-back variable
462                         $replacer       = '';
463                         $callback       = '';
464                         $extraFunction  = '';
465                         $extraFunction2 = '';
466                         $value          = '';
467
468                         // Extract command and call-back
469                         $cmdArray = explode(',', $cmd);
470                         $cmd = $cmdArray[0];
471
472                         // Detect call-back function
473                         if (isset($cmdArray[1])) {
474                                 // Call-back function detected
475                                 $callback = $cmdArray[1];
476                         } // END - if
477
478                         // Detect extra function
479                         if (isset($cmdArray[2])) {
480                                 // Also detected
481                                 $extraFunction = $cmdArray[2];
482                         } // END - if
483
484                         // Detect extra function 2
485                         if (isset($cmdArray[3])) {
486                                 // Also detected
487                                 $extraFunction2 = $cmdArray[3];
488                         } // END - if
489
490                         // And value
491                         if (isset($matches[4][$key])) {
492                                 // Use this as value
493                                 $value = $matches[4][$key];
494                         } // END - if
495
496                         // Construct call-back function name for the command
497                         $commandFunction = 'doExpression' . ucfirst(strtolower($cmd));
498
499                         // Is this function there?
500                         if (function_exists($commandFunction)) {
501                                 // Prepare $matches, $key, $outputMode, etc.
502                                 $data = array(
503                                         'matches'     => $matches,
504                                         'key'         => $key,
505                                         'mode'        => $outputMode,
506                                         'code'        => $code,
507                                         'callback'    => $callback,
508                                         'extra_func'  => $extraFunction,
509                                         'extra_func2' => $extraFunction2,
510                                         'value'       => $value
511                                 );
512
513                                 // Call it
514                                 //* DEBUG: */ debugOutput(__FUNCTION__ . '[' . __LINE__ . ']: function=' . $commandFunction);
515                                 $code = call_user_func($commandFunction, $data);
516                         } else {
517                                 // Unsupported command detected
518                                 debug_report_bug(__FUNCTION__, __LINE__, 'Command=' . $cmd . ', callback=' . $callback . ', extra=' . $extraFunction . ' is unsupported.');
519                         }
520                 } // END - foreach
521         } // END - if
522
523         // Do we have non-HTML mode?
524         if ((getScriptOutputMode() != '0') || ($outputMode != '0')) $code = decodeEntities($code);
525
526         // Return compiled code
527         //* DEBUG: */ debugOutput(__FUNCTION__.'['.__LINE__.']:<pre>'.($code).'</pre>');
528         return $code;
529 }
530
531 // Runs some generic filter update steps
532 function FILTER_UPDATE_EXTENSION_DATA ($ext_name) {
533         // Create task (we ignore the task id here)
534         createExtensionUpdateTask(getCurrentAdminId(), $ext_name, $GLOBALS['update_ver'][$ext_name], SQL_ESCAPE(getExtensionNotes(getExtensionNotes())));
535
536         // Update extension's version
537         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_extensions` SET `ext_version`='%s' WHERE `ext_name`='%s' LIMIT 1",
538                 array($GLOBALS['update_ver'][$ext_name], $ext_name), __FUNCTION__, __LINE__);
539
540         // Remove arrays
541         unsetSqls();
542         unset($GLOBALS['update_ver'][$ext_name]);
543 }
544
545 // Load more reset scripts
546 function FILTER_RUN_RESET_INCLUDES () {
547         // Is the reset set or old sql_patches?
548         if (((!isResetModeEnabled()) || (!isExtensionInstalled('sql_patches'))) && (getScriptOutputMode() == '0')) {
549                 // Then abort here
550                 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot run reset! enabled='.intval(isResetModeEnabled()).',ext='.intval(isExtensionInstalled('sql_patches')).' Please report this bug. Thanks');
551         } // END - if
552
553         // Get more daily reset scripts
554         setIncludePool('reset', getArrayFromDirectory('inc/reset/', 'reset_'));
555
556         // Update database
557         if ((!isConfigEntrySet('DEBUG_RESET')) || (getConfig('DEBUG_RESET') != 'Y')) updateConfiguration('last_update', 'UNIX_TIMESTAMP()');
558
559         // Is the config entry set?
560         if (isExtensionInstalledAndNewer('sql_patches', '0.4.2')) {
561                 // Create current week mark
562                 $currWeek = getWeek();
563
564                 // Has it changed?
565                 if ((getConfig('last_week') != $currWeek) || (isWeeklyResetDebugEnabled())) {
566                         // Include weekly reset scripts
567                         mergeIncludePool('reset', getArrayFromDirectory('inc/weekly/', 'weekly_'));
568
569                         // Update config if not in debug mode
570                         if (!isWeeklyResetDebugEnabled()) updateConfiguration('last_week', $currWeek);
571                 } // END - if
572
573                 // Create current month mark
574                 $currMonth = getMonth();
575
576                 // Has it changed?
577                 if ((getConfig('last_month') != $currMonth) || (isMonthlyResetDebugEnabled())) {
578                         // Include monthly reset scripts
579                         mergeIncludePool('reset', getArrayFromDirectory('inc/monthly/', 'monthly_'));
580
581                         // Update config
582                         if (!isMonthlyResetDebugEnabled()) updateConfiguration('last_month', $currMonth);
583                 } // END - if
584         } // END - if
585
586         // Run the filter
587         runFilterChain('load_includes', 'reset');
588 }
589
590 // Filter for removing the given extension
591 function FILTER_REMOVE_EXTENSION () {
592         // Delete this extension (remember to remove it from your server *before* you click on welcome!
593         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_extensions` WHERE `ext_name`='%s' LIMIT 1",
594                 array(getCurrentExtensionName()), __FUNCTION__, __LINE__);
595
596         // Remove the extension from cache array as well
597         removeExtensionFromArray();
598
599         // Remove the cache
600         rebuildCache('extension', 'extension');
601 }
602
603 // Filter for flushing the output
604 function FILTER_FLUSH_OUTPUT () {
605         // Simple, he?
606         outputHtml('');
607 }
608
609 // Prepares an SQL statement part for HTML mail and/or holiday depency
610 function FILTER_HTML_INCLUDE_USERS ($mode) {
611         // Exclude no users by default
612         $MORE = '';
613
614         // HTML mail?
615         if ($mode == 'html') $MORE = " AND `html`='Y'";
616         if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
617                 // Add something for the holiday extension
618                 $MORE .= " AND `holiday_active`='N'";
619         } // END - if
620
621         // Return result
622         return $MORE;
623 }
624
625 // Filter for determining what/action/module
626 function FILTER_DETERMINE_WHAT_ACTION () {
627         // In installation phase we don't have what/action
628         if (isInstallationPhase()) {
629                 // Set both to empty
630                 setAction('');
631                 setWhat('');
632
633                 // Abort here
634                 return;
635         } // END - if
636
637         // Get all values
638         if ((getScriptOutputMode() != 1) && (getScriptOutputMode() != -1)) {
639                 // Fix module
640                 if (!isModuleSet()) {
641                         // Is the request element set?
642                         if (isGetRequestParameterSet('module')) {
643                                 // Set module from request
644                                 setModule(getRequestParameter('module'));
645                         } elseif (getScriptOutputMode() == '0') {
646                                 // Set default module 'index'
647                                 setModule('index');
648                         } else {
649                                 // Unknown module
650                                 setModule('unknown');
651                         }
652                 } // END - if
653
654                 // Fix 'what' if not yet set
655                 if (!isWhatSet())   setWhat(getWhatFromModule(getModule()));
656
657                 // Fix 'action' if not yet set
658                 if (!isActionSet()) setAction(getActionFromModuleWhat(getModule(), getWhat()));
659         } else {
660                 // Set action/what to empty
661                 setAction('');
662                 setWhat('');
663         }
664
665         // Set default 'what' value
666         //* DEBUG: */ debugOutput('-' . getModule() . '/' . getWhat() . '-');
667         if ((!isWhatSet()) && (!isActionSet()) && (getScriptOutputMode() != 1) && (getScriptOutputMode() != -1)) {
668                 if (getModule() == 'admin') {
669                         // Set 'action' value to 'login' in admin menu
670                         setAction(getActionFromModuleWhat(getModule(), getWhat()));
671                 } elseif ((getModule() == 'index') || (getModule() == 'login')) {
672                         // Set 'what' value to 'welcome' in guest and member menu
673                         setWhatFromConfig('index_home');
674                 } else {
675                         // Anything else like begging link
676                         setWhat('');
677                 }
678         } // END - if
679 }
680
681 // Sends out pooled mails
682 function FILTER_TRIGGER_SENDING_POOL () {
683         // Are we in normal output mode?
684         if (getScriptOutputMode() != 0) {
685                 // Only in normal output mode to prevent race-conditons!
686         } // END - if
687
688         // Init counter
689         $GLOBALS['pool_cnt'] = '0';
690
691         // Init & set the include pool
692         initIncludePool('pool');
693         setIncludePool('pool', getArrayFromDirectory('inc/pool/', 'pool-'));
694
695         // Run the filter
696         runFilterChain('load_includes', 'pool');
697
698         // Remove the counter
699         unset($GLOBALS['pool_cnt']);
700 }
701
702 // Filter for checking and updating SVN revision
703 function FILTER_CHECK_SVN_REVISION () {
704         // Only execute this filter if installed and all config entries are there
705         if ((!isInstalled()) || (!isConfigEntrySet('patch_level'))) return;
706
707         // Check for patch level differences between databases and current hard-coded
708         if ((getCurrSvnRevision() > getConfig('patch_level')) || (getConfig('patch_level') == 'CURR_SVN_REVISION') || (getConfig('patch_ctime') == 'UNIX_TIMES')) {
709                 // Update database and CONFIG array
710                 updateConfiguration(array('patch_level', 'patch_ctime'), array(getCurrSvnRevision(), 'UNIX_TIMESTAMP()'));
711                 setConfigEntry('patch_level', getCurrSvnRevision());
712                 setConfigEntry('patch_ctime', time());
713         } // END - if
714 }
715
716 // Filter for running daily reset
717 function FILTER_RUN_DAILY_RESET () {
718         // Only execute this filter if installed
719         if ((isInstallationPhase()) || (!isInstalled()) || (!isAdminRegistered()) || (!isExtensionInstalled('sql_patches'))) return;
720
721         // Shall we run the reset scripts? If a day has changed, maybe also a week/month has changed... Simple! :D
722         if (((getDay(getConfig('last_update')) != getDay()) || ((isConfigEntrySet('DEBUG_RESET')) && (getConfig('DEBUG_RESET') == 'Y'))) && (!isInstallationPhase()) && (isAdminRegistered()) && (!isGetRequestParameterSet('register')) && (getScriptOutputMode() != 1)) {
723                 // Tell every module we are in reset-mode!
724                 doReset();
725         } // END - if
726 }
727
728 // Filter for loading more runtime includes (not for installation)
729 function FILTER_LOAD_RUNTIME_INCLUDES () {
730         // Load more includes
731         foreach (array('inc/databases.php','inc/session.php','inc/versions.php') as $inc) {
732                 // Load the include
733                 loadIncludeOnce($inc);
734         } // END - foreach
735 }
736
737 // Filter for checking admin ACL
738 function FILTER_CHECK_ADMIN_ACL () {
739         // Extension not installed so it's always allowed to access everywhere!
740         $ret = true;
741
742         // Ok, Cookie-Update done
743         if ((isExtensionInstalledAndNewer('admins', '0.3.0')) && (isExtensionActive('admins'))) {
744                 // Check if action GET variable was set
745                 $action = getAction();
746                 if (isWhatSet()) {
747                         // Get action value by what-value
748                         $action = getActionFromModuleWhat('admin', getWhat());
749                 } // END - if
750
751                 // Check for access control line of current menu entry
752                 $ret = adminsCheckAdminAcl($action, getWhat());
753         } // END - if
754
755         // Set it here
756         $GLOBALS['acl_allow'] = $ret;
757 }
758
759 // Init random number/cache buster
760 function FILTER_INIT_RANDOM_NUMBER () {
761         // Is the extension sql_patches installed and at least 0.3.6?
762         if ((isExtensionInstalledAndNewer('sql_patches', '0.3.6')) && (isExtensionInstalledAndNewer('other', '0.2.5'))) {
763                 // Generate random number
764                 setConfigEntry('RAND_NUMBER', generateRandomCode(10, mt_rand(10000, 32766), getMemberId(), ''));
765         } else {
766                 // Generate weak (!!!) code
767                 setConfigEntry('RAND_NUMBER', mt_rand(1000000, 9999999));
768         }
769
770         // Copy it to CACHE_BUSTER
771         setConfigEntry('CACHE_BUSTER', getConfig('RAND_NUMBER'));
772 }
773
774 // Update module counter
775 function FILTER_COUNT_MODULE () {
776         // Do count all other modules but not accesses on CSS file css.php!
777         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `clicks`=`clicks`+1 WHERE `module`='%s' LIMIT 1",
778                 array(getModule()), __FUNCTION__, __LINE__);
779 }
780
781 // Handles fatal errors
782 function FILTER_HANDLE_FATAL_ERRORS () {
783         // Do we have errors to handle and right output mode?
784         if ((!ifFatalErrorsDetected()) || (getScriptOutputMode() != '0')) {
785                 // Abort executing here
786                 return false;
787         } // END - if
788
789         // Set content type
790         setContentType('text/html');
791
792         // Load config here
793         loadIncludeOnce('inc/load_config.php');
794
795         // Set unset variable
796         if (empty($check)) $check = '';
797
798         // Default is none
799         $content = '';
800
801         // Installation phase or regular mode?
802         if ((isInstallationPhase())) {
803                 // While we are installing ouput other header than while it is installed... :-)
804                 $OUT = '';
805                 foreach (getFatalArray() as $key => $value) {
806                         // Prepare content for the template
807                         $content = array(
808                                 'key'   => ($key + 1),
809                                 'value' => $value
810                         );
811
812                         // Load row template
813                         $OUT .= loadTemplate('install_fatal_row', true, $content);
814                 }
815
816                 // Load main template
817                 $content = loadTemplate('install_fatal_table', true, $OUT);
818         } elseif (isInstalled()) {
819                 // Display all runtime fatal errors
820                 $OUT = '';
821                 foreach (getFatalArray() as $key => $value) {
822                         // Prepare content for the template
823                         $content = array(
824                                 'key'   => ($key + 1),
825                                 'value' => $value
826                         );
827
828                         // Load row template
829                         $OUT .= loadTemplate('runtime_fatal_row', true, $content);
830                 }
831
832                 // Load main template
833                 $content = loadTemplate('runtime_fatal_table', true, $OUT);
834         }
835
836         // Message to regular users (non-admin)
837         $CORR = '{--FATAL_REPORT_ERRORS--}';
838
839         // PHP warnings fixed
840         if ($check == 'done') {
841                 if (isAdmin()) $CORR = '{--FATAL_CORRECT_ERRORS--}';
842         } // END - if
843
844         // Remember all in array
845         $content = array(
846                 'rows' => $content,
847                 'corr' => $CORR
848         );
849
850         // Load footer
851         loadIncludeOnce('inc/header.php');
852
853         // Load main template
854         loadTemplate('fatal_errors', false, $content);
855
856         // Delete all to prevent double-display
857         initFatalMessages();
858
859         // Load footer
860         loadIncludeOnce('inc/footer.php');
861
862         // Abort here
863         shutdown();
864 }
865
866 // Filter for displaying copyright line
867 function FILTER_DISPLAY_COPYRIGHT () {
868         // Shall we display the copyright notice?
869         if ((!isGetRequestParameterSet('frame')) && (basename($_SERVER['PHP_SELF']) != 'mailid_top.php') && ((getConfig('WRITE_FOOTER') == 'Y') || (isInstalling())) && ($GLOBALS['header_sent'] == 2)) {
870                 // Backlink enabled?
871                 if (((isConfigEntrySet('ENABLE_BACKLINK')) && (getConfig('ENABLE_BACKLINK') == 'Y')) || (isInstalling())) {
872                         // Copyright with backlink, thanks! :-)
873                         $GLOBALS['page_footer'] .= loadTemplate('copyright_backlink', true);
874                 } else {
875                         // No backlink in Copyright note
876                         $GLOBALS['page_footer'] .= loadTemplate('copyright', true);
877                 }
878         } // END - if
879 }
880
881 // Filter for displaying parsing time
882 function FILTER_DISPLAY_PARSING_TIME () {
883         // Shall we display the parsing time and number of queries?
884         // 1234                            5                      54    4         5              5       4    4                       5       543    3                   4432    2             33     2    2                              21
885         if ((((isExtensionInstalledAndNewer('sql_patches', '0.4.1')) && (getConfig('show_timings') == 'Y') && (!isGetRequestParameterSet('frame'))) || (isInstallationPhase())) && (getScriptOutputMode() == '0') && ($GLOBALS['header_sent'] == 2)) {
886                 // Then display it here
887                 displayParsingTime();
888         } // END - if
889 }
890
891 // Filter for flushing template cache
892 function FILTER_FLUSH_TEMPLATE_CACHE () {
893         // Do not flush when debugging the template cache
894         if (isDebuggingTemplateCache()) return;
895
896         // Do we have cached eval() data?
897         if ((isset($GLOBALS['template_eval'])) && (count($GLOBALS['template_eval']) > 0)) {
898                 // Now flush all
899                 foreach ($GLOBALS['template_eval'] as $template => $eval) {
900                         // Flush the cache (if not yet found)
901                         flushTemplateCache($template, $eval);
902                 } // END - if
903         } // END - if
904 }
905
906 // Filter for loading user data
907 function FILTER_FETCH_USER_DATA ($userid = 0) {
908         // Is the userid not set? Then use member id
909         if (($userid == '0') || (is_null($userid))) $userid = getMemberId();
910
911         // Get user data
912         if (!fetchUserData($userid)) {
913                 // Userid is not valid
914                 debug_report_bug(__FUNCTION__, __LINE__, 'User id '.$userid . ' is invalid.');
915         } // END - if
916
917         // Set member id
918         setMemberId($userid);
919 }
920
921 // Filter for reseting users' last login failure, only available with latest ext-sql_patches
922 function FILTER_RESET_USER_LOGIN_FAILURE () {
923         // Is the user data valid?
924         if (!isMember()) {
925                 // Do only run for logged in members
926                 debug_report_bug(__FUNCTION__, __LINE__, 'Please only run this filter for logged in users.');
927         } // END - if
928
929         // Remmeber login failures if available
930         if (isExtensionInstalledAndNewer('sql_patches', '0.6.1')) {
931                 // Reset login failures
932                 SQL_QUERY_ESC("UPDATE
933         `{?_MYSQL_PREFIX?}_user_data`
934 SET
935         `login_failures`=0,
936         `last_failure`='0000-00-00 00:00:00'
937 WHERE
938         `userid`=%s
939 LIMIT 1",
940                         array(getMemberId()), __FUNCTION__, __LINE__);
941
942                 // Store it in session
943                 setSession('mailer_member_failures' , getUserData('login_failures'));
944                 setSession('mailer_member_last_failure', getUserData('last_failure'));
945         } // END - if
946 }
947
948 // Try to login the admin by setting some session/cookie variables
949 function FILTER_DO_LOGIN_ADMIN ($data) {
950         // Now set all session variables and store the result for later processing
951         $GLOBALS['admin_login_success'] = ((
952                 setSession('admin_md5', encodeHashForCookie($data['pass_hash']))
953         ) && (
954                 setSession('admin_id', $data['id'])
955         ) && (
956                 setSession('admin_last', time())
957         ));
958
959         // Return the data for further processing
960         return $data;
961 }
962
963 // Filter for loading page header, this should be ran first!
964 function FILTER_LOAD_PAGE_HEADER () {
965         // Determine the page title
966         $content['header_title'] = determinePageTitle();
967
968         // Output page header code
969         $GLOBALS['page_header'] = loadTemplate('page_header', true, $content);
970
971         // Include meta data in 'guest' module
972         if (getModule() == 'index') {
973                 // Load meta data template
974                 $GLOBALS['page_header'] .= loadTemplate('metadata', true);
975
976                 // Add meta description to header
977                 if ((isInstalled()) && (isAdminRegistered()) && (SQL_IS_LINK_UP())) {
978                         // Add meta description not in admin and login module and when the script is installed
979                         generateMetaDescriptionCode();
980                 } // END - if
981         } // END - if
982 }
983
984 // Filter for adding style sheet, closing page header
985 function FILTER_FINISH_PAGE_HEADER () {
986         // Include stylesheet
987         loadIncludeOnce('inc/stylesheet.php');
988
989         // Closing HEAD tag
990         $GLOBALS['page_header'] .= '</head>';
991 }
992
993 // Cleans up the DNS cache if sql_patches is at least 0.7.0
994 function FILTER_CLEANUP_DNS_CACHE () {
995         // Is the latest version installed?
996         if (isExtensionInstalledAndNewer('sql_patches', '0.7.0')) {
997                 // Load class file
998                 loadIncludeOnce('inc/classes/resolver.class.php');
999
1000                 // Instance the resolver
1001                 $resolver = new HostnameResolver();
1002
1003                 // Purge entries
1004                 $resolver->purgeEntries();
1005
1006                 // Cute, isn't it? ;-)
1007         } // END - if
1008 }
1009
1010 // [EOF]
1011 ?>