2 /************************************************************************
3 * MXChange v0.2.1 Start: 02/13/2005 *
4 * =============== Last change: 02/13/2005 *
6 * -------------------------------------------------------------------- *
8 * -------------------------------------------------------------------- *
9 * Short description : Points doubler *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Punkteverdoppler *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
32 ************************************************************************/
34 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
35 require_once("inc/libs/security_functions.php");
37 // Init "action" and "what"
38 global $what, $action, $startTime;
39 $GLOBALS['startTime'] = microtime(true);
40 $GLOBALS['what'] = "";
41 $GLOBALS['action'] = "";
44 $GLOBALS['module'] = "doubler";
45 $GLOBALS['refid'] = 0;
48 // Load the required file(s)
49 require ("inc/config.php");
51 // Is the "doubler" extension active?
52 if (!EXT_IS_ACTIVE("doubler")) {
54 LOAD_URL("modules.php?module=index&msg=".CODE_EXTENSION_PROBLEM."&ext=doubler");
57 // Is the script installed?
58 if (isBooleanConstantAndTrue('mxchange_installed')) {
59 // Probe for referal ID
60 if (!empty($_GET['refid'])) $GLOBALS['refid'] = bigintval($_GET['refid']);
62 // Probe for nickname extension and if a nickname was supplied by URL
63 $probe_nickname = ((EXT_IS_ACTIVE("nickname")) && (("".round($GLOBALS['refid'])."") != $GLOBALS['refid']));
64 if ($probe_nickname) {
65 // Nickname in URL, so load the ID
66 $result = SQL_QUERY_ESC("SELECT userid, status FROM "._MYSQL_PREFIX."_user_data WHERE nickname='%s' LIMIT 1",
67 array(bigintval($GLOBALS['refid'])), __FILE__, __LINE__);
69 // Direct userid entered
70 $result = SQL_QUERY_ESC("SELECT userid, status FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
71 array(bigintval($GLOBALS['refid'])), __FILE__, __LINE__);
75 list($rid, $status_ref) = SQL_FETCHROW($result);
76 $GLOBALS['refid'] = bigintval($rid);
79 SQL_FREERESULT($result);
82 // If no account was found set default refid and status to CONFIRMED
83 if (empty($GLOBALS['refid'])) {
84 $GLOBALS['refid'] = $_CONFIG['def_refid'];
85 $status = "CONFIRMED";
88 // Begin with doubler script...
89 if (isset($_POST['ok'])) {
90 // Secure points (so only integer/double values are allowed
91 $_POST['points'] = bigintval($_POST['points']);
93 // Begin with doubling process
94 if ((!empty($_POST['userid'])) && (!empty($_POST['pass'])) && (!empty($_POST['points']))) {
95 // Probe for nickname extension and if a nickname was entered
96 $probe_nickname = ((EXT_IS_ACTIVE("nickname")) && (("".round($_POST['userid'])."") != $_POST['userid']));
97 if ($probe_nickname) {
98 // Nickname in URL, so load the ID
99 $result = SQL_QUERY_ESC("SELECT userid, status, password FROM "._MYSQL_PREFIX."_user_data WHERE nickname='%s' LIMIT 1",
100 array($_POST['userid']), __FILE__, __LINE__);
102 // Direct userid entered
103 $result = SQL_QUERY_ESC("SELECT userid, status, password FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
104 array(bigintval($_POST['userid'])), __FILE__, __LINE__);
108 list($uid, $status, $password) = SQL_FETCHROW($result);
109 $uid = bigintval($uid);
112 SQL_FREERESULT($result);
114 // Remove any dots and unwanted chars from the points
115 $_POST['points'] = bigintval(round(REVERT_COMMA($_POST['points'])));
117 // Probe for enough points
118 $probe_points = (($_POST['points'] >= $_CONFIG['doubler_min']) && ($_POST['points'] <= $_CONFIG['doubler_max']));
120 // Check all together
121 if ((!empty($uid)) && ($password == generateHash($_POST['pass'], substr($password, 0, -40))) && ($status == "CONFIRMED") && ($probe_points)) {
122 // Nickname resolved to a unique userid or direct userid entered by the member
126 $points = GET_TOTAL_DATA($uid, "user_points", "points") - GET_TOTAL_DATA($uid, "user_data", "used_points");
128 // So let's continue with probing his points amount
129 if (($points - $_CONFIG['doubler_left'] - $_POST['points'] * $_CONFIG['doubler_charge']) >= 0)
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','".GET_REMOTE_ADDR()."', UNIX_TIMESTAMP(), 'N','N')",
134 array($uid, bigintval($GLOBALS['refid']), bigintval($_POST['points'] * 2)), __FILE__, __LINE__);
136 // Subtract entered points
137 SUB_POINTS($uid, $_POST['points']);
139 // Add points to "total payed" including charge
140 $points = $_POST['points'] - $_POST['points'] * $_CONFIG['doubler_charge'];
141 UPDATE_CONFIG("doubler_points", $points, "+");
142 $_CONFIG['doubler_points'] += $points;
144 // Add second line for the referal but only when uid != refid
145 if (($GLOBALS['refid'] > 0) && ($GLOBALS['refid'] != $uid)) {
146 // Okay add a refid line and apply refid percents
147 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_doubler (userid,refid,points,remote_ip,timemark,completed,is_ref) VALUES ('%s',0,'%s','".GET_REMOTE_ADDR()."',UNIX_TIMESTAMP(),'N','Y')",
148 array(bigintval($GLOBALS['refid']), bigintval($_POST['points'] * 2 * $_CONFIG['doubler_ref'])), __FILE__, __LINE__);
150 // And that's why we dont't want to you more than one referal level of doubler-points. ^^^
153 // Update usage counter
154 UPDATE_CONFIG("doubler_counter", 1, "+");
155 $_CONFIG['doubler_counter']++;
158 define('__DOUBLER_MSG', LOAD_TEMPLATE("doubler_reflink", true, $_POST['userid']));
160 // Not enougth points left
161 define('__ERROR_MSG', DOUBLER_FORM_NO_POINTS_LEFT);
163 } elseif ($status == "CONFIRMED") {
164 // Account is unconfirmed!
165 define('__ERROR_MSG', DOUBLER_FORM_WRONG_PASS);
166 } elseif ($status == "UNCONFIRMED") {
167 // Account is unconfirmed!
168 define('__ERROR_MSG', DOUBLER_FORM_STATUS_UNCONFIRMED);
169 } elseif ($status == "LOCKED") {
170 // Account is locked by admin / holiday!
171 define('__ERROR_MSG', DOUBLER_FORM_STATUS_LOCKED);
172 } elseif ($_POST['points'] < $_CONFIG['doubler_min']) {
173 // Not enougth points entered
174 define('__ERROR_MSG', DOUBLER_FORM_POINTS_MIN);
175 } elseif ($_POST['points'] > $_CONFIG['doubler_max']) {
176 // Too much points entered
177 define('__ERROR_MSG', DOUBLER_FORM_POINTS_MAX);
178 } elseif ($probe_nickname) {
179 // Cannot resolv nickname -> userid
180 define('__ERROR_MSG', DOUBLER_FORM_404_NICKNAME);
182 // Wrong password or account not found
183 define('__ERROR_MSG', DOUBLER_FORM_404_MEMBER);
185 } elseif (empty($_POST['userid'])) {
187 define('__ERROR_MSG', DOUBLER_FORM_404_LOGIN);
188 } elseif (empty($_POST['pass'])) {
189 // Password not entered
190 define('__ERROR_MSG', DOUBLER_FORM_404_PASSWORD);
191 } elseif (empty($_POST['points'])) {
192 // points not entered
193 define('__ERROR_MSG', DOUBLER_FORM_404_POINTS);
197 // Set messages to nothing
198 if (!defined('__DOUBLER_MSG')) define('__DOUBLER_MSG', "");
199 if (!defined('__ERROR_MSG')) define('__ERROR_MSG' , "");
201 // Shall I check for points immediately?
202 if ($_CONFIG['doubler_send_mode'] == "DIRECT") require(PATH."inc/doubler_send.php");
205 include(PATH."inc/header.php");
208 define('__DOUBLER_BANNER', LOAD_TEMPLATE("doubler_banner", true));
210 // Load header/footer templates
211 define('__DOUBLER_HEADER', LOAD_TEMPLATE("doubler_header", true));
212 define('__DOUBLER_FOOTER', LOAD_TEMPLATE("doubler_footer", true));
215 // Transfer userid/nickname to constant
216 define('__REFID', $uid);
217 } elseif (!empty($GLOBALS['refid'])) {
218 // Transfer userid/nickname to constant
219 define('__REFID', $GLOBALS['refid']);
221 // Transfer default refid to constant
222 define('__REFID', $_CONFIG['def_refid']);
225 // Percent values etc.
226 define('__CHARGE_VALUE', TRANSLATE_COMMA($_CONFIG['doubler_charge'] * 100));
227 define('__REF_VALUE' , TRANSLATE_COMMA($_CONFIG['doubler_ref'] * 100));
228 define('__TOTAL_VALUE' , TRANSLATE_COMMA($_CONFIG['doubler_points']));
229 define('__MIN_VALUE' , TRANSLATE_COMMA($_CONFIG['doubler_min']));
230 define('__MAX_VALUE' , TRANSLATE_COMMA($_CONFIG['doubler_max']));
232 // Text "Enter login"
233 if (EXT_IS_ACTIVE("nickname")) {
234 // Choose login/nickname
235 define('DOUBLER_ENTER_LOGIN', GUEST_ENTER_LOGIN_NICKNAME);
238 define('DOUBLER_ENTER_LOGIN', GUEST_ENTER_LOGIN);
241 // Which mail-send-mode did the admin setup?
242 switch ($_CONFIG['doubler_send_mode'])
245 define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_DIRECT);
249 define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_RESET);
253 // Generate table with already payed out doubles
254 define('__DOUBLER_PAYOUT_HISTORY', DOUBLER_GENERATE_TABLE("0", "Y", "N", "DESC"));
257 define('__TIMEOUT_MARK', CREATE_FANCY_TIME($_CONFIG['doubler_timeout']));
260 define('__DOUBLER_COUNTER', $_CONFIG['doubler_counter']);
262 // Points left to doubler
263 define('__LEFT_VALUE', TRANSLATE_COMMA(DOUBLER_GET_TOTAL_POINTS_LEFT()));
265 // Output neccessary form for this
266 LOAD_TEMPLATE("doubler_index");
269 include(PATH."inc/footer.php");
271 // You have to configure first!
272 LOAD_URL("install.php");
275 // Really all done here... ;-)