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