More fixes (constants still there)
[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  * $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  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
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.                                  *
27  *                                                                      *
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.                         *
32  *                                                                      *
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,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Load security stuff here
40 require('inc/libs/security_functions.php');
41
42 // Init start time
43 $GLOBALS['startTime'] = microtime(true);
44
45 // Set module
46 $GLOBALS['module'] = 'doubler';
47 $GLOBALS['output_mode'] = 0;
48
49 // Load the required file(s)
50 require('inc/config-global.php');
51
52 // Set content type
53 setContentType('text/html');
54
55 // Is the 'doubler' extension active?
56 redirectOnUninstalledExtension('doubler');
57
58 // Probe for referal ID
59 if (isGetRequestElementSet('refid')) $GLOBALS['refid'] = getRequestElement('refid');
60
61 // Only check this if refid is provided!
62 if (determineReferalId() > 0) {
63         // Do we have nickname or userid set?
64         if (isNicknameUsed(determineReferalId())) {
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(determineReferalId()), __FILE__, __LINE__);
68         } else {
69                 // Direct userid entered
70                 $result = SQL_QUERY_ESC("SELECT `userid`, `status` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1",
71                         array(determineReferalId()), __FILE__, __LINE__);
72         }
73
74         // Load data
75         list($rid, $status_ref) = SQL_FETCHROW($result);
76         $GLOBALS['refid'] = bigintval($rid);
77
78         // Free memory
79         SQL_FREERESULT($result);
80 } // END - if
81
82 // Init userid
83 $userid = 0;
84
85 // If no account was found set default refid and status to CONFIRMED
86 if (empty($GLOBALS['refid'])) {
87         $GLOBALS['refid'] = getConfig('def_refid');
88         $status = 'CONFIRMED';
89 } // END - if
90
91 // Init content array
92 $content = array(
93         'message' => '',
94 );
95
96 // Begin with doubler script...
97 if (isFormSent()) {
98         // Secure points (so only integer/double values are allowed
99         setRequestPostElement('points', bigintval(postRequestElement('points')));
100
101         // Begin with doubling process
102         if ((isPostRequestElementSet('userid')) && (isPostRequestElementSet('pass')) && (isPostRequestElementSet('points'))) {
103                 // Probe for nickname extension and if a nickname was entered
104                 if (isNickNameUsed(postRequestElement('userid'))) {
105                         // Nickname in URL, so load the ID
106                         $result = SQL_QUERY_ESC("SELECT `userid`, `status`, `password` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `nickname`='%s' LIMIT 1",
107                                 array(postRequestElement('userid')), __FILE__, __LINE__);
108                 } else {
109                         // Direct userid entered
110                         $result = SQL_QUERY_ESC("SELECT `userid`, `status, `password` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1",
111                                 array(bigintval(postRequestElement('userid'))), __FILE__, __LINE__);
112                 }
113
114                 // Load data
115                 list($userid, $status, $password) = SQL_FETCHROW($result);
116                 $userid = bigintval($userid);
117
118                 // Free result
119                 SQL_FREERESULT($result);
120
121                 // Remove any dots and unwanted chars from the points
122                 setRequestPostElement('points', bigintval(round(convertCommaToDot(postRequestElement('points')))));
123
124                 // Probe for enough points
125                 $probe_points = ((postRequestElement('points') >= getConfig('doubler_min')) && (postRequestElement('points') <= getConfig('doubler_max')));
126
127                 // Check all together
128                 if ((!empty($userid)) && ($password == generateHash(postRequestElement('pass'), substr($password, 0, -40))) && ($status == 'CONFIRMED') && ($probe_points)) {
129                         // Nickname resolved to a unique userid or direct userid entered by the member
130                         $GLOBALS['doubler_userid'] = $userid;
131
132                         // Calulcate points
133                         $points = countSumTotalData($userid, 'user_points', 'points') - countSumTotalData($userid, 'user_data', 'used_points');
134
135                         // So let's continue with probing his points amount
136                         if (($points - getConfig('doubler_left') - postRequestElement('points') * getConfig('doubler_charge')) >= 0) {
137                                 // Enough points are left so let's continue with the doubling process
138                                 // Create doubling "account" width *DOUBLED* points
139                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_doubler` (`userid`, `refid`, `points`, `remote_ip`, `timemark`, `completed`, `is_ref`) VALUES ('%s','%s','%s','".detectRemoteAddr()."', UNIX_TIMESTAMP(), 'N','N')",
140                                         array($userid, determineReferalId(), bigintval(postRequestElement('points') * 2)), __FILE__, __LINE__);
141
142                                 // Subtract entered points
143                                 subtractPoints('doubler', $userid, postRequestElement('points'));
144
145                                 // Add points to "total payed" including charge
146                                 $points = postRequestElement('points') - postRequestElement('points') * getConfig('doubler_charge');
147                                 updateConfiguration('doubler_points', $points, '+');
148                                 incrementConfigEntry('doubler_points', $points);
149
150                                 // Add second line for the referal but only when userid != refid
151                                 if ((determineReferalId() > 0) && (determineReferalId() != $userid)) {
152                                         // Okay add a refid line and apply refid percents
153                                         SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_doubler` (`userid`, `refid`, `points`, `remote_ip`, `timemark`, `completed`, `is_ref`) VALUES ('%s',0,'%s','".detectRemoteAddr()."',UNIX_TIMESTAMP(),'N','Y')",
154                                                 array(
155                                                         determineReferalId(),
156                                                         bigintval(postRequestElement('points') * 2 * getConfig('doubler_ref'))
157                                                 ), __FILE__, __LINE__);
158
159                                         // And that's why we don't want to you more than one referal level of doubler-points. ^^^
160                                 } // END - if
161
162                                 // Update usage counter
163                                 updateConfiguration('doubler_counter', 1, '+');
164
165                                 // Set constant
166                                 $content['message'] = loadTemplate('doubler_reflink', true, postRequestElement('userid'));
167                         } else {
168                                 // Not enougth points left
169                                 $content['message'] = getMessage('DOUBLER_FORM_NO_POINTS_LEFT');
170                         }
171                 } elseif ($status == 'CONFIRMED') {
172                         // Account is unconfirmed!
173                         $content['message'] = getMessage('DOUBLER_FORM_WRONG_PASS');
174                 } elseif ($status == 'UNCONFIRMED') {
175                         // Account is unconfirmed!
176                         $content['message'] = getMessage('DOUBLER_FORM_STATUS_UNCONFIRMED');
177                 } elseif ($status == 'LOCKED') {
178                         // Account is locked by admin / holiday!
179                         $content['message'] = getMessage('DOUBLER_FORM_STATUS_LOCKED');
180                 } elseif (postRequestElement('points') < getConfig('doubler_min')) {
181                         // Not enougth points entered
182                         $content['message'] = getMessage('DOUBLER_FORM_POINTS_MIN');
183                 } elseif (postRequestElement('points') > getConfig('doubler_max')) {
184                         // Too much points entered
185                         $content['message'] = getMessage('DOUBLER_FORM_POINTS_MAX');
186                 } elseif (isNickNameUsed(postRequestElement('userid'))) {
187                         // Cannot resolv nickname -> userid
188                         $content['message'] = getMessage('DOUBLER_FORM_404_NICKNAME');
189                 } else {
190                         // Wrong password or account not found
191                         $content['message'] = getMessage('DOUBLER_FORM_404_MEMBER');
192                 }
193         } elseif (!isPostRequestElementSet('userid')) {
194                 // Login not entered
195                 $content['message'] = getMessage('DOUBLER_FORM_404_LOGIN');
196         } elseif (!isPostRequestElementSet('pass')) {
197                 // Password not entered
198                 $content['message'] = getMessage('DOUBLER_FORM_404_PASSWORD');
199         } elseif (!isPostRequestElementSet('points')) {
200                 // points not entered
201                 $content['message'] = getMessage('DOUBLER_FORM_404_POINTS');
202         }
203 }
204
205 // Shall I check for points immediately?
206 if (getConfig('doubler_send_mode') == 'DIRECT') loadInclude('inc/mails/doubler_mails.php');
207
208 // Output header
209 loadIncludeOnce('inc/header.php');
210
211 // Banner in text
212 $content['banner'] = loadTemplate('doubler_banner', true);
213
214 // Load header/footer templates
215 $content['header'] = loadTemplate('doubler_header', true);
216 $content['footer'] = loadTemplate('doubler_footer', true);
217
218 if (!empty($userid)) {
219         // Transfer userid/nickname to constant
220         $content['refid'] = $userid;
221 } else {
222         // Transfer userid/nickname to constant
223         $content['refid'] = determineReferalId();
224 }
225
226 // Percent values etc.
227 $content['charge'] = translateComma(getConfig('doubler_charge') * 100);
228 $content['ref']    = translateComma(getConfig('doubler_ref') * 100);
229 $content['total']  = translateComma(getConfig('doubler_points'));
230 $content['min']    = translateComma(getConfig('doubler_min'));
231 $content['max']    = translateComma(getConfig('doubler_max'));
232
233 // Text "Enter login"
234 if (isExtensionActive('nickname')) {
235         // Choose login/nickname
236         $content['enter_login'] = getMessage('GUEST_ENTER_LOGIN_NICKNAME');
237 } else {
238         // Simple login ID
239         $content['enter_login'] = getMessage('GUEST_ENTER_LOGIN');
240 }
241
242 // Which mail-send-mode did the admin setup?
243 $content['payout_time'] = getMessage('DOUBLER_PAYOUT_TIME_' . getConfig('doubler_send_mode'));
244
245 // Generate table with already payed out doubles
246 $content['payout_history'] = generateDoublerTable(0, 'Y', 'N', 'DESC');
247
248 // Generate timemark
249 $content['timeout_mark'] = createFancyTime(getConfig('doubler_timeout'));
250
251 // Points left to doubler
252 $content['left'] = translateComma(DOUBLER_GET_TOTAL_POINTS_LEFT());
253
254 // Output neccessary form for this
255 loadTemplate('doubler_index', false, $content);
256
257 // Output footer
258 loadIncludeOnce('inc/footer.php');
259
260 // [EOF]
261 ?>