mailer project continued:
[mailer.git] / inc / filter / beg_filter.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/11/2012 *
4  * ===================                          Last change: 06/11/2012 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : beg_filter.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Filters for ext-                                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Filter fuer ext-                                 *
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 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://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 // Filter for adding SQL columns if notification is disabled
44 function FILTER_BEG_RALLYE_USER_REGISTRATION_ADD_SQL_COLUMNS ($filterData) {
45         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
46
47         // Add columns for begging rallye, if active
48         if (!isBegNewMemberNotifyEnabled()) {
49                 $GLOBALS['register_sql_columns'] .= ', `beg_rallye_enable_notify`, `beg_rallye_disable_notify`';
50                 $GLOBALS['register_sql_data']    .= ', UNIX_TIMESTAMP(), UNIX_TIMESTAMP()';
51         } // END - if
52
53         // Return filter data
54         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
55         //* NOISY-DEBUG: */ print __FUNCTION__.':filterData=<pre>'.print_r($filterData,true).'</pre>';
56         return $filterData;
57 }
58
59 // Filter for removing old IPs and sending notifications, if enabled for "instant delivery"
60 function FILTER_BEG_PURGE_IPS_NOTIFY_USER ($filterData) {
61         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
62
63         // Remove old entries
64         $OLD = getBegTimeout();
65         if (getBegUseridTimeout() > $OLD) {
66                 $OLD = getBegUseridTimeout();
67         } // END - if
68
69         // Run the SQL query
70         SQL_QUERY_ESC('DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_beg_ips` WHERE (UNIX_TIMESTAMP() - `timeout`) >= %s',
71                 array($OLD + 60*60), __FUNCTION__, __LINE__);
72
73         // Check for beg rallye is active and send mails out
74         if ((isBegRallyeEnabled()) && (isBegNewMemberNotifyEnabled())) {
75                 // Include file for sending out mails
76                 addIncludeToPool('notify', 'inc/mails/beg_mails.php');
77         } // END - if
78
79         // Return filter data
80         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
81         return $filterData;
82 }
83
84 // [EOF]
85 ?>