2 /************************************************************************
3 * MXChange v0.2.1 Start: 09/14/2008 *
4 * =============== Last change: 09/14/2008 *
6 * -------------------------------------------------------------------- *
7 * File : purge-inactive.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Purge of inactive users *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Auto-Loeschung von inaktiven Mitgliedern *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
37 ************************************************************************/
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
45 // Abort if autopurge is not active or disabled by admin
46 if ((!EXT_IS_ACTIVE('autopurge')) || (getConfig('auto_purge_active') != 'Y')) {
51 // Shall I look for inactive accounts and autopurge inactive accounts?
52 if (getConfig('autopurge_inactive') == 'Y') {
56 // Init exclusion list
58 if (getConfig('def_refid') > 0) {
59 $EXCLUDE_LIST = " AND d.userid != ".getConfig('def_refid');
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')."";
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'";
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)
80 getConfig('ap_inactive_since'),
81 getConfig('ap_inactive_since'),
82 getConfig('ap_inactive_since')
83 ), __FILE__, __LINE__);
85 if (SQL_NUMROWS($result_inactive) > 0) {
86 // Prepare variables and constants...
88 define('__INACTIVE_SINCE', (getConfig('ap_inactive_since') / 60 / 60));
89 define('__INACTIVE_TIME' , (getConfig('ap_in_time') / 60 / 60));
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'].", ";
96 // Get date/time from timestamp
97 $content['last_online'] = generateDateTime($content['last_online'], '0');
100 $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_inactive", $content['last_online'], bigintval($content['userid']));
101 sendEmail($content['email'], getMessage('AUTOPURGE_MEMBER_INACTIVE_SUBJECT'), $msg);
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));
109 $UIDs = str_replace(", ", "\n", substr($UIDs, 0, -2));
111 // Send mail notification to admin
112 sendAdminNotification(getMessage('AUTOPURGE_ADMIN_INACTIVE_SUBJECT'), 'admin_autopurge_inactive', $UIDs, '');
116 SQL_FREERESULT($result_inactive);
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)
124 ORDER BY `userid` ASC",
126 getConfig('ap_inactive_since'),
127 getConfig('ap_inactive_since'),
128 getConfig('ap_in_time')
129 ), __FILE__, __LINE__);
131 if (SQL_NUMROWS($result_inactive) > 0) {
132 // Prepare variable...
135 // Delete inactive accounts
136 while ($content = SQL_FETCHARRAY($result_inactive)) {
137 // Remember userids for the admin
138 $UIDs .= $content['userid'] . ', ';
140 // Get date/time from timestamp
141 $content['last_online'] = generateDateTime($content['last_online'], '0');
143 // Finnaly delete this inactive account
144 deleteUserAccount($content['userid'], LOAD_EMAIL_TEMPLATE('member_autopurge_delete', $content['last_online'], ''));
148 $UIDs = str_replace(", ", "\n", substr($UIDs, 0, -2));
150 // Send mail notification to admin
151 if (getConfig('ap_in_notify') == 'Y') {
152 sendAdminNotification(getMessage('AUTOPURGE_ADMIN_DELETE_SUBJECT'), 'admin_autopurge_delete', $UIDs, '');
157 SQL_FREERESULT($result_inactive);
160 runFilterChain('run_sqls');