Fix for inserted codes while registering of extensions, many rewrites/cleanups:
[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')) || (!isAutoPurgingActive())) {
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 (isValidUserId(getConfig('def_refid'))) $EXCLUDE_LIST .= ' AND d.`userid` != {?def_refid?}';
60         // Check for more extensions
61         if (isExtensionActive('beg'))     $EXCLUDE_LIST .= ' AND d.`userid` != {?beg_userid?}';
62         if (isExtensionActive('bonus'))   $EXCLUDE_LIST .= ' AND d.`userid` != {?bonus_userid?}';
63         if (isExtensionActive('doubler')) $EXCLUDE_LIST .= ' AND d.`userid` != {?doubler_userid?}';
64
65         // Check for new holiday extension
66         if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
67                 // Include only users with no active holiday
68                 $EXCLUDE_LIST .= " AND d.`holiday_active`='N'";
69         } // END - if
70
71         // Check for all accounts
72         $result_inactive = SQL_QUERY_ESC("SELECT d.userid, d.email, d.last_online
73 FROM
74         `{?_MYSQL_PREFIX?}_user_data` AS d
75 WHERE
76         d.status='CONFIRMED' AND
77         d.joined < (UNIX_TIMESTAMP() - %s) AND
78         d.last_online < (UNIX_TIMESTAMP() - %s) AND
79         d.ap_notified < (UNIX_TIMESTAMP() - %s)
80         ".$EXCLUDE_LIST."
81 ORDER BY
82         d.userid ASC",
83                 array(
84                         getApInactiveSince(),
85                         getApInactiveSince(),
86                         getApInactiveSince()
87                 ), __FILE__, __LINE__);
88
89         if (!SQL_HASZERONUMS($result_inactive)) {
90                 // Prepare variables and constants...
91                 $useridsContent = '';
92                 $content['since'] = (getApInactiveSince() / 60 / 60);
93                 $content['time']  = (getApInactiveTime()  / 60 / 60);
94
95                 // Mark found accounts as inactive and send an email
96                 while ($row = SQL_FETCHARRAY($result_inactive)) {
97                         // Merge both arrays
98                         $content = merge_array($content, $row);
99
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'], '{--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('{--ADMIN_AUTOPURGE_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('SELECT
128         d.userid, d.email, d.last_online
129 FROM
130         `{?_MYSQL_PREFIX?}_user_data` AS d
131 WHERE
132         `status`='CONFIRMED' AND
133         `joined` < (UNIX_TIMESTAMP() - {?ap_inactive_since?}) AND
134         `last_online` < (UNIX_TIMESTAMP() - {?ap_inactive_since?}) AND
135         `ap_notified` < (UNIX_TIMESTAMP() - {?ap_inactive_time?})
136 ' . $EXCLUDE_LIST . '
137 ORDER BY
138         `userid` ASC', __FILE__, __LINE__);
139
140         if (!SQL_HASZERONUMS($result_inactive)) {
141                 // Prepare variable...
142                 $useridsContent = '';
143
144                 // Delete inactive accounts
145                 while ($content = SQL_FETCHARRAY($result_inactive)) {
146                         // Remember userids for the admin
147                         $useridsContent .= $content['userid'] . ', ';
148
149                         // Get date/time from timestamp
150                         $content['last_online'] = generateDateTime($content['last_online'], 0);
151
152                         // Finnaly delete this inactive account
153                         deleteUserAccount($content['userid'], loadEmailTemplate('member_autopurge_delete', $content['last_online'], ''));
154                 } // END - while
155
156                 // Remove last comma
157                 $useridsContent = str_replace(', ', "\n", substr($useridsContent, 0, -2));
158
159                 // Send mail notification to admin
160                 if (getConfig('ap_in_notify') == 'Y') {
161                         sendAdminNotification('{--ADMIN_AUTOPURGE_DELETE_SUBJECT--}', 'admin_autopurge_delete', $useridsContent);
162                 } // END - if
163         } // END - if
164
165         // Free memory
166         SQL_FREERESULT($result_inactive);
167
168         // Run all SQLs
169         runFilterChain('run_sqls');
170 } // END - if
171
172 // [EOF]
173 ?>