Added update_year.sh (still not fully flexible) and updated all years with it.
[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  * 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()) || (!isMonthlyResetEnabled())) {
37         // Do not execute when script is in non-HTML mode or no hourly reset
38         return;
39 } elseif (!isExtensionActive('bonus')) {
40         if (isDebugModeEnabled()) logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-bonus disabled.');
41         return;
42 }
43
44 // Debug line
45 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset started.');
46
47 if ((getBonusRanks() > 0) && (!isCssOutputMode())) {
48         // Extension 'autopurge' is inactive or purging of inactive accounts is deactivated\
49         $whereStatement = runFilterChain('user_exclusion_sql', "WHERE `status`='CONFIRMED'");
50
51         // Shall I keep inactive members away from here? (mostly wanted in an "active-rallye" ...)
52         // @TODO Rewrite these if() blocks to a filter
53         if ((isExtensionActive('autopurge')) && ((getApInactiveSince() > 0))) {
54                 // Okay, include last online timestamp
55                 $whereStatement .= ' AND (UNIX_TIMESTAMP() - `d`.`last_online`) < {?ap_inactive_since?}';
56         } // END - if
57
58         // Add more bonus points here by running a filter
59         $add = runFilterChain('add_bonus_points_user_columns', '');
60
61         // Shall we add some entries?
62         if (!empty($add)) {
63                 $whereStatement .= ' AND (0' . $add . ') > 0';
64         } // END - if
65
66         // Run SQL string to check for accounts
67         $result_main = sqlQuery('SELECT
68         `d`.`userid`,
69         (0' . $add . ') AS `points`
70 FROM
71         `{?_MYSQL_PREFIX?}_user_data` AS `d`
72 ' . $whereStatement . '
73 ORDER BY
74         `points` DESC,
75         `d`.`userid` ASC
76 LIMIT {?bonus_ranks?}', __FILE__, __LINE__);
77
78         // Some entries were found?
79         if (!ifSqlHasZeroNums($result_main)) {
80                 // Load our winners...
81                 while ($content = sqlFetchArray($result_main)) {
82                         // Make sure zero points are not mailed
83                         if ($content['points'] > 0) {
84                                 // Add points to user's account directly
85                                 initReferralSystem();
86                                 addPointsThroughReferralSystem('monthly_bonus', $content['userid'], $content['points']);
87
88                                 // Load email template and email it away
89                                 $message = loadEmailTemplate('member_bonus', $content, bigintval($content['userid']));
90                                 sendEmail($content['userid'], '{--MEMBER_MONTHLY_BONUS_WON_SUBJECT--}', $message);
91                         } // END - if
92                 } // END - while
93
94                 // Reset all accounts
95                 $result = sqlQuery('UPDATE `{?_MYSQL_PREFIX?}_user_data`
96 SET
97         `turbo_bonus`=0,
98         `login_bonus`=0,
99         `bonus_order`=0,
100         `bonus_stats`=0,
101         `bonus_ref`=0', __FILE__, __LINE__);
102         } // END - if
103
104         // Free memory
105         sqlFreeResult($result_main);
106 } // END - if
107
108 // Debug line
109 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset ended.');
110
111 // [EOF]
112 ?>