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