35d5b1e7d4c1ec1bd79cf45c575c26596c46b975
[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 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.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 ((isCssOutputMode()) || (!isResetModeEnabled())) {
42         // Do not execute when script is in CSS mode or no hourly reset
43         return;
44 } elseif (!isExtensionActive('bonus')) {
45         logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
46         return;
47 }
48
49 // Debug line
50 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset started.');
51
52 if ((getConfig('bonus_ranks') > 0) && (!isCssOutputMode())) {
53         // Extension 'autopurge' is inactive or purging of inactive accounts is deactivated
54         $whereStatement1 = "WHERE `status`='CONFIRMED'";
55
56         // Shall I keep inactive members away from here? (mostly wanted in an "active-rallye" ...)
57         if (isExtensionActive('autopurge')) {
58                 // Use last online stamp only when autopurge for inactive members is activated
59                 if (getApInactiveSince() > 0) {
60                         // Okay, include last online timestamp
61                         $whereStatement1 = "WHERE `status`='CONFIRMED' AND `last_online` >= (UNIX_TIMESTAMP() - {?ap_inactive_since?})";
62                 } // END - if
63         } // END - if
64
65         // Add more bonus points here
66         $add = '';
67         // @TODO Rewrite this to a filter
68         if (getConfig('bonus_click_yn') == 'Y') $add .= ' + `turbo_bonus`';
69         if (getConfig('bonus_login_yn') == 'Y') $add .= ' + `login_bonus`';
70         if (getConfig('bonus_order_yn') == 'Y') $add .= ' + `bonus_order`';
71         if (getConfig('bonus_stats_yn') == 'Y') $add .= ' + `bonus_stats`';
72         if (getConfig('bonus_ref_yn')   == 'Y') $add .= ' + `bonus_ref`';
73
74         // Shall we add some entries?
75         if (!empty($add)) {
76                 $whereStatement1 .= ' AND (0' . $add . ') > 0';
77         } // END - if
78
79         // Run SQL string to check for accounts
80         $result_main = SQL_QUERY('SELECT
81         `userid`, `email`, `gender`, `surname`, `family`, (0' . $add . ') AS points
82 FROM
83         `{?_MYSQL_PREFIX?}_user_data`
84 ' . $whereStatement1 . '
85 ORDER BY
86         `points` DESC,
87         `userid` ASC
88 LIMIT {?bonus_ranks?}', __FILE__, __LINE__);
89
90         // Some entries were found?
91         if (!SQL_HASZERONUMS($result_main)) {
92                 // Load our winners...
93                 while ($content = SQL_FETCHARRAY($result_main)) {
94                         // Make sure zero points are not mailed
95                         if ($content['points'] > 0) {
96                                 // Add points to user's account directly
97                                 addPointsDirectly('monthly_bonus', $content['userid'], $content['points']);
98
99                                 // Load email template and email it away
100                                 $message = loadEmailTemplate('member_bonus', $content, bigintval($content['userid']));
101                                 sendEmail($content['email'], '{--MEMBER_MONTHLY_BONUS_WON_SUBJECT--}', $message);
102                         } // END - if
103                 } // END - while
104
105                 // Reset all accounts
106                 $result = SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_user_data`
107 SET
108         `turbo_bonus`=0,
109         `login_bonus`=0,
110         `bonus_order`=0,
111         `bonus_stats`=0,
112         `bonus_ref`=0', __FILE__, __LINE__);
113         } // END - if
114
115         // Free memory
116         SQL_FREERESULT($result_main);
117 } // END - if
118
119 // Debug line
120 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset ended.');
121
122 // [EOF]
123 ?>