X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fpurge%2Fpurge-inact.php;h=ad663cc4f0f591e92f313caddf13eaf3539e3c61;hb=e5dffd4249c97200cbad02f3f4eaf5c373fdb89a;hp=6786cb171482ee38032d5f91ddb456fccab3d239;hpb=c0492f72cb322af878f09f745dfd6a65b45da555;p=mailer.git diff --git a/inc/purge/purge-inact.php b/inc/purge/purge-inact.php index 6786cb1714..ad663cc4f0 100644 --- a/inc/purge/purge-inact.php +++ b/inc/purge/purge-inact.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -43,7 +43,7 @@ if (!defined('__SECURITY')) { // Abort if autopurge is not active or disabled by admin if ((!isExtensionActive('autopurge')) || (!isAutoPurgingActive())) { // Abort here - return false; + return FALSE; } // END - if // Shall I look for inactive accounts and autopurge inactive accounts? @@ -51,24 +51,22 @@ if (isAutopurgeInactiveEnabled()) { // Init SQLs initSqls(); - // Init exclusion list - // @TODO Rewrite these if() blocks to a filter - $excludeUserids = ''; - if (isValidUserId(getDefRefid())) $excludeUserids .= ' AND `userid` != {?def_refid?}'; - - // Check for more extensions - if (isExtensionActive('beg')) $excludeUserids .= ' AND `userid` != {?beg_userid?}'; - if (isExtensionActive('bonus')) $excludeUserids .= ' AND `userid` != {?bonus_userid?}'; - if (isExtensionActive('doubler')) $excludeUserids .= ' AND `userid` != {?doubler_userid?}'; + // Init userid exclusion + $excludeSql = ''; + $excludedUserids = runFilterChain('config_userid_exclusion_sql', array()); + if (isFilledArray($excludedUserids)) { + // Exclude all + $excludeSql = ' AND `userid` NOT IN (' . implode(', ', $excludedUserids) . ')'; + } // END - if // Check for new holiday extension if (isExtensionInstalledAndNewer('holiday', '0.1.3')) { // Include only users with no active holiday - $excludeUserids .= " AND `holiday_active`='N'"; + $excludeSql .= " AND `holiday_active`='N'"; } // END - if // Check for all accounts - $result_inactive = SQL_QUERY("SELECT + $result_inactive = sqlQuery("SELECT `userid`, `email`, `last_online` @@ -78,24 +76,24 @@ WHERE `status`='CONFIRMED' AND (UNIX_TIMESTAMP() - `joined`) >= {?ap_inactive_since?} AND (UNIX_TIMESTAMP() - `last_online`) >= {?ap_inactive_since?} AND - (UNIX_TIMESTAMP() - `ap_notified`) >= {?ap_inactive_since?} - " . $excludeUserids . " + (UNIX_TIMESTAMP() - `ap_notified`) >= {?ap_inactive_since?} AND + " . runFilterChain('user_exclusion_sql', $excludeSql) . " ORDER BY `userid` ASC", __FILE__, __LINE__); - if (!SQL_HASZERONUMS($result_inactive)) { + if (!ifSqlHasZeroNums($result_inactive)) { // Prepare variables and constants... $userids = array(); $content['since'] = (getApInactiveSince() / 60 / 60); $content['time'] = (getApInactiveTime() / 60 / 60); // Mark found accounts as inactive and send an email - while ($row = SQL_FETCHARRAY($result_inactive)) { + while ($row = sqlFetchArray($result_inactive)) { // Merge both arrays $content = merge_array($content, $row); // Remember userids for the admin - $userids[] = $content['userid']; + array_push($userids, $content['userid']); // Get date/time from timestamp $content['last_online'] = generateDateTime($content['last_online'], 0); @@ -105,46 +103,49 @@ ORDER BY sendEmail($content['userid'], '{--MEMBER_AUTOPURGE_INACTIVE_SUBJECT--}', $message); // Update this account - addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ap_notified`=UNIX_TIMESTAMP() WHERE `userid`=%s LIMIT 1", - array(bigintval($content['userid'])), __FILE__, __LINE__, false)); + addSql(sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ap_notified`=UNIX_TIMESTAMP() WHERE `userid`=%s LIMIT 1", + array(bigintval($content['userid'])), __FILE__, __LINE__, FALSE)); } // END - while // Remove last comma - $useridsContent = implode("\n", $userids); + $content['userids'] = implode(PHP_EOL, $userids); // Send mail notification to admin - sendAdminNotification('{--ADMIN_AUTOPURGE_INACTIVE_SUBJECT--}', 'admin_autopurge_inactive', $useridsContent); + sendAdminNotification('{--ADMIN_AUTOPURGE_INACTIVE_SUBJECT--}', 'admin_purge_inactive', $content); } // END - if // Free memory - SQL_FREERESULT($result_inactive); - - // Now let's have a look for inactive accounts we want to delete we newly use the same exclude list - // here for e.g. excluding holiday users - $result_inactive = SQL_QUERY("SELECT + sqlFreeResult($result_inactive); + + /* + * Now let's have a look for inactive accounts for deletion. Use the newly + * added exclude list here for e.g. excluding holiday users, test users et + * cetera. + */ + $result_inactive = sqlQuery("SELECT `userid`, `email`, `last_online` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE - `status`='CONFIRMED' AND + `status`='CONFIRMED' + " . runFilterChain('user_exclusion_sql', $excludeSql) . " AND (UNIX_TIMESTAMP() - `joined`) >= {?ap_inactive_since?} AND (UNIX_TIMESTAMP() - `last_online`) >= {?ap_inactive_since?} AND (UNIX_TIMESTAMP() - `ap_notified`) >= {?ap_inactive_time?} AND `ap_notified` > 0 -" . $excludeUserids . " ORDER BY `userid` ASC", __FILE__, __LINE__); - if (!SQL_HASZERONUMS($result_inactive)) { + if (!ifSqlHasZeroNums($result_inactive)) { // Prepare userid array for admin... $userids = array(); // Delete inactive accounts - while ($content = SQL_FETCHARRAY($result_inactive)) { + while ($content = sqlFetchArray($result_inactive)) { // Remember userids for the admin - $userids[] = $content['userid']; + array_push($userids, $content['userid']); // Get date/time from timestamp $content['last_online'] = generateDateTime($content['last_online'], 0); @@ -154,16 +155,16 @@ ORDER BY } // END - while // Display all userids - $useridsContent = implode("\n", $userids); + $useridsContent = implode(PHP_EOL, $userids); // Send mail notification to admin if (getConfig('ap_in_notify') == 'Y') { - sendAdminNotification('{--ADMIN_AUTOPURGE_DELETE_SUBJECT--}', 'admin_autopurge_delete', $useridsContent); + sendAdminNotification('{--ADMIN_AUTOPURGE_DELETE_SUBJECT--}', 'admin_purge_delete', $useridsContent); } // END - if } // END - if // Free memory - SQL_FREERESULT($result_inactive); + sqlFreeResult($result_inactive); // Run all SQLs runFilterChain('run_sqls');