321d73243e4e21fb7364782c84201bc8559b6a73
[mailer.git] / inc / daily / daily_user_subids.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/10/2012 *
4  * ===================                          Last change: 11/10/2012 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : daily_user_subids.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Things to be done on daily reset                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Dinge, die beim taeglichen Reset erledigt werden *
12  * -------------------------------------------------------------------- *
13  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         die();
36 } elseif ((!isHtmlOutputMode()) || (!isDailyResetEnabled())) {
37         // Do not execute when script is in non-HTML mode or no daily reset
38         return;
39 } elseif (!isExtensionInstalledAndNewer('user', '0.5.8')) {
40         if (isDebugModeEnabled()) logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-user disabled or out-dated.');
41         return;
42 }
43
44 // Debug line
45 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started.');
46
47 // Is auto-purging activated and configured correctly?
48 if ((isApSubidsEnabled()) && (getApSubidsSince() > 0)) {
49         // Start purging
50         sqlQuery('DELETE LOW_PRIORITY FROM
51         `{?_MYSQL_PREFIX?}_subid_log`
52 WHERE
53         (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(`entry_added`)) >= {?ap_subids_since?}',
54                 __FILE__, __LINE__);
55
56         // Are some entries deleted?
57         if (sqlAffectedRows() > 0) {
58                 // Okay, then send an email to the admin
59                 sendAdminNotification('{--ADMIN_PURGE_USER_SUBID_LOG_SUBJECT--}', 'admin_purge_user_subid_log', sqlAffectedRows());
60         } // END - if
61 } // END - if
62
63 // Debug line
64 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.');
65
66 // [EOF]
67 ?>