Heavy rewrite:
[mailer.git] / inc / autopurge / purge-inact.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/14/2008 *
4  * ===============                              Last change: 09/14/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : purge-inactive.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : Purge of inactive users                          *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auto-Loeschung von inaktiven Mitgliedern         *
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 } // END - if
44
45 // Abort if autopurge is not active or disabled by admin
46 if ((!EXT_IS_ACTIVE('autopurge')) || (getConfig('auto_purge_active') != 'Y')) {
47         // Abort here
48         return false;
49 } // END - if
50
51 // Shall I look for inactive accounts and autopurge inactive accounts?
52 if (getConfig('autopurge_inactive') == 'Y') {
53         // Init SQLs
54         INIT_SQLS();
55
56         // Init exclusion list
57         $EXCLUDE_LIST = '';
58         if (getConfig('def_refid') > 0) {
59                 $EXCLUDE_LIST = " AND d.userid != ".getConfig('def_refid');
60         } // END - if
61
62         // Check for more extensions
63         if (EXT_IS_ACTIVE('beg'))     $EXCLUDE_LIST .= " AND d.userid != ".getConfig('beg_uid')."";
64         if (EXT_IS_ACTIVE('bonus'))   $EXCLUDE_LIST .= " AND d.userid != ".getConfig('bonus_uid')."";
65         if (EXT_IS_ACTIVE('doubler')) $EXCLUDE_LIST .= " AND d.userid != ".getConfig('doubler_uid')."";
66
67         // Check for new holiday extension
68         if (GET_EXT_VERSION('holiday') >= '0.1.3') {
69                 // Include only users with no active holiday
70                 $EXCLUDE_LIST .= " AND d.`holiday_active`='N'";
71         } // END - if
72
73         // Check for all accounts
74         $result_inactive = SQL_QUERY_ESC("SELECT DISTINCT d.userid, d.email, d.last_online
75 FROM `{!_MYSQL_PREFIX!}_user_data` AS d
76 WHERE d.`status`='CONFIRMED' AND d.joined < (UNIX_TIMESTAMP() - %s) AND d.last_online < (UNIX_TIMESTAMP() - %s) AND d.ap_notified < (UNIX_TIMESTAMP() - %s)
77 ".$EXCLUDE_LIST."
78 ORDER BY d.userid",
79                 array(,
80                         getConfig('ap_inactive_since'),
81                         getConfig('ap_inactive_since'),
82                         getConfig('ap_inactive_since')
83                 ), __FILE__, __LINE__);
84
85         if (SQL_NUMROWS($result_inactive) > 0) {
86                 // Prepare variables and constants...
87                 $UIDs = '';
88                 define('__INACTIVE_SINCE', (getConfig('ap_inactive_since') / 60 / 60));
89                 define('__INACTIVE_TIME' , (getConfig('ap_in_time')  / 60 / 60));
90
91                 // Mark found accounts as inactive and send an email
92                 while ($content = SQL_FETCHARRAY($result_inactive)) {
93                         // Remember userids for the admin
94                         $UIDs .= $content['userid'].", ";
95
96                         // Get date/time from timestamp
97                         $content['last_online'] = generateDateTime($content['last_online'], '0');
98
99                         // Load mail template
100                         $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_inactive", $content['last_online'], bigintval($content['userid']));
101                         sendEmail($content['email'], getMessage('AUTOPURGE_MEMBER_INACTIVE_SUBJECT'), $msg);
102
103                         // Update this account
104                         ADD_SQL(SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `ap_notified`=UNIX_TIMESTAMP() WHERE `userid`=%s LIMIT 1",
105                                 array(bigintval($content['userid'])), __FILE__, __LINE__, false));
106                 } // END - while
107
108                 // Remove last comma
109                 $UIDs = str_replace(", ", "\n", substr($UIDs, 0, -2));
110
111                 // Send mail notification to admin
112                 sendAdminNotification(getMessage('AUTOPURGE_ADMIN_INACTIVE_SUBJECT'), 'admin_autopurge_inactive', $UIDs, '');
113         } // END - if
114
115         // Free memory
116         SQL_FREERESULT($result_inactive);
117
118         // Now let's have a look for inactive accounts we want to delete we newly use the same exclude list
119         // here for e.g. excluding holiday users
120         $result_inactive = SQL_QUERY_ESC("SELECT d.userid, d.email, d.last_online
121 FROM `{!_MYSQL_PREFIX!}_user_data` AS d
122 WHERE `status`='CONFIRMED' AND `joined` < (UNIX_TIMESTAMP() - %s) AND `last_online` < (UNIX_TIMESTAMP() - %s) AND `ap_notified` < (UNIX_TIMESTAMP() - %s)
123 ".$EXCLUDE_LIST."
124 ORDER BY `userid` ASC",
125                 array(
126                         getConfig('ap_inactive_since'),
127                         getConfig('ap_inactive_since'),
128                         getConfig('ap_in_time')
129                 ), __FILE__, __LINE__);
130
131         if (SQL_NUMROWS($result_inactive) > 0) {
132                 // Prepare variable...
133                 $UIDs = '';
134
135                 // Delete inactive accounts
136                 while ($content = SQL_FETCHARRAY($result_inactive)) {
137                         // Remember userids for the admin
138                         $UIDs .= $content['userid'] . ', ';
139
140                         // Get date/time from timestamp
141                         $content['last_online'] = generateDateTime($content['last_online'], '0');
142
143                         // Finnaly delete this inactive account
144                         deleteUserAccount($content['userid'], LOAD_EMAIL_TEMPLATE('member_autopurge_delete', $content['last_online'], ''));
145                 } // END - while
146
147                 // Remove last comma
148                 $UIDs = str_replace(", ", "\n", substr($UIDs, 0, -2));
149
150                 // Send mail notification to admin
151                 if (getConfig('ap_in_notify') == 'Y') {
152                         sendAdminNotification(getMessage('AUTOPURGE_ADMIN_DELETE_SUBJECT'), 'admin_autopurge_delete', $UIDs, '');
153                 } // END - if
154         } // END - if
155
156         // Free memory
157         SQL_FREERESULT($result_inactive);
158
159         // Run all SQLs
160         runFilterChain('run_sqls');
161 } // END - if
162
163 //
164 ?>