Start of surfbar slowed down by halt second
[mailer.git] / doubler.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/13/2005 *
4  * ===============                              Last change: 02/13/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : doubler.php                                      *
8  * -------------------------------------------------------------------- *
9  * Short description : Points doubler                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Punkteverdoppler                                 *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
35 require_once("inc/libs/security_functions.php");
36
37 // Init "action" and "what"
38 global $what, $action, $startTime;
39 $GLOBALS['startTime'] = microtime(true);
40 $GLOBALS['what'] = ""; $GLOBALS['action'] = "";
41
42 // Set module
43 $GLOBALS['module'] = "doubler";
44 $GLOBALS['refid'] = 0;
45 $CSS = "0";
46
47 // Load the required file(s)
48 require ("inc/config.php");
49
50 // Is the script installed?
51 if (defined('mxchange_installed') && (isBooleanConstantAndTrue('mxchange_installed')))
52 {
53         // Probe for referral ID
54         if (!empty($_GET['refid'])) $GLOBALS['refid'] = bigintval($_GET['refid']);
55
56         // Probe for nickname extension and if a nickname was supplied by URL
57         $probe_nickname = ((EXT_IS_ACTIVE("nickname")) && (("".round($GLOBALS['refid'])."") != $GLOBALS['refid']));
58         if ($probe_nickname)
59         {
60                 // Nickname in URL, so load the ID
61                 $result = SQL_QUERY_ESC("SELECT userid, status FROM "._MYSQL_PREFIX."_user_data WHERE nickname='%s' LIMIT 1",
62                  array(bigintval($GLOBALS['refid'])), __FILE__, __LINE__);
63         }
64          else
65         {
66                 // Direct userid entered
67                 $result = SQL_QUERY_ESC("SELECT userid, status FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
68                  array(bigintval($GLOBALS['refid'])), __FILE__, __LINE__);
69         }
70
71         // Load data
72         list($rid, $status_ref) = SQL_FETCHROW($result);
73         $GLOBALS['refid'] = bigintval($rid);
74
75         // Free memory
76         SQL_FREERESULT($result);
77         $uid = 0;
78
79         // If no account was found set default refid and status to CONFIRMED
80         if (empty($GLOBALS['refid'])) { $GLOBALS['refid'] = $_CONFIG['def_refid']; $status = "CONFIRMED"; }
81
82         // Begin with doubler script...
83         if (isset($_POST['ok']))
84         {
85                 // Secure points (so only integer/double values are allowed
86                 $_POST['points'] = bigintval($_POST['points']);
87
88                 // Begin with doubling process
89                 if ((!empty($_POST['userid'])) && (!empty($_POST['pass'])) && (!empty($_POST['points'])))
90                 {
91                         // Probe for nickname extension and if a nickname was entered
92                         $probe_nickname = ((EXT_IS_ACTIVE("nickname")) && (("".round($_POST['userid'])."") != $_POST['userid']));
93                         if ($probe_nickname)
94                         {
95                                 // Nickname in URL, so load the ID
96                                 $result = SQL_QUERY_ESC("SELECT userid, status, password FROM "._MYSQL_PREFIX."_user_data WHERE nickname='%s' LIMIT 1",
97                                  array($_POST['userid']), __FILE__, __LINE__);
98                         }
99                          else
100                         {
101                                 // Direct userid entered
102                                 $result = SQL_QUERY_ESC("SELECT userid, status, password FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
103                                  array(bigintval($_POST['userid'])), __FILE__, __LINE__);
104                         }
105
106                         // Load data
107                         list($uid, $status, $password) = SQL_FETCHROW($result);
108                         $uid = bigintval($uid);
109
110                         // Free result
111                         SQL_FREERESULT($result);
112
113                         // Remove any dots and unwanted chars from the points
114                         $_POST['points'] = bigintval(round(str_replace(",", ".", $_POST['points'])));
115
116                         // Probe for enough points
117                         $probe_points = (($_POST['points'] >= $_CONFIG['doubler_min']) && ($_POST['points'] <= $_CONFIG['doubler_max']));
118
119                         // Check all together
120                         if ((!empty($uid)) && ($password == generateHash($_POST['pass'], substr($password, 0, -40))) && ($status == "CONFIRMED") && ($probe_points))
121                         {
122                                 // Nickname resolved to a unique userid or direct userid entered by the member
123                                 $DOUBLER_UID = $uid;
124
125                                 // Calulcate points
126                                 $points = GET_TOTAL_DATA($uid, "user_points", "points") - GET_TOTAL_DATA($uid, "user_data", "used_points");
127
128                                 // So let's continue with probing his points amount
129                                 if (($points - $_CONFIG['doubler_left'] - $_POST['points'] * $_CONFIG['doubler_charge']) >= 0)
130                                 {
131                                         // Enough points are left so let's continue with the doubling process
132                                         // Create doubling "account" width *DOUBLED* points
133                                         $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_doubler (userid, refid, points, remote_ip, timemark, completed, is_ref) VALUES ('%s', '%s', '%s', '".$_SERVER['REMOTE_ADDR']."', UNIX_TIMESTAMP(), 'N', 'N')",
134                                          array($uid, bigintval($GLOBALS['refid']), bigintval($_POST['points'] * 2)), __FILE__, __LINE__);
135
136                                         // Subtract entered points
137                                         SUB_POINTS($uid, $_POST['points']);
138
139                                         // Add points to "total payed" including charge
140                                         $points = $_POST['points'] - $_POST['points'] * $_CONFIG['doubler_charge'];
141                                         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET doubler_points=doubler_points+%s WHERE config=0 LIMIT 1",
142                                          array($points), __FILE__, __LINE__);
143                                         $_CONFIG['doubler_points'] += $points;
144
145                                         // Destroy cache
146                                         if (GET_EXT_VERSION("cache") >= "0.1.2")
147                                         {
148                                                 if ($cacheInstance->cache_file("config", true)) $cacheInstance->cache_destroy();
149                                         }
150
151                                         // Add second line for the referral but only when uid != refid
152                                         if (($GLOBALS['refid'] > 0) && ($GLOBALS['refid'] != $uid))
153                                         {
154                                                 // Okay add a refid line and apply refid percents
155                                                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_doubler (userid, refid, points, remote_ip, timemark, completed, is_ref) VALUES ('%s', '0', '%s', '".$_SERVER['REMOTE_ADDR']."', UNIX_TIMESTAMP(), 'N', 'Y')",
156                                                  array(bigintval($GLOBALS['refid']), bigintval($_POST['points'] * 2 * $_CONFIG['doubler_ref'])), __FILE__, __LINE__);
157
158                                                 // And that's why we dont't want to you more than one referral level of doubler-points. ^^^
159                                         }
160
161                                         // Update usage counter
162                                         $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_config SET doubler_counter=doubler_counter+1 WHERE config=0 LIMIT 1", __FILE__, __LINE__);
163                                         $_CONFIG['doubler_counter']++;
164
165                                         // Set constant
166                                         define('__DOUBLER_MSG', LOAD_TEMPLATE("doubler_reflink", true, $_POST['userid']));
167                                 }
168                                  else
169                                 {
170                                         // Not enougth points left
171                                         define('__ERROR_MSG', DOUBLER_FORM_NO_POINTS_LEFT);
172                                 }
173
174                         }
175                          elseif ($status == "CONFIRMED")
176                         {
177                                 // Account is unconfirmed!
178                                 define('__ERROR_MSG', DOUBLER_FORM_WRONG_PASS);
179                         }
180                          elseif ($status == "UNCONFIRMED")
181                         {
182                                 // Account is unconfirmed!
183                                 define('__ERROR_MSG', DOUBLER_FORM_STATUS_UNCONFIRMED);
184                         }
185                          elseif ($status == "LOCKED")
186                         {
187                                 // Account is locked by admin / holiday!
188                                 define('__ERROR_MSG', DOUBLER_FORM_STATUS_LOCKED);
189                         }
190                          elseif ($_POST['points'] < $_CONFIG['doubler_min'])
191                         {
192                                 // Not enougth points entered
193                                 define('__ERROR_MSG', DOUBLER_FORM_POINTS_MIN);
194                         }
195                          elseif ($_POST['points'] > $_CONFIG['doubler_max'])
196                         {
197                                 // Too much points entered
198                                 define('__ERROR_MSG', DOUBLER_FORM_POINTS_MAX);
199                         }
200                          elseif ($probe_nickname)
201                         {
202                                 // Cannot resolv nickname -> userid
203                                 define('__ERROR_MSG', DOUBLER_FORM_404_NICKNAME);
204                         }
205                          else
206                         {
207                                 // Wrong password or account not found
208                                 define('__ERROR_MSG', DOUBLER_FORM_404_MEMBER);
209                         }
210                 }
211                  elseif (empty($_POST['userid']))
212                 {
213                         // Login not entered
214                         define('__ERROR_MSG', DOUBLER_FORM_404_LOGIN);
215                 }
216                  elseif (empty($_POST['pass']))
217                 {
218                         // Password not entered
219                         define('__ERROR_MSG', DOUBLER_FORM_404_PASSWORD);
220                 }
221                  elseif (empty($_POST['points']))
222                 {
223                         // points not entered
224                         define('__ERROR_MSG', DOUBLER_FORM_404_POINTS);
225                 }
226         }
227
228         // Set messages to nothing
229         if (!defined('__DOUBLER_MSG')) define('__DOUBLER_MSG', "");
230         if (!defined('__ERROR_MSG'))   define('__ERROR_MSG'  , "");
231
232         // Shall I check for points immediately?
233         if ($_CONFIG['doubler_send_mode'] == "DIRECT") require(PATH."inc/doubler_send.php");
234
235         // Output header
236         include(PATH."inc/header.php");
237
238         // Banner in text
239         define('__DOUBLER_BANNER', LOAD_TEMPLATE("doubler_banner", true));
240
241         // Load header/footer templates
242         define('__DOUBLER_HEADER', LOAD_TEMPLATE("doubler_header", true));
243         define('__DOUBLER_FOOTER', LOAD_TEMPLATE("doubler_footer", true));
244
245         if (!empty($uid))
246         {
247                 // Transfer userid/nickname to constant
248                 define('__REFID', $uid);
249         }
250          elseif (!empty($GLOBALS['refid']))
251         {
252                 // Transfer userid/nickname to constant
253                 define('__REFID', $GLOBALS['refid']);
254         }
255          else
256         {
257                 // Transfer default refid to constant
258                 define('__REFID', $_CONFIG['def_refid']);
259         }
260
261         // Percent values etc.
262         define('__CHARGE_VALUE', TRANSLATE_COMMA($_CONFIG['doubler_charge'] * 100));
263         define('__REF_VALUE'   , TRANSLATE_COMMA($_CONFIG['doubler_ref'] * 100));
264         define('__TOTAL_VALUE' , TRANSLATE_COMMA($_CONFIG['doubler_points']));
265         define('__MIN_VALUE'   , TRANSLATE_COMMA($_CONFIG['doubler_min']));
266         define('__MAX_VALUE'   , TRANSLATE_COMMA($_CONFIG['doubler_max']));
267
268         // Text "Enter login"
269         if (EXT_IS_ACTIVE("nickname"))
270         {
271                 // Choose login/nickname
272                 define('DOUBLER_ENTER_LOGIN', GUEST_ENTER_LOGIN_NICKNAME);
273         }
274          else
275         {
276                 // Simple login ID
277                 define('DOUBLER_ENTER_LOGIN', GUEST_ENTER_LOGIN);
278         }
279
280         // Which mail-send-mode did the admin setup?
281         switch ($_CONFIG['doubler_send_mode'])
282         {
283         case "DIRECT":
284                 define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_DIRECT);
285                 break;
286
287         case "RESET":
288                 define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_RESET);
289                 break;
290         }
291
292         // Generate table with already payed out doubles
293         define('__DOUBLER_PAYOUT_HISTORY', DOUBLER_GENERATE_TABLE("0", 'Y', 'N', "DESC"));
294
295         // Generate timemark
296         define('__TIMEOUT_MARK', CREATE_FANCY_TIME($_CONFIG['doubler_timeout']));
297
298         // Usage counter
299         define('__DOUBLER_COUNTER', $_CONFIG['doubler_counter']);
300
301         // Points left to doubler
302         define('__LEFT_VALUE', TRANSLATE_COMMA(DOUBLER_GET_TOTAL_POINTS_LEFT()));
303
304         // Output neccessary form for this
305         LOAD_TEMPLATE("doubler_index");
306
307         // Output footer
308         include(PATH."inc/footer.php");
309 }
310  else
311 {
312         // You have to configure first!
313         LOAD_URL("install.php");
314 }
315
316 // Really all done here... ;-)
317 ?>