Fix for registration, logic went wrong...
[mailer.git] / doubler.php
index a630b2a4f484309aba4b47e28f3d1941311e1665..593f796f0ab2ce15f2280c8d8d3978f20f05da79 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                                      *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Punkteverdoppler                                 *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $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                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * MA  02110-1301  USA                                                  *
  ************************************************************************/
 
-// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
-require_once("inc/libs/security_functions.php");
+// Load security stuff here
+require('inc/libs/security_functions.php');
 
-// Init "action" and "what"
-global $what, $action;
-$GLOBALS['what'] = ""; $GLOBALS['action'] = "";
-if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']);
-if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']);
+// Init start time
+$GLOBALS['startTime'] = microtime(true);
 
 // Set module
-$GLOBALS['module'] = "doubler";
-$GLOBALS['refid'] = 0;
-$CSS = "0";
+$GLOBALS['module'] = 'doubler';
+$GLOBALS['output_mode'] = '0';
 
 // Load the required file(s)
-require ("inc/config.php");
-
-// Is the script installed?
-if (defined('mxchange_installed') && (mxchange_installed))
-{
-       // Probe for referral ID
-       if (!empty($_GET['refid'])) $GLOBALS['refid'] = bigintval($_GET['refid']);
-
-       // Probe for nickname extension and if a nickname was supplied by URL
-       $probe_nickname = ((EXT_IS_ACTIVE("nickname")) && (("".round($GLOBALS['refid'])."") != $GLOBALS['refid']));
-       if ($probe_nickname)
-       {
-               // 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=%d 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);
-       $uid = 0;
-
-       // If no account was found set default refid and status to CONFIRMED
-       if (empty($GLOBALS['refid'])) { $GLOBALS['refid'] = $CONFIG['def_refid']; $status = "CONFIRMED"; }
-
-       // Begin with doubler script...
-       if (isset($_POST['ok']))
-       {
-               // Secure points (so only integer/double values are allowed
-               $_POST['points'] = bigintval($_POST['points']);
-
-               // Begin with doubling process
-               if ((!empty($_POST['userid'])) && (!empty($_POST['pass'])) && (!empty($_POST['points'])))
-               {
-                       // Probe for nickname extension and if a nickname was entered
-                       $probe_nickname = ((EXT_IS_ACTIVE("nickname")) && (("".round($_POST['userid'])."") != $_POST['userid']));
-                       if ($probe_nickname)
-                       {
-                               // 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($_POST['userid']), __FILE__, __LINE__);
-                       }
-                        else
-                       {
-                               // Direct userid entered
-                               $result = SQL_QUERY_ESC("SELECT userid, status, password FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
-                                array(bigintval($_POST['userid'])), __FILE__, __LINE__);
-                       }
-
-                       // Load data
-                       list($uid, $status, $password) = SQL_FETCHROW($result);
-                       $uid = bigintval($uid);
-
-                       // Free result
-                       SQL_FREERESULT($result);
-
-                       // Remove any dots and unwanted chars from the points
-                       $_POST['points'] = bigintval(round(str_replace(",", ".", $_POST['points'])));
-
-                       // Probe for enough points
-                       $probe_points = (($_POST['points'] >= $CONFIG['doubler_min']) && ($_POST['points'] <= $CONFIG['doubler_max']));
-
-                       // Check all together
-                       if ((!empty($uid)) && ($password == generateHash($_POST['pass'], substr($password, 0, -40))) && ($status == "CONFIRMED") && ($probe_points))
-                       {
-                               // Nickname resolved to a unique userid or direct userid entered by the member
-                               $DOUBLER_UID = $uid;
-
-                               // Calulcate points
-                               $POINTS = GET_TOTAL_DATA($uid, "user_points", "points") - GET_TOTAL_DATA($uid, "user_data", "used_points");
-
-                               // So let's continue with probing his points amount
-                               if (($POINTS - $CONFIG['doubler_left'] - $_POST['points'] * $CONFIG['doubler_charge']) >= 0)
-                               {
-                                       // Enough points are left so let's continue with the doubling process
-                                       // Create doubling "account" width *DOUBLED* points
-                                       $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_doubler (userid, refid, points, remote_ip, timemark, completed, is_ref) VALUES ('%s', '%s', '%s', '".$_SERVER['REMOTE_ADDR']."', UNIX_TIMESTAMP(), 'N', 'N')",
-                                        array($uid, bigintval($GLOBALS['refid']), bigintval($_POST['points'] * 2)), __FILE__, __LINE__);
-
-                                       // Subtract entered points
-                                       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET used_points=used_points+%s WHERE userid=%d LIMIT 1",
-                                        array($_POST['points'], $uid), __FILE__, __LINE__);
-
-                                       // Update mediadata as well
-                                       if (GET_EXT_VERSION("mediadata") >= "0.0.4")
-                                       {
-                                               // Update database
-                                               MEDIA_UPDATE_ENTRY(array("total_points"), "sub", $_POST['points']);
-                                       }
-
-                                       // Add points to "total payed" including charge
-                                       $points = $_POST['points'] - $_POST['points'] * $CONFIG['doubler_charge'];
-                                       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET doubler_points=doubler_points+%s WHERE config='0' LIMIT 1",
-                                        array($points), __FILE__, __LINE__);
-                                       $CONFIG['doubler_points'] += $points;
-
-                                       // Destroy cache
-                                       if (GET_EXT_VERSION("cache") >= "0.1.2")
-                                       {
-                                               if ($CACHE->cache_file("config", true)) $CACHE->cache_destroy();
-                                       }
-
-                                       // Add second line for the referral but only when uid != refid
-                                       if (($GLOBALS['refid'] > 0) && ($GLOBALS['refid'] != $uid))
-                                       {
-                                               // Okay add a refid line and apply refid percents
-                                               $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_doubler (userid, refid, points, remote_ip, timemark, completed, is_ref) VALUES ('%s', '0', '%s', '".$_SERVER['REMOTE_ADDR']."', UNIX_TIMESTAMP(), 'N', 'Y')",
-                                                array(bigintval($GLOBALS['refid']), bigintval($_POST['points'] * 2 * $CONFIG['doubler_ref'])), __FILE__, __LINE__);
-
-                                               // And that's why we dont't want to you more than one referral level of doubler-points. ^^^
-                                       }
-
-                                       // Update usage counter
-                                       $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_config SET doubler_counter=doubler_counter+1 WHERE config='0' LIMIT 1", __FILE__, __LINE__);
-                                       $CONFIG['doubler_counter']++;
-
-                                       // Set constant
-                                       define('__DOUBLER_MSG', LOAD_TEMPLATE("doubler_reflink", true, $_POST['userid']));
-                               }
-                                else
-                               {
-                                       // Not enougth points left
-                                       define('__ERROR_MSG', DOUBLER_FORM_NO_POINTS_LEFT);
-                               }
+require('inc/config-global.php');
+
+// Set content type
+setContentType('text/html');
+
+// Is the 'doubler' extension active?
+redirectOnUninstalledExtension('doubler');
+
+// Init content array
+$content = array(
+       'message' => '',
+);
+
+// Begin with doubler script...
+if (isFormSent()) {
+       // Secure points (so only integer/double values are allowed
+       setPostRequestParameter('points', bigintval(postRequestParameter('points')));
+
+       // Begin with doubling process
+       if ((isPostRequestParameterSet('userid')) && (isPostRequestParameterSet('pass')) && (isPostRequestParameterSet('points'))) {
+               // Probe for nickname extension and if a nickname was entered
+               if (isNickNameUsed(postRequestParameter('userid'))) {
+                       // Nickname in URL, so load the id
+                       fetchUserData(postRequestParameter('userid'), 'nickname');
+               } else {
+                       // Direct userid entered
+                       fetchUserData(postRequestParameter('userid'));
+               }
 
+               // Is the data valid?
+               if (!isUserDataValid()) {
+                       // Output message that the userid is not okay
+                       loadTemplate('admin_settings_saved', false, getMessage('DOUBLER_USERID_INVALID'));
+               } // END - if
+
+               // Remove any dots and unwanted chars from the points
+               setPostRequestParameter('points', bigintval(round(convertCommaToDot(postRequestParameter('points')))));
+
+               // Probe for enough points
+               $probe_points = ((postRequestParameter('points') >= getConfig('doubler_min')) && (postRequestParameter('points') <= getConfig('doubler_max')));
+
+               // Check all together
+               if ((isUserDataValid()) && (getUserData('password') == generateHash(postRequestParameter('pass'), 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_userid'] = getUserData('userid');
+
+                       // Calulcate points
+                       $points = countSumTotalData(getUserData('userid'), 'user_points', 'points') - countSumTotalData(getUserData('userid'), 'user_data', 'used_points');
+
+                       // So let's continue with probing his points amount
+                       if (($points - getConfig('doubler_left') - postRequestParameter('points') * getConfig('doubler_charge')) >= 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(getUserData('userid'), determineReferalId(), bigintval(postRequestParameter('points') * 2)), __FILE__, __LINE__);
+
+                               // Subtract entered points
+                               subtractPoints('doubler', getUserData('userid'), postRequestParameter('points'));
+
+                               // Add points to "total payed" including charge
+                               $points = postRequestParameter('points') - postRequestParameter('points') * getConfig('doubler_charge');
+                               updateConfiguration('doubler_points', $points, '+');
+                               incrementConfigEntry('doubler_points', $points);
+
+                               // Add second line for the referal but only when userid != refid
+                               if ((determineReferalId() > 0) && (determineReferalId() != 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')",
+                                               array(
+                                                       determineReferalId(),
+                                                       bigintval(postRequestParameter('points') * 2 * getConfig('doubler_ref'))
+                                               ), __FILE__, __LINE__);
+
+                                       // And that's why we don't want to you more than one referal level of doubler-points. ^^^
+                               } // END - if
+
+                               // Update usage counter
+                               updateConfiguration('doubler_counter', 1, '+');
+
+                               // Set constant
+                               $content['message'] = loadTemplate('doubler_reflink', true, postRequestParameter('userid'));
+                       } else {
+                               // Not enougth points left
+                               $content['message'] = getMessage('DOUBLER_FORM_NO_POINTS_LEFT');
                        }
-                        elseif ($status == "CONFIRMED")
-                       {
-                               // Account is unconfirmed!
-                               define('__ERROR_MSG', DOUBLER_FORM_WRONG_PASS);
-                       }
-                        elseif ($status == "UNCONFIRMED")
-                       {
-                               // Account is unconfirmed!
-                               define('__ERROR_MSG', DOUBLER_FORM_STATUS_UNCONFIRMED);
-                       }
-                        elseif ($status == "LOCKED")
-                       {
-                               // Account is locked by admin / holiday!
-                               define('__ERROR_MSG', DOUBLER_FORM_STATUS_LOCKED);
-                       }
-                        elseif ($_POST['points'] < $CONFIG['doubler_min'])
-                       {
-                               // Not enougth points entered
-                               define('__ERROR_MSG', DOUBLER_FORM_POINTS_MIN);
-                       }
-                        elseif ($_POST['points'] > $CONFIG['doubler_max'])
-                       {
-                               // Too much points entered
-                               define('__ERROR_MSG', DOUBLER_FORM_POINTS_MAX);
-                       }
-                        elseif ($probe_nickname)
-                       {
-                               // Cannot resolv nickname -> userid
-                               define('__ERROR_MSG', DOUBLER_FORM_404_NICKNAME);
-                       }
-                        else
-                       {
-                               // Wrong password or account not found
-                               define('__ERROR_MSG', DOUBLER_FORM_404_MEMBER);
-                       }
-               }
-                elseif (empty($_POST['userid']))
-               {
-                       // Login not entered
-                       define('__ERROR_MSG', DOUBLER_FORM_404_LOGIN);
-               }
-                elseif (empty($_POST['pass']))
-               {
-                       // Password not entered
-                       define('__ERROR_MSG', DOUBLER_FORM_404_PASSWORD);
-               }
-                elseif (empty($_POST['points']))
-               {
-                       // points not entered
-                       define('__ERROR_MSG', DOUBLER_FORM_404_POINTS);
+               } elseif (getUserData('status') == 'CONFIRMED') {
+                       // Account is unconfirmed!
+                       $content['message'] = getMessage('DOUBLER_FORM_WRONG_PASS');
+               } elseif (getUserData('status') == 'UNCONFIRMED') {
+                       // Account is unconfirmed!
+                       $content['message'] = getMessage('DOUBLER_FORM_STATUS_UNCONFIRMED');
+               } elseif (getUserData('status') == 'LOCKED') {
+                       // Account is locked by admin / holiday!
+                       $content['message'] = getMessage('DOUBLER_FORM_STATUS_LOCKED');
+               } elseif (postRequestParameter('points') < getConfig('doubler_min')) {
+                       // Not enougth points entered
+                       $content['message'] = getMessage('DOUBLER_FORM_POINTS_MIN');
+               } elseif (postRequestParameter('points') > getConfig('doubler_max')) {
+                       // Too much points entered
+                       $content['message'] = getMessage('DOUBLER_FORM_POINTS_MAX');
+               } elseif (isNickNameUsed(postRequestParameter('userid'))) {
+                       // Cannot resolv nickname -> userid
+                       $content['message'] = getMessage('DOUBLER_FORM_404_NICKNAME');
+               } else {
+                       // Wrong password or account not found
+                       $content['message'] = getMessage('DOUBLER_FORM_404_MEMBER');
                }
+       } elseif (!isPostRequestParameterSet('userid')) {
+               // Login not entered
+               $content['message'] = getMessage('DOUBLER_FORM_404_LOGIN');
+       } elseif (!isPostRequestParameterSet('pass')) {
+               // Password not entered
+               $content['message'] = getMessage('DOUBLER_FORM_404_PASSWORD');
+       } elseif (!isPostRequestParameterSet('points')) {
+               // points not entered
+               $content['message'] = getMessage('DOUBLER_FORM_404_POINTS');
        }
+} // END - if (isFormSet())
 
-       // Set messages to nothing
-       if (!defined('__DOUBLER_MSG')) define('__DOUBLER_MSG', "");
-       if (!defined('__ERROR_MSG'))   define('__ERROR_MSG'  , "");
-
-       // Shall I check for points immediately?
-       if ($CONFIG['doubler_send_mode'] == "DIRECT") require(PATH."inc/doubler_send.php");
-
-       // Output header
-       include(PATH."inc/header.php");
+// Shall I check for points immediately?
+if (getConfig('doubler_send_mode') == 'DIRECT') loadInclude('inc/mails/doubler_mails.php');
 
-       // Banner in text
-       define('__DOUBLER_BANNER', LOAD_TEMPLATE("doubler_banner", true));
+// Output header
+loadIncludeOnce('inc/header.php');
 
-       // Load header/footer templates
-       define('__DOUBLER_HEADER', LOAD_TEMPLATE("doubler_header", true));
-       define('__DOUBLER_FOOTER', LOAD_TEMPLATE("doubler_footer", true));
+// Banner in text
+$content['banner'] = loadTemplate('doubler_banner', true);
 
-       if (!empty($uid))
-       {
-               // Transfer userid/nickname to constant
-               define('__REFID', $uid);
-       }
-        elseif (!empty($GLOBALS['refid']))
-       {
-               // Transfer userid/nickname to constant
-               define('__REFID', $GLOBALS['refid']);
-       }
-        else
-       {
-               // Transfer default refid to constant
-               define('__REFID', $CONFIG['def_refid']);
-       }
+// Load header/footer templates
+$content['header'] = loadTemplate('doubler_header', true);
+$content['footer'] = loadTemplate('doubler_footer', true);
 
-       // Percent values etc.
-       define('__CHARGE_VALUE', TRANSLATE_COMMA($CONFIG['doubler_charge'] * 100));
-       define('__REF_VALUE'   , TRANSLATE_COMMA($CONFIG['doubler_ref'] * 100));
-       define('__TOTAL_VALUE' , TRANSLATE_COMMA($CONFIG['doubler_points']));
-       define('__MIN_VALUE'   , TRANSLATE_COMMA($CONFIG['doubler_min']));
-       define('__MAX_VALUE'   , TRANSLATE_COMMA($CONFIG['doubler_max']));
-
-       // Text "Enter login"
-       if (EXT_IS_ACTIVE("nickname"))
-       {
-               // Choose login/nickname
-               define('DOUBLER_ENTER_LOGIN', GUEST_ENTER_LOGIN_NICKNAME);
-       }
-        else
-       {
-               // Simple login ID
-               define('DOUBLER_ENTER_LOGIN', GUEST_ENTER_LOGIN);
-       }
-
-       // Which mail-send-mode did the admin setup?
-       switch ($CONFIG['doubler_send_mode'])
-       {
-       case "DIRECT":
-               define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_DIRECT);
-               break;
+if (isUserDataValid()) {
+       // Transfer userid/nickname to constant
+       $content['refid'] = getUserData('userid');
+} else {
+       // Transfer userid/nickname to constant
+       $content['refid'] = determineReferalId();
+}
 
-       case "RESET":
-               define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_RESET);
-               break;
-       }
+// Percent values etc.
+$content['charge'] = translateComma(getConfig('doubler_charge') * 100);
+$content['ref']    = translateComma(getConfig('doubler_ref') * 100);
+$content['total']  = translateComma(getConfig('doubler_points'));
+$content['min']    = translateComma(getConfig('doubler_min'));
+$content['max']    = translateComma(getConfig('doubler_max'));
+
+// Text "Enter login"
+if (isExtensionActive('nickname')) {
+       // Choose login/nickname
+       $content['enter_login'] = getMessage('GUEST_ENTER_LOGIN_NICKNAME');
+} else {
+       // Simple login id
+       $content['enter_login'] = getMessage('GUEST_ENTER_LOGIN');
+}
 
