Hotfix
[mailer.git] / doubler.php
index 03a2e5872a946c1f5e2ea0bd1b8b9c3447f78d81..9d4e63cbd74aa16466f937597b9ff86d4ca0431b 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 02/13/2005 *
- * ===============                              Last change: 02/13/2005 *
+ * Mailer v0.2.1-FINAL                                Start: 02/13/2005 *
+ * ===================                          Last change: 02/13/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : doubler.php                                      *
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -44,230 +43,174 @@ $GLOBALS['startTime'] = microtime(true);
 
 // Set module
 $GLOBALS['module'] = 'doubler';
-$GLOBALS['refid'] = 0;
-$GLOBALS['output_mode'] = 0;
+$GLOBALS['output_mode'] = '0';
 
 // Load the required file(s)
 require('inc/config-global.php');
 
+// Set content type
+setContentType('text/html');
+
 // Is the 'doubler' extension active?
 redirectOnUninstalledExtension('doubler');
 
-// Is the script installed?
-if (!isInstalled()) {
-       // You have to install first!
-       redirectToUrl('install.php');
-} // END - if
-
-// Probe for referal ID
-if (REQUEST_ISSET_GET('refid')) $GLOBALS['refid'] = REQUEST_GET('refid');
-
-// Only check this if refid is provided!
-if ($GLOBALS['refid'] > 0) {
-       // Do we have nickname or userid set?
-       if (isNicknameUsed($GLOBALS['refid'])) {
-               // Nickname in URL, so load the ID
-               $result = SQL_QUERY_ESC("SELECT `userid`, `status` FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `nickname`='%s' LIMIT 1",
-                       array(bigintval($GLOBALS['refid'])), __FILE__, __LINE__);
-       } else {
-               // Direct userid entered
-               $result = SQL_QUERY_ESC("SELECT userid, status FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `userid`=%s LIMIT 1",
-                       array(bigintval($GLOBALS['refid'])), __FILE__, __LINE__);
-       }
-
-       // Load data
-       list($rid, $status_ref) = SQL_FETCHROW($result);
-       $GLOBALS['refid'] = bigintval($rid);
-
-       // Free memory
-       SQL_FREERESULT($result);
-} // END - if
-
-// Init userid
-$uid = 0;
-
-// If no account was found set default refid and status to CONFIRMED
-if (empty($GLOBALS['refid'])) {
-       $GLOBALS['refid'] = getConfig('def_refid');
-       $status = 'CONFIRMED';
-} // END - if
+// Init content array
+$content = array(
+       'message' => '',
+);
 
 // Begin with doubler script...
 if (isFormSent()) {
        // Secure points (so only integer/double values are allowed
-       REQUEST_SET_POST('points', bigintval(REQUEST_POST('points')));
+       setPostRequestElement('points', bigintval(postRequestElement('points')));
 
        // Begin with doubling process
-       if ((REQUEST_ISSET_POST('userid')) && (REQUEST_ISSET_POST('pass')) && (REQUEST_ISSET_POST('points'))) {
+       if ((isPostRequestElementSet('userid')) && (isPostRequestElementSet('password')) && (isPostRequestElementSet('points'))) {
                // Probe for nickname extension and if a nickname was entered
-               if (isNickNameUsed(REQUEST_POST('userid'))) {
-                       // Nickname in URL, so load the ID
-                       $result = SQL_QUERY_ESC("SELECT `userid`, `status`, `password` FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `nickname`='%s' LIMIT 1",
-                               array(REQUEST_POST('userid')), __FILE__, __LINE__);
+               if (isNicknameUsed(postRequestElement('userid'))) {
+                       // Nickname in URL, so load the id
+                       fetchUserData(postRequestElement('userid'), 'nickname');
                } else {
                        // Direct userid entered
-                       $result = SQL_QUERY_ESC("SELECT `userid`, `status, `password` FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `userid`=%s LIMIT 1",
-                               array(bigintval(REQUEST_POST('userid'))), __FILE__, __LINE__);
+                       fetchUserData(postRequestElement('userid'));
                }
 
-               // Load data
-               list($uid, $status, $password) = SQL_FETCHROW($result);
-               $uid = bigintval($uid);
-
-               // Free result
-               SQL_FREERESULT($result);
+               // Is the data valid?
+               if (!isUserDataValid()) {
+                       // Output message that the userid is not okay
+                       displayMessage('{--DOUBLER_USERID_INVALID--}');
+               } // END - if
 
                // Remove any dots and unwanted chars from the points
-               REQUEST_SET_POST('points', bigintval(round(convertCommaToDot(REQUEST_POST('points')))));
+               setPostRequestElement('points', bigintval(round(convertCommaToDot(postRequestElement('points')))));
 
                // Probe for enough points
-               $probe_points = ((REQUEST_POST('points') >= getConfig('doubler_min')) && (REQUEST_POST('points') <= getConfig('doubler_max')));
+               $probe_points = ((postRequestElement('points') >= getConfig('doubler_min')) && (postRequestElement('points') <= getConfig('doubler_max')));
 
                // Check all together
-               if ((!empty($uid)) && ($password == generateHash(REQUEST_POST('pass'), substr($password, 0, -40))) && ($status == 'CONFIRMED') && ($probe_points)) {
+               if ((isUserDataValid()) && (getUserData('password') == generateHash(postRequestElement('password'), substr(getUserData('password'), 0, -40))) && (getUserData('status') == 'CONFIRMED') && ($probe_points)) {
                        // Nickname resolved to a unique userid or direct userid entered by the member
-                       $GLOBALS['doubler_uid'] = $uid;
+                       $GLOBALS['local_doubler_userid'] = getUserData('userid');
 
                        // Calulcate points
-                       $points = GET_TOTAL_DATA($uid, 'user_points', 'points') - GET_TOTAL_DATA($uid, 'user_data', 'used_points');
+                       $points = getTotalPoints(getUserData('userid'));
 
                        // So let's continue with probing his points amount
-                       if (($points - getConfig('doubler_left') - REQUEST_POST('points') * getConfig('doubler_charge')) >= 0)
+                       if (($points - getConfig('doubler_left') - postRequestElement('points') * getConfig('doubler_charge') / 100) >= 0) {
                                // Enough points are left so let's continue with the doubling process
-                               // Create doubling "account" width *DOUBLED* points
-                               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')",
-                                       array($uid, bigintval($GLOBALS['refid']), bigintval(REQUEST_POST('points') * 2)), __FILE__, __LINE__);
-
-                               // Subtract entered points
-                               SUB_POINTS('doubler', $uid, REQUEST_POST('points'));
+                               // Create doubling "account" with *DOUBLED* points
+                               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_doubler` (`userid`,`refid`,`points`,`remote_ip`,`timemark`,`completed`,`is_ref`) VALUES (%s,%s,%s,'%s', UNIX_TIMESTAMP(), 'N','N')",
+                                       array(
+                                               getUserData('userid'),
+                                               convertZeroToNull(determineReferralId()),
+                                               bigintval(postRequestElement('points') * 2),
+                                               detectRemoteAddr()
+                                       ), __FILE__, __LINE__);
+
+                               // Subtract entered points and ignore return status
+                               subtractPoints('doubler', getUserData('userid'), postRequestElement('points'));
 
                                // Add points to "total payed" including charge
-                               $points = REQUEST_POST('points') - REQUEST_POST('points') * getConfig('doubler_charge');
+                               $points = postRequestElement('points') - postRequestElement('points') * getConfig('doubler_charge') / 100;
                                updateConfiguration('doubler_points', $points, '+');
                                incrementConfigEntry('doubler_points', $points);
 
-                               // Add second line for the referal but only when uid != refid
-                               if (($GLOBALS['refid'] > 0) && ($GLOBALS['refid'] != $uid)) {
+                               // Add second line for the referral but only when userid != refid
+                               if ((isValidUserId(determineReferralId())) && (determineReferralId() != getUserData('userid'))) {
                                        // Okay add a refid line and apply refid percents
-                                       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')",
+                                       SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_doubler` (`userid`,`refid`,`points`,`remote_ip`,`timemark`,`completed`,`is_ref`) VALUES (%s,0,%s,'%s',UNIX_TIMESTAMP(),'N','Y')",
                                                array(
-                                                       bigintval($GLOBALS['refid']),
-                                                       bigintval(REQUEST_POST('points') * 2 * getConfig('doubler_ref'))
+                                                       convertZeroToNull(determineReferralId()),
+                                                       (postRequestElement('points') * 2 * getConfig('doubler_ref') / 100),
+                                                       detectRemoteAddr()
                                                ), __FILE__, __LINE__);
 
-                                       // And that's why we don't want to you more than one referal level of doubler-points. ^^^
+                                       // And that's why we don't want to you more than one referral level of doubler-points. ^^^
                                } // END - if
 
                                // Update usage counter
                                updateConfiguration('doubler_counter', 1, '+');
 
                                // Set constant
-                               define('__DOUBLER_MSG', LOAD_TEMPLATE('doubler_reflink', true, REQUEST_POST('userid')));
+                               $content['message'] = loadTemplate('doubler_reflink', true, postRequestElement('userid'));
                        } else {
                                // Not enougth points left
-                               define('__ERROR_MSG', getMessage('DOUBLER_FORM_NO_POINTS_LEFT'));
+                               $content['message'] = '{--DOUBLER_FORM_NO_POINTS_LEFT--}';
                        }
-               } elseif ($status == 'CONFIRMED') {
+               } elseif (getUserData('status') == 'CONFIRMED') {
                        // Account is unconfirmed!
-                       define('__ERROR_MSG', getMessage('DOUBLER_FORM_WRONG_PASS'));
-               } elseif ($status == 'UNCONFIRMED') {
+                       $content['message'] = '{--DOUBLER_FORM_WRONG_PASS--}';
+               } elseif (getUserData('status') == 'UNCONFIRMED') {
                        // Account is unconfirmed!
-                       define('__ERROR_MSG', getMessage('DOUBLER_FORM_STATUS_UNCONFIRMED'));
-               } elseif ($status == 'LOCKED') {
+                       $content['message'] = '{--DOUBLER_FORM_STATUS_UNCONFIRMED--}';
+               } elseif (getUserData('status') == 'LOCKED') {
                        // Account is locked by admin / holiday!
-                       define('__ERROR_MSG', getMessage('DOUBLER_FORM_STATUS_LOCKED'));
-               } elseif (REQUEST_POST('points') < getConfig('doubler_min')) {
+                       $content['message'] = '{--DOUBLER_FORM_STATUS_LOCKED--}';
+               } elseif (postRequestElement('points') < getConfig('doubler_min')) {
                        // Not enougth points entered
-                       define('__ERROR_MSG', getMessage('DOUBLER_FORM_POINTS_MIN'));
-               } elseif (REQUEST_POST('points') > getConfig('doubler_max')) {
+                       $content['message'] = '{--DOUBLER_FORM_POINTS_MIN--}';
+               } elseif (postRequestElement('points') > getConfig('doubler_max')) {
                        // Too much points entered
-                       define('__ERROR_MSG', getMessage('DOUBLER_FORM_POINTS_MAX'));
-               } elseif (isNickNameUsed(REQUEST_POST('userid'))) {
+                       $content['message'] = '{--DOUBLER_FORM_POINTS_MAX--}';
+               } elseif (isNicknameUsed(postRequestElement('userid'))) {
                        // Cannot resolv nickname -> userid
-                       define('__ERROR_MSG', getMessage('DOUBLER_FORM_404_NICKNAME'));
+                       $content['message'] = '{--DOUBLER_FORM_404_NICKNAME--}';
                } else {
                        // Wrong password or account not found
-                       define('__ERROR_MSG', getMessage('DOUBLER_FORM_404_MEMBER'));
+                       $content['message'] = '{--DOUBLER_FORM_404_MEMBER--}';
                }
-       } elseif (!REQUEST_ISSET_POST('userid')) {
+       } elseif (!isPostRequestElementSet('userid')) {
                // Login not entered
-               define('__ERROR_MSG', getMessage('DOUBLER_FORM_404_LOGIN'));
-       } elseif (!REQUEST_ISSET_POST('pass')) {
+               $content['message'] = '{--DOUBLER_FORM_404_LOGIN--}';
+       } elseif (!isPostRequestElementSet('password')) {
                // Password not entered
-               define('__ERROR_MSG', getMessage('DOUBLER_FORM_404_PASSWORD'));
-       } elseif (!REQUEST_ISSET_POST('points')) {
+               $content['message'] = '{--DOUBLER_FORM_404_PASSWORD--}';
+       } elseif (!isPostRequestElementSet('points')) {
                // points not entered
-               define('__ERROR_MSG', getMessage('DOUBLER_FORM_404_POINTS'));
+               $content['message'] = '{--DOUBLER_FORM_404_POINTS--}';
        }
-}
-
-// Set messages to nothing
-if (!defined('__DOUBLER_MSG')) define('__DOUBLER_MSG', '');
-if (!defined('__ERROR_MSG'))   define('__ERROR_MSG'  , '');
+} // END - if (isFormSet())
 
 // Shall I check for points immediately?
