X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-wernis.php;h=3e3189811f4adae4d2c53dd4daecca2f6f39ce69;hb=0f9bc55be42f9851cc87a06f3971c853a83425a7;hp=44f10ad3b373343d00990f9a21e4eec2fc5d87ca;hpb=e2148142f8b1a8f40fd6e7ca32185569c5a9083e;p=mailer.git diff --git a/inc/modules/member/what-wernis.php b/inc/modules/member/what-wernis.php index 44f10ad3b3..3e3189811f 100644 --- a/inc/modules/member/what-wernis.php +++ b/inc/modules/member/what-wernis.php @@ -18,6 +18,7 @@ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -55,7 +56,7 @@ if ((!isExtensionActive('wernis')) && (!isAdmin())) { // Check if the admin has entered the data if ((getConfig('wernis_api_id') == '') || (getConfig('wernis_api_md5') == '')) { // Something important is missing... - loadTemplate('admin_settings_saved', false, getMessage('WERNIS_MEMBER_API_DATA_MISSING')); + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_API_DATA_MISSING--}'); return; } // END - if @@ -63,72 +64,63 @@ if ((getConfig('wernis_api_id') == '') || (getConfig('wernis_api_md5') == '')) { $content = array(); $points = false; // Is the mode set (withdraw or payout) -if ((!isGetRequestElementSet('mode')) || (getRequestElement('mode') == 'choose')) { +if ((!isGetRequestParameterSet('mode')) || (getRequestParameter('mode') == 'choose')) { // Let the user choose what he wants to do $content['refid'] = getConfig(('wernis_refid')); $content['wernis_userid'] = '0'; - // Are there some entries? - if (fetchUserData(getMemberId())) { - // Fetch id - $content['wernis_userid'] = getUserData('wernis_userid'); - } // END - if - // Is there an id? - if ((!empty($content['wernis_userid'])) && (!isGetRequestElementSet('mode'))) { + if ((!empty($content['wernis_userid'])) && (!isGetRequestParameterSet('mode'))) { // Then use an other "mode" - setRequestGetElement('mode', 'list'); + setGetRequestParameter('mode', 'list'); // And load all rows! - $result = SQL_QUERY_ESC("SELECT `id`,`wernis_account`,`wernis_amount`,`wernis_timestamp`,`wernis_type` FROM `{?_MYSQL_PREFIX?}_user_wernis` WHERE `userid`=%s ORDER BY `wernis_timestamp` DESC", + $result = SQL_QUERY_ESC("SELECT `id`, `wernis_account`, `wernis_amount`, `wernis_timestamp`, `wernis_type` FROM `{?_MYSQL_PREFIX?}_user_wernis` WHERE `userid`=%s ORDER BY `wernis_timestamp` DESC", array(getMemberId()), __FILE__, __LINE__); // Load all rows - $content['rows'] = ''; $SW = 2; + $content['rows'] = ''; while ($data = SQL_FETCHARRAY($result)) { // Prepare data for output $rowContent = array( 'wernis_timestamp' => generateDateTime($data['wernis_timestamp'], 2), - 'points' => translateComma($data['wernis_amount']), - 'wernis_account' => bigintval($data['wernis_account']), - 'status' => WERNIS_TRANSFER_STATUS($data['wernis_type']), - 'raw_type' => strtolower($data['wernis_type']), - 'sw' => $SW, + 'wernis_amount' => $data['wernis_amount'], + 'wernis_account' => $data['wernis_account'], + 'wernis_type' => $data['wernis_type'], ); // Load row template $content['rows'] .= loadTemplate('member_wernis_mode_list_row', true, $rowContent); - $SW = 3 - $SW; - } + } // END - while // Free result SQL_FREERESULT($result); } else { // Default links are not active! - $content['payout_link'] = '{--WERNIS_MEMBER_PAYOUT_DISABLED--}'; - $content['withdraw_link'] = '{--WERNIS_MEMBER_WITHDRAW_DISABLED--}'; + $content['payout_link'] = '{--MEMBER_WERNIS_PAYOUT_DISABLED--}'; + $content['withdraw_link'] = '{--MEMBER_WERNIS_WITHDRAW_DISABLED--}'; // Is the payout mode active? if (getConfig('wernis_payout_active') == 'Y') { // Add link - $content['payout_link'] = "
{--MEMBER_WERNIS_MODE_PAYOUT--}
"; + $content['payout_link'] = '
{--MEMBER_WERNIS_MODE_PAYOUT--}
'; } // END - if // Is the withdraw mode active? if (getConfig('wernis_withdraw_active') == 'Y') { // Add link - $content['withdraw_link'] = "
{--MEMBER_WERNIS_MODE_WITHDRAW--}
"; + $content['withdraw_link'] = '
{--MEMBER_WERNIS_MODE_WITHDRAW--}
'; } // END - if // Mode chooser! ;-) - setRequestGetElement('mode', 'choose'); + setGetRequestParameter('mode', 'choose'); } -} elseif ((getRequestElement('mode') == 'payout') && (getConfig('wernis_payout_active') == 'Y')) { +} elseif ((getRequestParameter('mode') == 'payout') && (getConfig('wernis_payout_active') == 'Y')) { // Get total points and check if the user can request a payout $points = countSumTotalData(getMemberId(), 'user_points', 'points') - countSumTotalData(getMemberId(), 'user_data', 'used_points'); // Remove the registration fee - $points = $points - getConfig('points_register'); + $points = $points - getPointsRegister(); // Is there a percentage or fixed fee? $points = WERNIS_TAKE_FEE($points, 'payout'); @@ -137,7 +129,7 @@ if ((!isGetRequestElementSet('mode')) || (getRequestElement('mode') == 'choose') if ($points < getConfig('wernis_min_payout')) { // No, then abort here loadTemplate('admin_settings_saved', false, sprintf( - getMessage('WERNIS_MEMBER_MIN_PAYOUT'), + getMessage('MEMBER_WERNIS_MIN_PAYOUT'), translateComma(getConfig('wernis_min_payout')), translateComma($points) )); @@ -150,132 +142,118 @@ if ((!isGetRequestElementSet('mode')) || (getRequestElement('mode') == 'choose') // Add points to content array $content['points'] = translateComma($points); - $content['min_points'] = translateComma(getConfig('wernis_min_payout')); - - // Add fees to array - WERNIS_ADD_FEES_TO_ARRAY($content); - - // Init WDS66 userid - $content['wernis_userid'] = ''; - // Are there some entries? - if (fetchUserData(getMemberId())) { - // Fetch id - $content['wernis_userid'] = getUserData('wernis_userid'); - } // END - if -} elseif ((getRequestElement('mode') == 'withdraw') && (getConfig('wernis_withdraw_active') == 'Y')) { + // Get WDS66 username + $content['wernis_userid'] = getUserData('wernis_userid'); +} elseif ((getRequestParameter('mode') == 'withdraw') && (getConfig('wernis_withdraw_active') == 'Y')) { // Get total points for just displaying them $points = countSumTotalData(getMemberId(), 'user_points', 'points') - countSumTotalData(getMemberId(), 'user_data', 'used_points'); // Prepare data for the template $content['points'] = translateComma($points); - $content['min_points'] = translateComma(getConfig('wernis_min_withdraw')); $content['wernis_userid'] = ''; // Add fees to array WERNIS_ADD_FEES_TO_ARRAY($content); - // Get WDS66 id - if (fetchUserData(getMemberId())) { - // Fetch id - $content['wernis_userid'] = getUserData('wernis_userid'); - } // END - if + // Fetch id + $content['wernis_userid'] = getUserData('wernis_userid'); } else { // Invalid mode! - loadTemplate('admin_settings_saved', false, sprintf(getMessage('WERNIS_MEMBER_MODE_INVALID'), getRequestElement('mode'))); + loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_WERNIS_MODE_INVALID', getRequestParameter('mode'))); return; } // Is the formular sent? -if ((isFormSent()) && (isGetRequestElementSet('mode'))) { +if ((isFormSent()) && (isGetRequestParameterSet('mode'))) { // Is the user id and password set? - if (!isPostRequestElementSet(('wernis_userid'))) { + if (!isPostRequestParameterSet(('wernis_userid'))) { // Nothing entered in WDS66 user id - loadTemplate('admin_settings_saved', false, getMessage('WERNIS_MEMBER_EMPTY_USERNAME')); - } elseif (!isPostRequestElementSet(('wds66_password'))) { + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_EMPTY_USERNAME--}'); + } elseif (!isPostRequestParameterSet(('wds66_password'))) { // Nothing entered in WDS66 password - loadTemplate('admin_settings_saved', false, getMessage('WERNIS_MEMBER_EMPTY_PASSWORD')); - } elseif (!isPostRequestElementSet(('amount'))) { + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_EMPTY_PASSWORD--}'); + } elseif (!isPostRequestParameterSet(('amount'))) { // Nothing entered in amount - loadTemplate('admin_settings_saved', false, getMessage('WERNIS_MEMBER_EMPTY_AMOUNT')); - } elseif (postRequestElement('wernis_userid') != bigintval(postRequestElement('wernis_userid'))) { + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_EMPTY_AMOUNT--}'); + } elseif (postRequestParameter('wernis_userid') != bigintval(postRequestParameter('wernis_userid'))) { // Only numbers in account id! - loadTemplate('admin_settings_saved', false, getMessage('WERNIS_MEMBER_INVALID_USERNAME')); - } elseif (postRequestElement('amount') != bigintval(postRequestElement('amount'))) { + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_INVALID_USERNAME'); + } elseif (postRequestParameter('amount') != bigintval(postRequestParameter('amount'))) { // Only numbers in amount! - loadTemplate('admin_settings_saved', false, getMessage('WERNIS_MEMBER_INVALID_AMOUNT')); + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_INVALID_AMOUNT--}'); } else { // Check input data depending on the mode and execute the requested mode - switch (getRequestElement('mode')) { + switch (getRequestParameter('mode')) { case 'withdraw': // Widthdraws WDS66 -> This exchange - if (postRequestElement('amount') < getConfig('wernis_min_withdraw')) { + if (postRequestParameter('amount') < getConfig('wernis_min_withdraw')) { // Not enougth entered! - loadTemplate('admin_settings_saved', false, sprintf(getMessage('WERNIS_MEMBER_AMOUNT_SMALLER_MIN'), translateComma(getConfig('wernis_min_withdraw')))); + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_WITHDRAW_AMOUNT_SMALLER_MIN--}'); } else { // All is fine here so do the withdraw - $success = WERNIS_EXECUTE_WITHDRAW(postRequestElement('wernis_userid'), md5(postRequestElement('wds66_password')), postRequestElement('amount')); + $success = WERNIS_EXECUTE_WITHDRAW(postRequestParameter('wernis_userid'), md5(postRequestParameter('wds66_password')), postRequestParameter('amount')); if ($success === true) { // Add it to this amount - addPointsDirectly('wernis_withdraw', getMemberId(), bigintval(postRequestElement('amount'))); + addPointsDirectly('wernis_withdraw', getMemberId(), bigintval(postRequestParameter('amount'))); // Update the user data as well.. SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `wernis_userid`=%s WHERE `userid`=%s LIMIT 1", - array(bigintval(postRequestElement('wernis_userid')), getMemberId()), __FILE__, __LINE__); + array(bigintval(postRequestParameter('wernis_userid')), getMemberId()), __FILE__, __LINE__); // All done! - loadTemplate('admin_settings_saved', false, getMessage('WERNIS_MEMBER_WITHDRAW_DONE')); + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_WITHDRAW_DONE--}'); return; } elseif ((GET_WERNIS_ERROR_CODE() == 'user_failed') || (GET_WERNIS_ERROR_CODE() == 'own_failed') || (GET_WERNIS_ERROR_CODE() == 'amount_failed')) { // Wrong login data loadTemplate('admin_settings_saved', false, GET_WERNIS_ERROR_MESSAGE()); } else { // Something went wrong - loadTemplate('admin_settings_saved', false, sprintf(getMessage('WERNIS_MEMBER_WITHDRAW_FAILED'), GET_WERNIS_ERROR_MESSAGE())); + loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_WERNIS_WITHDRAW_FAILED', GET_WERNIS_ERROR_MESSAGE())); } } break; case 'payout': // Payout this exchange -> WDS66 - if (postRequestElement('amount') < getConfig('wernis_min_payout')) { + if (postRequestParameter('amount') < getConfig('wernis_min_payout')) { // Not enougth entered! - loadTemplate('admin_settings_saved', false, sprintf(getMessage('WERNIS_MEMBER_AMOUNT_SMALLER_MIN'), translateComma(getConfig('wernis_min_payout')))); - } elseif (postRequestElement('amount') > $points) { + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_PAYOUT_AMOUNT_SMALLER_MIN--}'); + } elseif (postRequestParameter('amount') > $points) { // Not enougth points left! - loadTemplate('admin_settings_saved', false, sprintf(getMessage('WERNIS_MEMBER_PAYOUT_POINTS_DEPLETED'), bigintval(postRequestElement('amount')), bigintval($points))); + loadTemplate('admin_settings_saved', false, sprintf(getMessage('MEMBER_WERNIS_PAYOUT_POINTS_DEPLETED'), bigintval(postRequestParameter('amount')), bigintval($points))); } else { // All is fine here so do the withdraw - $success = WERNIS_EXECUTE_PAYOUT(postRequestElement('wernis_userid'), postRequestElement('amount')); + $success = WERNIS_EXECUTE_PAYOUT(postRequestParameter('wernis_userid'), postRequestParameter('amount')); if ($success === true) { // Sub points - subtractPoints('wernis_payout', getMemberId(), postRequestElement('amount')); + subtractPoints('wernis_payout', getMemberId(), postRequestParameter('amount')); // Update WDS66 id SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `wernis_userid`=%s WHERE `userid`=%s LIMIT 1", - array(bigintval(postRequestElement('wernis_userid')), getMemberId()), __FILE__, __LINE__); + array(bigintval(postRequestParameter('wernis_userid')), getMemberId()), __FILE__, __LINE__); // All done! - loadTemplate('admin_settings_saved', false, getMessage('WERNIS_MEMBER_PAYOUT_DONE')); + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_PAYOUT_DONE--}'); return; } elseif ((GET_WERNIS_ERROR_CODE() == 'user_failed') || (GET_WERNIS_ERROR_CODE() == 'own_failed') || (GET_WERNIS_ERROR_CODE() == 'amount_failed') || (GET_WERNIS_ERROR_CODE() == 'api_amount_failed')) { // Wrong login data loadTemplate('admin_settings_saved', false, GET_WERNIS_ERROR_MESSAGE()); } else { // Something went wrong - loadTemplate('admin_settings_saved', false, sprintf(getMessage('WERNIS_MEMBER_WITHDRAW_FAILED'), GET_WERNIS_ERROR_MESSAGE())); + loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_WERNIS_WITHDRAW_FAILED', GET_WERNIS_ERROR_MESSAGE())); } } break; default: // Invalid mode! - logDebugMessage(__FILE__, __LINE__, sprintf("Invalid mode %s detected.", getRequestElement('mode'))); - loadTemplate('admin_settings_saved', false, sprintf(getMessage('WERNIS_MEMBER_MODE_INVALID'), getRequestElement('mode'))); + logDebugMessage(__FILE__, __LINE__, sprintf("Invalid mode %s detected.", getRequestParameter('mode'))); + loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_WERNIS_MODE_INVALID', getRequestParameter('mode'))); return; } } } // END - if // Prepare mode for template name -$mode = sprintf("member_wernis_mode_%s", getRequestElement('mode')); +$mode = sprintf("member_wernis_mode_%s", getRequestParameter('mode')); // Load the template loadTemplate($mode, false, $content);