Several fixes for broken actions (sorry for lame text)
[mailer.git] / inc / libs / bonus_functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/10/2004 *
4  * ===============                              Last change: 03/18/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : bonus_functions.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Special functions for bonus extension            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Spezielle Funktion fuer bonus-Erweiterung        *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // This function must be run *BEFORE* a link is removed from table 'mxchange_user_links' !
45 function addTurboBonus ($mid, $userid, $type) {
46         // Shall we add bonus points?
47         if (getConfig('bonus_active') != 'Y') return false;
48
49         // Init variables
50         $sql = ''; $bonus = 0; $mail = 0; $column = '';
51
52         // Select SQL command
53         switch ($type) {
54                 case 'bonusid':
55                         $column = 'bonus_id';
56                         $bonus = $mid;
57                         break;
58
59                 case 'mailid' :
60                         $column = 'mail_id';
61                         $mail = $mid;
62                         break;
63
64                 default:
65                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid type %s detected.", $type));
66                         break;
67         }
68
69         // Is a column name set?
70         if (empty($column)) {
71                 // No, then abort here
72                 return false;
73         } // END - if
74
75         // Check for entry
76         $rank = countSumTotalData($userid, 'bonus_turbo', 'id', 'userid', true, sprintf(" AND `%s`=%s", $column, $mid)) + 1;
77
78         // Which rank?
79         if ($rank == 1) {
80                 // First rank!
81                 $points = getConfig('turbo_bonus');
82         } else {
83                 // Anything else so let's explode all entered rank points
84                 $test = explode(';', getConfig('turbo_rates'));
85                 if (!empty($test[$rank - 2])) {
86                         // Level found
87                         $points = $test[$rank - 2];
88                 } else {
89                         // Level not found!
90                         $points = '0.00000';
91                 }
92         }
93
94         // Add points to his account directly
95         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `turbo_bonus`=`turbo_bonus`+%s WHERE `userid`=%s LIMIT 1",
96                 array(bigintval($userid), $points), __FUNCTION__, __LINE__);
97
98         // Rember this whole data for displaying ranking list
99         SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus_turbo` (`userid`, `mail_id`, `bonus_id`, `level`, `points`, `timemark`) VALUES (%s, %s, %s, %s, %s, UNIX_TIMESTAMP())",
100                 array(
101                         bigintval($userid),
102                         bigintval($mail),
103                         bigintval($bonus),
104                         $rank,
105                         $points
106                 ), __FUNCTION__, __LINE__);
107
108         if ((getExtensionVersion('bonus') >= '0.3.5') && (getConfig('bonus_mode') != "ADD") && ($points > 0)) handleBonusPoints($points);
109 }
110
111 //
112 function addBonusRanks ($data, $type, $userid) {
113         // Init variables
114         $self = false; $OUT = ''; $GLOBALS['ranking_content'] = array();
115
116         // Clear rankings by default
117         $GLOBALS['ranking_content']['rankings'] = '';
118
119         // How many ranks do we have?
120         $ranks = count(explode(';', getConfig('turbo_rates'))) + 1;
121
122         // Load current user's data
123         $result = SQL_QUERY_ESC("SELECT `level`, `points`, `timemark` FROM `{?_MYSQL_PREFIX?}_bonus_turbo` WHERE `%s`=%s AND `userid`=%s LIMIT 1",
124                 array($type, $data, $userid), __FUNCTION__, __LINE__);
125         if (SQL_NUMROWS($result) == 1) {
126                 // Load data
127                 $GLOBALS['ranking_content'] = merge_array($GLOBALS['ranking_content'], SQL_FETCHARRAY($result));
128
129                 // Remember all values for later use
130                 $self  = true;
131
132                 // Transfer data to template
133                 $GLOBALS['ranking_content']['yr_level']  = $GLOBALS['ranking_content']['level'];
134                 $GLOBALS['ranking_content']['yr_points'] = translateComma($GLOBALS['ranking_content']['points']);
135                 $GLOBALS['ranking_content']['yr_tmark']  = generateDateTime($GLOBALS['ranking_content']['timemark'], '1');
136
137                 // Load template
138                 $GLOBALS['ranking_content']['rankings'] = loadTemplate('show_bonus_yr', true, $GLOBALS['ranking_content']);
139         } // END - if
140
141         // Load rankings
142         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_bonus_turbo` WHERE %s=%s ORDER BY `level` ASC LIMIT %s",
143                 array($type, $data, getConfig('bonus_lines')), __FUNCTION__, __LINE__);
144         if (SQL_NUMROWS($result) > 0) {
145                 // Start generating the ranking list
146                 $max = SQL_NUMROWS($result);
147
148                 // Init variables
149                 $SW = 2;
150
151                 // Output all ranks (levels)
152                 for ($rank = 1; $rank <= $max; $rank++) {
153                         // Load data
154                         $result_users = SQL_QUERY_ESC("SELECT `userid`, `points`, `timemark` FROM `{?_MYSQL_PREFIX?}_bonus_turbo` WHERE `%s`=%s AND level=%s LIMIT 1",
155                                 array($type, $data, $rank), __FUNCTION__, __LINE__);
156
157                         // Nothing found by default
158                         $GLOBALS['ranking_content']['userid'] = '---';
159                         $GLOBALS['ranking_content']['points'] = '---';
160
161                         // Are you one of them?
162                         if (SQL_NUMROWS($result_users) == 1) {
163                                 // Load data
164                                 $GLOBALS['ranking_content'] = merge_array($GLOBALS['ranking_content'], SQL_FETCHARRAY($result_users));
165
166                                 // Translate comma
167                                 $GLOBALS['ranking_content']['points'] = translateComma($GLOBALS['ranking_content']['points']);
168                         } // END - if
169
170                         // Add more
171                         $GLOBALS['ranking_content']['rank'] = $rank;
172                         $GLOBALS['ranking_content']['sw']   = $SW;
173
174                         // Output row
175                         $OUT .= "<tr>
176   <td class=\"bonus_rank_".$GLOBALS['ranking_content']['rank']." bottom2 switch_sw".$GLOBALS['ranking_content']['sw']."\">&nbsp;".$GLOBALS['ranking_content']['rank'].".</td>
177   <td class=\"bonus_rank_".$GLOBALS['ranking_content']['rank']." bottom2 switch_sw".$GLOBALS['ranking_content']['sw']."\" align=\"center\">".$GLOBALS['ranking_content']['userid']."</td>
178   <td class=\"bonus_rank_".$GLOBALS['ranking_content']['rank']." bottom2 switch_sw".$GLOBALS['ranking_content']['sw']."\" align=\"center\">".$GLOBALS['ranking_content']['points']."</td>
179 </tr>\n";
180
181                         // Switch color
182                         $SW = 3 - $SW;
183                 } // END - for
184
185                 if ($self === false) {
186                         // If current user was not found set constant
187                         // @TODO Try to find a way for rewriting this constant
188                         $GLOBALS['ranking_content']['rankings'] = getMessage('BONUS_RANK_YOU_ARE_404');
189                 } // END - if
190         } else {
191                 // No entries found!
192                 $OUT = "<tr>
193   <td colspan=\"3\" align=\"center\" height=\"30\" class=\"bottom2\">
194     <div class=\"guest_failed\">".sprintf(getMessage('BONUS_NO_RANKS'), $data)."</div>
195   </td>
196 </tr>\n";
197         }
198
199         // Retutn content
200         return $OUT;
201 }
202
203 //
204 function handleBonusPoints ($mode) {
205         // Shall we add bonus points?
206         if (getConfig('bonus_active') != 'Y') return;
207
208         // Switch to jackpot-mode when no UID is supplied but userid-mode is selected
209         if ((getConfig('bonus_mode') == 'UID') && (getConfig('bonus_userid') == '0') && (isExtensionActive('jackpot'))) {
210                 // Update database & config
211                 updateConfiguration('bonus_mode', 'JACKPOT');
212         } // END - if
213
214         if ($mode == 'login_bonus') {
215                 // Login bonus detected
216                 $points = getConfig('login_bonus');
217         } else {
218                 // Direct points supplied
219                 $points = $mode;
220         }
221
222         // Subtract points from...
223         switch (getConfig('bonus_mode')) {
224                 case 'JACKPOT': // ... jackpot
225                         if ((isExtensionActive('jackpot')) && (subtractPointsFromJackpot($points) == -1) && (getConfig('bonus_userid') > 0)) {
226                                 // Check points amount first...
227                                 $total = countSumTotalData(getConfig('bonus_userid'), 'user_points', 'points') - countSumTotalData(getConfig('bonus_userid'), 'user_data', 'used_points');
228                                 if ($total >= $points) {
229                                         // Subtract points from userid's account
230                                         subtractPoints('bonus_payout_jackpot', getConfig('bonus_userid'), $points);
231                                 } // END - if
232                         } // END - if
233                         break;
234
235                 case 'UID': // ... userid's account
236                         // Check his amount first
237                         $total = countSumTotalData(getConfig('bonus_userid'), 'user_points', 'points') - countSumTotalData(getConfig('bonus_userid'), 'user_data', 'used_points');
238                         if ($total >= $points) {
239                                 // Subtract points from userid's account
240                                 subtractPoints('bonus_payout_userid', getConfig('bonus_userid'), $points);
241                         } elseif (isExtensionActive('jackpot')) {
242                                 // Try to subtract from jackpot
243                                 $dummy = subtractPointsFromJackpot($points);
244                         }
245                         break;
246         }
247 }
248
249 // Purges expired fast-click bonus entries
250 function purgeExpiredTurboBonus() {
251         // Remove entries
252         $result = SQL_QUERY("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_bonus_turbo` WHERE `timemark` < (UNIX_TIMESTAMP() - {?bonus_timeout?})", __FUNCTION__, __LINE__);
253
254         if (SQL_AFFECTEDROWS() > 0) {
255                 // Send out email to admin
256                 sendAdminNotification(getMessage('AUTOPURGE_ADMIN_TURBO_SUBJECT'), 'admin_autopurge_turbo', SQL_AFFECTEDROWS(), '');
257         } // END - if
258 }
259
260 //
261 ?>