-       // Generate table with already payed out doubles
-       define('__DOUBLER_PAYOUT_HISTORY', DOUBLER_GENERATE_TABLE("0", "Y", "N", "DESC"));
+// Which mail-send-mode did the admin setup?
+$content['payout_time'] = getMessage('DOUBLER_PAYOUT_TIME_' . getConfig('doubler_send_mode'));
 
-       // Generate timemark
-       define('__TIMEOUT_MARK', CREATE_FANCY_TIME($CONFIG['doubler_timeout']));
+// Generate table with already payed out doubles
+$content['payout_history'] = generateDoublerTable(0, 'Y', 'N', 'DESC');
 
-       // Usage counter
-       define('__DOUBLER_COUNTER', $CONFIG['doubler_counter']);
+// Generate timemark
+$content['timeout_mark'] = createFancyTime(getConfig('doubler_timeout'));
 
-       // Points left to doubler
-       define('__LEFT_VALUE', TRANSLATE_COMMA(DOUBLER_GET_TOTAL_POINTS_LEFT()));
+// Points left to doubler
+$content['left'] = translateComma(DOUBLER_GET_TOTAL_POINTS_LEFT());
 
-       // Output neccessary form for this
-       LOAD_TEMPLATE("doubler_index");
+// Output neccessary form for this
+loadTemplate('doubler_index', false, $content);
 
-       // Output footer
-       include(PATH."inc/footer.php");
-}
- else
-{
-       // You have to configure first!
-       LOAD_URL(URL."/install.php");
-}
+// Output footer
+loadIncludeOnce('inc/footer.php');
 
-// Really all done here... ;-)
+// [EOF]
 ?>