b4bbfe0d838504dc4815c0de4a5f3caa363da39d
[mailer.git] / inc / monthly / monthly_bonus.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/14/2004 *
4  * ===================                          Last change: 06/20/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : monthly_bonus.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Monthly bonus from click-bonus                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Monatlicher Bonus von Klick-Verguetung           *
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 - 2013 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('bonus')) {
45         if (isDebugModeEnabled()) logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-bonus disabled.');
46         return;
47 }
48
49 // Debug line
50 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset started.');
51
52 if ((getBonusRanks() > 0) && (!isCssOutputMode())) {
53         // Extension 'autopurge' is inactive or purging of inactive accounts is deactivated\
54         $whereStatement = runFilterChain('user_exclusion_sql', "WHERE `status`='CONFIRMED'");
55
56         // Shall I keep inactive members away from here? (mostly wanted in an "active-rallye" ...)
57         // @TODO Rewrite these if() blocks to a filter
58         if ((isExtensionActive('autopurge')) && ((getApInactiveSince() > 0))) {
59                 // Okay, include last online timestamp
60                 $whereStatement .= ' AND (UNIX_TIMESTAMP() - `d`.`last_online`) < {?ap_inactive_since?}';
61         } // END - if
62
63         // Add more bonus points here by running a filter
64         $add = runFilterChain('add_bonus_points_user_columns', '');
65
66         // Shall we add some entries?
67         if (!empty($add)) {
68                 $whereStatement .= ' AND (0' . $add . ') > 0';
69         } // END - if
70
71         // Run SQL string to check for accounts
72         $result_main = sqlQuery('SELECT
73         `d`.`userid`,
74         (0' . $add . ') AS `points`
75 FROM
76         `{?_MYSQL_PREFIX?}_user_data` AS `d`
77 ' . $whereStatement . '
78 ORDER BY
79         `points` DESC,
80         `d`.`userid` ASC
81 LIMIT {?bonus_ranks?}', __FILE__, __LINE__);
82
83         // Some entries were found?
84         if (!ifSqlHasZeroNums($result_main)) {
85                 // Load our winners...
86                 while ($content = sqlFetchArray($result_main)) {
87                         // Make sure zero points are not mailed
88                         if ($content['points'] > 0) {
89                                 // Add points to user's account directly
90                                 initReferralSystem();
91                                 addPointsThroughReferralSystem('monthly_bonus', $content['userid'], $content['points']);
92
93                                 // Load email template and email it away
94                                 $message = loadEmailTemplate('member_bonus', $content, bigintval($content['userid']));
95                                 sendEmail($content['userid'], '{--MEMBER_MONTHLY_BONUS_WON_SUBJECT--}', $message);
96                         } // END - if
97                 } // END - while
98
99                 // Reset all accounts
100                 $result = sqlQuery('UPDATE `{?_MYSQL_PREFIX?}_user_data`
101 SET
102         `turbo_bonus`=0,
103         `login_bonus`=0,
104         `bonus_order`=0,
105         `bonus_stats`=0,
106         `bonus_ref`=0', __FILE__, __LINE__);
107         } // END - if
108
109         // Free memory
110         sqlFreeResult($result_main);
111 } // END - if
112
113 // Debug line
114 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset ended.');
115
116 // [EOF]
117 ?>