Continue link added, contributed by profi-concept. Partly resolves #3
[mailer.git] / beg.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 01/09/2005 *
4  * ===============                              Last change: 01/09/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : beg.php                                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Beg link for members                             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Bettel-Link fuer Mitglieder                      *
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("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'] = "beg";
44 $GLOBALS['refid']  = 0;
45 $CSS = -1;
46 $msg = null;
47
48 // Load the required file(s)
49 require("inc/config.php");
50
51 // Is the "beg" extension active?
52 if (!EXT_IS_ACTIVE("beg")) {
53         // Redirect to index
54         LOAD_URL("modules.php?module=index&amp;msg=".constant('CODE_EXTENSION_PROBLEM')."&amp;ext=beg");
55 } // END - if
56
57 // Is the script installed?
58 if (isBooleanConstantAndTrue('mxchange_installed')) {
59         // Check for userid
60         if (!empty($_GET['uid'])) {
61                 // Init variables
62                 $uid = 0;
63                 $result = false;
64                 $points = 0;
65
66                 // Don't pay is the default...
67                 $pay = false;
68
69                 // Validate if it is not a number
70                 if ("".($_GET['uid'] + 0)."" !== "".$_GET['uid']."") {
71                         if (EXT_IS_ACTIVE("nickname")) {
72                                 // Maybe we have found a nickname?
73                                 $result = SQL_QUERY_ESC("SELECT userid, beg_clicks, ref_payout, status, last_online FROM `{!_MYSQL_PREFIX!}_user_data` WHERE nickname='%s' LIMIT 1",
74                                         array($_GET['uid']), __FILE__, __LINE__);
75                         } else {
76                                 // Nickname entered but nickname is not active
77                                 $msg = constant('CODE_EXTENSION_PROBLEM');
78                                 $uid = -1;
79                         }
80                 } else {
81                         // Direct userid
82                         $result = SQL_QUERY_ESC("SELECT userid, beg_clicks, ref_payout, status, last_online FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
83                                 array(bigintval($_GET['uid'])), __FILE__, __LINE__);
84                 }
85
86                 // Check if locked in so don't pay points
87                 $status = "failed";
88
89                 // Check if account was found
90                 if (SQL_NUMROWS($result) == 1) {
91                         // Found an ID so we simply set it
92                         list($uid, $clicks, $ref_payout, $status, $last) = SQL_FETCHROW($result);
93
94                         // Account confirmed?
95                         if ($status == "CONFIRMED") {
96                                 // Secure userid
97                                 $uid = bigintval($uid);
98
99                                 // Multiply configured values with 100000 and divide with 100000 so we can also handle small values
100                                 // If we need more number behind the decimal dot then we just need to increase all these three
101                                 // numbers matching to the numbers behind the decimal dot. Simple! ;-)
102                                 $points = mt_rand((getConfig('beg_points') * 100000), (getConfig('beg_points_max') * 100000)) / 100000;
103
104                                 // Set nickname / userid for the template(s
105                                 define('__BEG_UID'   , SQL_ESCAPE($_GET['uid']));
106                                 define('__BEG_CLICKS', ($clicks + 1));
107                                 define('__BEG_BANNER', LOAD_TEMPLATE("beg_banner", true));
108                                 define('__BEG_POINTS', TRANSLATE_COMMA($points));
109                         } else {
110                                 // Other status
111                                 $uid = 0;
112                         }
113                 } // END - if
114
115                 // Free memory
116                 SQL_FREERESULT($result);
117
118                 // User id valid and not webmaster's id?
119                 if (($uid > 0) && (getConfig('beg_uid') != $uid)) {
120                         // Update counter
121                         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET beg_clicks=beg_clicks+1 WHERE userid=%s AND `status`='CONFIRMED' LIMIT 1",
122                                 array($uid), __FILE__, __LINE__);
123
124                         // Check for last entry for userid w/o IP number
125                         $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",
126                                 array($uid, GET_REMOTE_ADDR(), session_id()), __FILE__, __LINE__);
127
128                         // Entry not found, points set and not logged in?
129                         if (((SQL_NUMROWS($result) == 0) || (IS_ADMIN())) && ($points > 0) && (!IS_MEMBER()) && (getConfig('beg_pay_mode') == "NONE")) {
130
131                                 // Admin is testing?
132                                 if (!IS_ADMIN()) {
133                                         // Remember remote address, userid and timestamp for next click
134                                         // but only when there is no admin begging.
135                                         // Admins shall be able to test it!
136                                         SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_beg_ips` (userid, remote_ip,sid, timeout) VALUES ('%s','%s','%s', UNIX_TIMESTAMP())",
137                                                 array($uid, GET_REMOTE_ADDR(), session_id()), __FILE__, __LINE__);
138
139                                         // Was is successfull?
140                                         if (SQL_AFFECTEDROWS() == 1) {
141                                                 // Okay!
142                                                 $pay = true;
143                                         } // END - if
144                                 } else {
145                                         // Is admin!
146                                         $pay = true;
147                                 }
148
149                                 // Pay points?
150                                 if ($pay === true) {
151                                         // Add points to user or begging rallye account
152                                         if (BEG_ADD_POINTS($uid, $points)) {
153                                                 // Set "done" message
154                                                 define('__BEG_MSG', LOAD_TEMPLATE("beg_done", true));
155                                         } else {
156                                                 // Error!
157                                                 define('__BEG_MSG', LOAD_TEMPLATE("beg_failed", true));
158                                         }
159                                 } else {
160                                         // Error!
161                                         define('__BEG_MSG', LOAD_TEMPLATE("beg_failed", true));
162                                 }
163                         } elseif (IS_MEMBER()) {
164                                 // Logged in user found!
165                                 define('__BEG_MSG', LOAD_TEMPLATE("beg_login", true));
166                         } elseif (getConfig('beg_pay_mode') != "NONE") { // Other pay-mode active!
167                                 // Prepare content for template
168                                 $content = array(
169                                         'clicks' => constant('__BEG_CLICKS'),
170                                         'points' => constant('__BEG_POINTS'),
171                                         'uid'    => constant('__BEG_UID')
172                                 );
173
174                                 // Load message template depending on pay-mode
175                                 define('__BEG_MSG', LOAD_TEMPLATE("beg_pay_mode_".strtolower(getConfig('beg_pay_mode')), true, $content));
176                                 $pay = true;
177                         } else {
178                                 // Clicked received while reload lock is active
179                                 define('__BEG_MSG', LOAD_TEMPLATE("beg_failed", true));
180                         }
181
182                         // Free memory
183                         SQL_FREERESULT($result);
184
185                         // Include header
186                         LOAD_INC_ONCE("inc/header.php");
187
188                         // Load final template
189                         LOAD_TEMPLATE("beg_link");
190
191                         // Tracker code enabled? (We don't track users here!
192                         if ((getConfig('beg_pay_mode') != "NONE") && ($pay)) {
193                                 // Prepare content for template
194                                 $content = array(
195                                 );
196
197                                 // Include config-depending template
198                                 LOAD_TEMPLATE("beg_pay_code_".strtolower(getConfig('beg_pay_mode')), false, $content);
199                         } elseif ((!$pay) && (!defined('__BEG_MSG'))) {
200                                 // Cannot pay! :-(
201                                 define('__BEG_MSG', LOAD_TEMPLATE("beg_failed", true));
202                         }
203
204                         // Include footer
205                         LOAD_INC_ONCE("inc/footer.php");
206                 } elseif (($status != "CONFIRMED") && ($status != "failed")) {
207                         // Maybe locked/unconfirmed account?
208                         $msg = GEN_ERROR_CODE_FROM_ACCOUNT_STATUS($status);
209                 } elseif (($uid == "0") || ($status == "failed")) {
210                         // Inalid or locked account, so let's find out
211                         $result = SQL_QUERY_ESC("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE nickname='%s' LIMIT 1",
212                                 array($_GET['uid']), __FILE__, __LINE__);
213                         if (SQL_NUMROWS($result) == 1) {
214                                 // Locked account
215                                 $msg = constant('CODE_ACCOUNT_LOCKED');
216                         } else {
217                                 // Invalid nickname! (404)
218                                 $msg = constant('CODE_USER_404');
219                         }
220
221                         // Free memory
222                         SQL_FREERESULT($result);
223                 } elseif ($uid == getConfig('beg_uid')) {
224                         // Webmaster's ID cannot beg for points!
225                         $msg = constant('CODE_BEG_SAME_AS_OWN');
226                 }
227
228                 // Reload to index module
229                 if ((!empty($msg)) && (!empty($msg))) LOAD_URL("modules.php?module=index&amp;msg=".$msg."&amp;ext=beg");
230         } else {
231                 // No userid entered
232                 LOAD_URL("modules.php?module=index");
233         }
234 } else {
235         // You have to install first!
236         LOAD_URL("install.php");
237 }
238
239 // Really all done here... ;-)
240 ?>