2 /************************************************************************
3 * MXChange v0.2.1 Start: 01/09/2005 *
4 * =============== Last change: 01/09/2005 *
6 * -------------------------------------------------------------------- *
8 * -------------------------------------------------------------------- *
9 * Short description : Beg link for members *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Bettel-Link fuer Mitglieder *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 - 2008 by Roland Haeder *
21 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
37 ************************************************************************/
39 // Load security stuff here
40 require('inc/libs/security_functions.php');
43 $GLOBALS['startTime'] = microtime(true);
46 $GLOBALS['module'] = 'beg';
47 $GLOBALS['refid'] = 0;
48 $GLOBALS['output_mode'] = -1;
51 // Load the required file(s)
52 require('inc/config-global.php');
54 // Is the 'beg' extension active?
55 REDIRCT_ON_UNINSTALLED_EXTENSION('beg');
57 // Is the script installed?
59 // You have to install first!
60 redirectToUrl('install.php');
64 if (REQUEST_ISSET_GET('uid')) {
70 // Don't pay is the default...
73 // Validate if it is not a number
74 if (''.(REQUEST_GET('uid') + 0).'' !== ''.REQUEST_GET('uid').'') {
75 if (EXT_IS_ACTIVE('nickname')) {
76 // Maybe we have found a nickname?
77 $result = SQL_QUERY_ESC("SELECT `userid`, `beg_clicks`, `ref_payout`, `status`, `last_online` FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `nickname`='%s' LIMIT 1",
78 array(REQUEST_GET('uid')), __FILE__, __LINE__);
80 // Nickname entered but nickname is not active
81 $errorCode = getCode('EXTENSION_PROBLEM');
86 $result = SQL_QUERY_ESC("SELECT `userid`, `beg_clicks`, `ref_payout`, `status`, `last_online` FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `userid`=%s LIMIT 1",
87 array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__);
90 // Check if locked in so don't pay points
93 // Check if account was found
94 if (SQL_NUMROWS($result) == 1) {
95 // Found an ID so we simply set it
96 list($uid, $clicks, $ref_payout, $status, $last) = SQL_FETCHROW($result);
99 if ($status == 'CONFIRMED') {
101 $uid = bigintval($uid);
103 // Multiply configured values with 100000 and divide with 100000 so we can also handle small values
104 // If we need more number behind the decimal dot then we just need to increase all these three
105 // numbers matching to the numbers behind the decimal dot. Simple! ;-)
106 $points = mt_rand((getConfig('beg_points') * 100000), (getConfig('beg_points_max') * 100000)) / 100000;
108 // Set nickname / userid for the template(s
109 define('__BEG_UID' , REQUEST_GET('uid'));
110 define('__BEG_CLICKS', ($clicks + 1));
111 define('__BEG_BANNER', LOAD_TEMPLATE('beg_banner', true));
112 define('__BEG_POINTS', translateComma($points));
120 SQL_FREERESULT($result);
122 // User id valid and not webmaster's id?
123 if (($uid > 0) && (getConfig('beg_uid') != $uid)) {
125 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `beg_clicks`=`beg_clicks`+1 WHERE `userid`=%s AND `status`='CONFIRMED' LIMIT 1",
126 array($uid), __FILE__, __LINE__);
128 // Check for last entry for userid w/o IP number
129 $result = SQL_QUERY_ESC("SELECT `id` FROM `{!_MYSQL_PREFIX!}_beg_ips` WHERE (timeout > (UNIX_TIMESTAMP() - ".getConfig('beg_timeout').") OR (timeout > (UNIX_TIMESTAMP() - ".getConfig('beg_uid_timeout').") AND `userid`=%s)) AND (remote_ip='%s' OR sid='%s') LIMIT 1",
130 array($uid, detectRemoteAddr(), session_id()), __FILE__, __LINE__);
132 // Entry not found, points set and not logged in?
133 if (((SQL_NUMROWS($result) == 0) || (IS_ADMIN())) && ($points > 0) && (!IS_MEMBER()) && (getConfig('beg_pay_mode') == 'NONE')) {
137 // Remember remote address, userid and timestamp for next click
138 // but only when there is no admin begging.
139 // Admins shall be able to test it!
140 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_beg_ips` (`userid`, `remote_ip`,`sid`, `timeout`) VALUES ('%s','%s','%s', UNIX_TIMESTAMP())",
141 array($uid, detectRemoteAddr(), session_id()), __FILE__, __LINE__);
143 // Was is successfull?
144 $pay (SQL_AFFECTEDROWS() == 1);
152 // Add points to user or begging rallye account
153 if (BEG_ADD_POINTS($uid, $points)) {
154 // Set 'done' message
155 $content['msg'] = LOAD_TEMPLATE('beg_done', true);
158 $content['msg'] = LOAD_TEMPLATE('beg_failed', true);
162 $content['msg'] = LOAD_TEMPLATE('beg_failed', true);
164 } elseif (IS_MEMBER()) {
165 // Logged in user found!
166 $content['msg'] = LOAD_TEMPLATE('beg_login', true);
167 } elseif (getConfig('beg_pay_mode') != 'NONE') { // Other pay-mode active!
168 // Prepare content for template
170 'clicks' => constant('__BEG_CLICKS'),
171 'points' => constant('__BEG_POINTS'),
172 'uid' => constant('__BEG_UID')
175 // Load message template depending on pay-mode
176 $content['msg'] = LOAD_TEMPLATE('beg_pay_mode_'.strtolower(getConfig('beg_pay_mode')), true, $content);
179 // Clicked received while reload lock is active
180 $content['msg'] = LOAD_TEMPLATE('beg_failed', true);
184 SQL_FREERESULT($result);
187 loadIncludeOnce('inc/header.php');
189 // Load final template
190 LOAD_TEMPLATE('beg_link', false, $content);
192 // Tracker code enabled? (We don't track users here!
193 if ((getConfig('beg_pay_mode') != 'NONE') && ($pay === true)) {
194 // Prepare content for template
195 // @TODO Opps, what is missing here???
199 // Include config-depending template
200 LOAD_TEMPLATE('beg_pay_code_'.strtolower(getConfig('beg_pay_mode')), false, $content);
201 } elseif ((!$pay) && (!isset($content['msg']))) {
203 $content['msg'] = LOAD_TEMPLATE('beg_failed', true);
207 loadIncludeOnce('inc/footer.php');
208 } elseif (($status != 'CONFIRMED') && ($status != 'failed')) {
209 // Maybe locked/unconfirmed account?
210 $errorCode = generateErrorCodeFromUserStatus($status);
211 } elseif (($uid == '0') || ($status == 'failed')) {
212 // Inalid or locked account, so let's find out
213 $result = SQL_QUERY_ESC("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE nickname='%s' LIMIT 1",
214 array(REQUEST_GET('uid')), __FILE__, __LINE__);
215 if (SQL_NUMROWS($result) == 1) {
217 $errorCode = getCode('ACCOUNT_LOCKED');
219 // Invalid nickname! (404)
220 $errorCode = getCode('USER_404');
224 SQL_FREERESULT($result);
225 } elseif ($uid == getConfig('beg_uid')) {
226 // Webmaster's ID cannot beg for points!
227 $errorCode = getCode('BEG_SAME_AS_OWN');
230 // Reload to index module
231 if ((!empty($errorCode)) && (!empty($errorCode))) redirectToUrl('modules.php?module=index&msg=' . $errorCode . '&ext=beg');
234 redirectToUrl('modules.php?module=index');
237 // Really all done here... ;-)