Rewrote reset and some extensions:
[mailer.git] / inc / monthly / monthly_beg.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/22/2005 *
4  * ===================                          Last change: 06/20/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : monthly_beg.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Monthly begging rallye                           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Monatliche Bettelrallye                          *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } elseif ((!isHtmlOutputMode()) || (!isMonthlyResetEnabled())) {
42         // Do not execute when script is in non-HTML mode or no hourly reset
43         return;
44 } elseif ((!isExtensionActive('beg')) || (!isBegRallyeEnabled())) {
45         if (isDebugModeEnabled()) logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-beg disabled.');
46         return;
47 }
48
49 // Debug line
50 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset started.');
51
52 // Check if month is done
53 if ((getBegRanks() > 0) && (!isCssOutputMode())) {
54         // Extension 'autopurge' is inactive or purging of inactive accounts is deactivated
55         $whereStatement = '';
56
57         // Shall we exclude webmaster's own userid?
58         if ((!isBegIncludeOwnEnabled()) && (isValidId(getBegUserid()))) {
59                 // Exclude it
60                 $whereStatement .= ' AND `userid` != {?beg_userid?}';
61         } // END - if
62
63         // Let's check if there are some points left we can pay...
64         if ((isExtensionActive('autopurge')) && (isBegActiveEnabled()) && ((getApInactiveSince() > 0))) {
65                 // Okay, include last online timestamp
66                 $whereStatement .= ' AND (UNIX_TIMESTAMP() - `last_online`) < {?ap_inactive_since?}';
67         } // END - if
68
69         // SQL string to check for accounts
70         $result_main = SQL_QUERY("SELECT
71         `userid`,
72         `beg_points`
73 FROM
74         `{?_MYSQL_PREFIX?}_user_data`
75 WHERE
76         `status`='CONFIRMED'
77         " . $whereStatement . "
78         " . runFilterChain('user_exclusion_sql', ' ') . " AND
79         `beg_points` > 0
80 ORDER BY
81         `beg_points` DESC,
82         `userid` ASC
83 LIMIT {?beg_ranks?}", __FILE__, __LINE__);
84
85         if (!SQL_HASZERONUMS($result_main)) {
86                 // Load our winners...
87                 while ($content = SQL_FETCHARRAY($result_main)) {
88                         // Add points to user's account directly
89                         initReferralSystem();
90                         addPointsThroughReferralSystem('monthly_beg', $content['userid'], $content['beg_points']);
91
92                         // Load email template and email it away
93                         $message = loadEmailTemplate('member_beg', $content, bigintval($content['userid']));
94                         sendEmail($content['userid'], '{--BEG_MONTHLY_RALLYE--}', $message);
95                 } // END - while
96
97                 // Reset accounts
98                 $result = SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=0.00000 WHERE `beg_points` > 0', __FILE__, __LINE__);
99         } // END - if
100
101         // Free memory
102         SQL_FREERESULT($result_main);
103 } // END - if
104
105 // Debug line
106 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset ended.');
107
108 // [EOF]
109 ?>