Possible extrace line removed
[mailer.git] / beg.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $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  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Load security stuff here
41 require('inc/libs/security_functions.php');
42
43 // Init start time
44 $GLOBALS['startTime'] = microtime(true);
45
46 // Set module
47 $GLOBALS['module'] = 'beg';
48 $GLOBALS['output_mode'] = -1;
49 $errorCode = null;
50
51 // Load the required file(s)
52 require('inc/config-global.php');
53
54 // Set content type
55 setContentType('text/html');
56
57 // Is the 'beg' extension active?
58 redirectOnUninstalledExtension('beg');
59
60 // Check for userid
61 if (isGetRequestParameterSet('userid')) {
62         // Init variables
63         $points = '0';
64
65         // Don't pay is the default...
66         $pay = false;
67
68         // Validate if it is not a number
69         if (isNicknameUsed(getRequestParameter('userid'))) {
70                 // Is the nickname extension there?
71                 if (isExtensionActive('nickname')) {
72                         // Maybe we have found a nickname?
73                         fetchUserData(getRequestParameter('userid'), 'nickname');
74                 } else {
75                         // Nickname entered but nickname is not active
76                         $errorCode = getCode('EXTENSION_PROBLEM');
77                 }
78         } else {
79                 // Direct userid
80                 fetchUserData(getRequestParameter('userid'));
81         }
82
83         // Check if locked in so don't pay points
84         $status = 'failed';
85
86         // Check if account was found
87         if ((isUserDataValid()) && (getUserData('status') == 'CONFIRMED')) {
88                 // Multiply configured values with 100000 and divide with 100000 so we can also handle small values
89                 // If we need more number behind the decimal dot then we just need to increase all these three
90                 // numbers matching to the numbers behind the decimal dot. Simple! ;-)
91                 $points = mt_rand((getConfig('beg_points') * 100000), (getConfig('beg_points_max') * 100000)) / 100000;
92
93                 // Set nickname / userid for template
94                 $content['userid']      = getRequestParameter('userid');
95                 $content['clicks']      = (getUserData('beg_clicks') + 1);
96                 $content['banner']      = loadTemplate('beg_banner', true);
97                 $content['points']      = translateComma($points);
98         } // END - if
99
100         // User id valid and not webmaster's id?
101         if ((getUserData('userid') > 0) && (getConfig('beg_userid') != getUserData('userid'))) {
102                 // Update counter
103                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_clicks`=`beg_clicks`+1 WHERE `userid`=%s LIMIT 1",
104                         array(getUserData('userid')), __FILE__, __LINE__);
105
106                 // Check for last entry for userid w/o IP number
107                 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_beg_ips` WHERE (`timeout` > (UNIX_TIMESTAMP() - {?beg_timeout?}) OR (timeout > (UNIX_TIMESTAMP() - {?beg_userid_timeout?}) AND `userid`=%s)) AND (`remote_ip`='%s' OR `sid`='%s') LIMIT 1",
108                         array(getUserData('userid'), detectRemoteAddr(), session_id()), __FILE__, __LINE__);
109
110                 // Entry not found, points set and not logged in?
111                 if (((SQL_NUMROWS($result) == '0') || (isAdmin())) && ($points > 0) && (!isMember()) && (getConfig('beg_pay_mode') == 'NONE')) {
112
113                         // Admin is testing?
114                         if (!isAdmin()) {
115                                 // Remember remote address, userid and timestamp for next click
116                                 // but only when there is no admin begging.
117                                 // Admins shall be able to test it!
118                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_beg_ips` (`userid`, `remote_ip`,`sid`, `timeout`) VALUES ('%s','%s','%s', UNIX_TIMESTAMP())",
119                                         array(getUserData('userid'), detectRemoteAddr(), session_id()), __FILE__, __LINE__);
120
121                                 // Was is successfull?
122                                 $pay (SQL_AFFECTEDROWS() == 1);
123                         } else {
124                                 // Is admin!
125                                 $pay = true;
126                         }
127
128                         // Pay points?
129                         if ($pay === true) {
130                                 // Add points to user or begging rallye account
131                                 if (addPointsBeg(getUserData('userid'), $points)) {
132                                         // Set 'done' message
133                                         $content['message'] = loadTemplate('beg_done', true);
134                                 } else {
135                                         // Error!
136                                         $content['message'] = loadTemplate('beg_failed', true);
137                                 }
138                         } else {
139                                 // Error!
140                                 $content['message'] = loadTemplate('beg_failed', true);
141                         }
142                 } elseif (isMember()) {
143                         // Logged in user found!
144                         $content['message'] = loadTemplate('beg_login', true);
145                 } elseif (getConfig('beg_pay_mode') != 'NONE') { // Other pay-mode active!
146                         // Prepare content for template
147                         $content = array(
148                                 'clicks' => $content['clicks'],
149                                 'points' => $content['points'],
150                                 'userid' => $content['userid']
151                         );
152
153                         // Load message template depending on pay-mode
154                         $content['message'] = loadTemplate('beg_pay_mode_'.strtolower(getConfig('beg_pay_mode')), true, $content);
155                         $pay = true;
156                 } else {
157                         // Clicked received while reload lock is active
158                         $content['message'] = loadTemplate('beg_failed', true, $content);
159                 }
160
161                 // Free memory
162                 SQL_FREERESULT($result);
163
164                 // Include header
165                 loadIncludeOnce('inc/header.php');
166
167                 // Load final template
168                 loadTemplate('beg_link', false, $content);
169
170                 // Tracker code enabled? (We don't track users here!
171                 if ((getConfig('beg_pay_mode') != 'NONE') && ($pay === true)) {
172                         // Prepare content for template
173                         // @TODO Opps, what is missing here???
174                         $content = array(
175                         );
176
177                         // Include config-depending template
178                         loadTemplate('beg_pay_code_'.strtolower(getConfig('beg_pay_mode')), false, $content);
179                 } elseif (($pay === false) && (!isset($content['message']))) {
180                         // Cannot pay! :-(
181                         $content['message'] = loadTemplate('beg_failed', true);
182                 }
183
184                 // Include footer
185                 loadIncludeOnce('inc/footer.php');
186         } elseif ((getUserData('status') != 'CONFIRMED') && (getUserData('status') != 'failed')) {
187                 // Maybe locked/unconfirmed account?
188                 $errorCode = generateErrorCodeFromUserStatus();
189         } elseif ((getUserData('userid') == '0') || (getUserData('status') == 'failed')) {
190                 // Inalid or locked account, so let's find out
191                 if (fetchUserData(getRequestParameter('userid'), 'nickname')) {
192                         // Locked account
193                         $errorCode = getCode('ACCOUNT_LOCKED');
194                 } else {
195                         // Invalid nickname! (404)
196                         $errorCode = getCode('USER_404');
197                 }
198         } elseif (getUserData('userid') == getConfig('beg_userid')) {
199                 // Webmaster's id cannot beg for points!
200                 $errorCode = getCode('BEG_SAME_AS_OWN');
201         }
202
203         // Reload to index module
204         if ((!empty($errorCode)) && (!empty($errorCode))) redirectToUrl('modules.php?module=index&amp;code=' . $errorCode . '&amp;ext=beg');
205 } else {
206         // No userid entered
207         redirectToUrl('modules.php?module=index');
208 }
209
210 // Really all done here... ;-)
211 shutdown();
212
213 // [EOF]
214 ?>