-if (getConfig('doubler_send_mode') == 'DIRECT') loadInclude('inc/doubler_send.php');
+if (getConfig('doubler_send_mode') == 'DIRECT') {
+       loadInclude('inc/mails/doubler_mails.php');
+} // END - if
 
 // Output header
 loadIncludeOnce('inc/header.php');
 
 // Banner in text
-define('__DOUBLER_BANNER', LOAD_TEMPLATE('doubler_banner', true));
+$content['banner'] = loadTemplate('doubler_banner', true);
 
 // Load header/footer templates
-define('__DOUBLER_HEADER', LOAD_TEMPLATE('doubler_header', true));
-define('__DOUBLER_FOOTER', LOAD_TEMPLATE('doubler_footer', true));
+$content['header'] = loadTemplate('doubler_header', true);
+$content['footer'] = loadTemplate('doubler_footer', true);
 
-if (!empty($uid)) {
+if (isUserDataValid()) {
        // Transfer userid/nickname to constant
-       define('__REFID', $uid);
+       $content['refid'] = getUserData('userid');
 } else {
        // Transfer userid/nickname to constant
-       define('__REFID', $GLOBALS['refid']);
+       $content['refid'] = determineReferralId();
 }
 
-// Percent values etc.
-define('__CHARGE_VALUE', translateComma(getConfig('doubler_charge') * 100));
-define('__REF_VALUE'   , translateComma(getConfig('doubler_ref') * 100));
-define('__TOTAL_VALUE' , translateComma(getConfig('doubler_points')));
-define('__MIN_VALUE'   , translateComma(getConfig('doubler_min')));
-define('__MAX_VALUE'   , translateComma(getConfig('doubler_max')));
-
 // Text "Enter login"
-if (EXT_IS_ACTIVE('nickname')) {
+if (isExtensionActive('nickname')) {
        // Choose login/nickname
-       define('DOUBLER_ENTER_LOGIN', getMessage('GUEST_ENTER_LOGIN_NICKNAME'));
+       $content['enter_login'] = '{--GUEST_ENTER_LOGIN_NICKNAME--}';
 } else {
-       // Simple login ID
-       define('DOUBLER_ENTER_LOGIN', getMessage('GUEST_ENTER_LOGIN'));
+       // Simple login id
+       $content['enter_login'] = '{--GUEST_ENTER_LOGIN--}';
 }
 
 // Which mail-send-mode did the admin setup?
-switch (getConfig('doubler_send_mode')) {
-       case 'DIRECT':
-               define('DOUBLER_PAYOUT_TIME', getMessage('DOUBLER_PAYOUT_TIME_DIRECT'));
-               break;
-
-       case 'RESET':
-               define('DOUBLER_PAYOUT_TIME', getMessage('DOUBLER_PAYOUT_TIME_RESET'));
-               break;
-}
+$content['payout_time'] = '{--DOUBLER_PAYOUT_TIME_' . getConfig('doubler_send_mode') . '--}';
 
 // Generate table with already payed out doubles
-define('__DOUBLER_PAYOUT_HISTORY', DOUBLER_GENERATE_TABLE('0', 'Y', 'N', 'DESC'));
-
-// Generate timemark
-define('__TIMEOUT_MARK', createFancyTime(getConfig('doubler_timeout')));
-
-// Usage counter
-define('__DOUBLER_COUNTER', getConfig('doubler_counter'));
-
-// Points left to doubler
-define('__LEFT_VALUE', translateComma(DOUBLER_GET_TOTAL_POINTS_LEFT()));
+$content['payout_history'] = generateDoublerTable(0, 'Y', 'N', 'DESC');
 
 // Output neccessary form for this
-// @TODO Rewrite all constants
-LOAD_TEMPLATE('doubler_index');
+loadTemplate('doubler_index', false, $content);
 
 // Output footer
 loadIncludeOnce('inc/footer.php');