X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-wernis.php;h=8ef26d45756b3298190a6782fe188413233ad28f;hp=4729c81f1de3cd656f1efcb93709c5032ab9a716;hb=cd7d344ea7007cfa20413acd3e03e50f0ab86d86;hpb=04b69ac9f33369cbf654396c4a42cb1fff710ff4 diff --git a/inc/modules/member/what-wernis.php b/inc/modules/member/what-wernis.php index 4729c81f1d..8ef26d4575 100644 --- a/inc/modules/member/what-wernis.php +++ b/inc/modules/member/what-wernis.php @@ -14,12 +14,10 @@ * $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 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2013 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 * @@ -39,47 +37,46 @@ // Some security stuff... if (!defined('__SECURITY')) { - die(); + exit(); } elseif (!isMember()) { // User is not logged in redirectToIndexMemberOnlyModule(); } // Add description as navigation point -addMenuDescription('member', __FILE__); +addYouAreHereLink('member', __FILE__); if ((!isExtensionActive('wernis')) && (!isAdmin())) { - loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('wernis')); + displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=wernis%}'); return; } // END - if // Check if the admin has entered the data -if ((getConfig('wernis_api_id') == '') || (getConfig('wernis_api_md5') == '')) { +if ((getWernisApiId() == '') || (getWernisApiMd5() == '')) { // Something important is missing... - loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_API_DATA_MISSING--}'); + displayMessage('{--MEMBER_WERNIS_API_DATA_MISSING--}'); return; } // END - if // Init the content array and points -$content = array(); $points = false; +$content = array(); $points = FALSE; // Is the mode set (withdraw or payout) -if ((!isGetRequestParameterSet('mode')) || (getRequestParameter('mode') == 'choose')) { +if ((!isGetRequestElementSet('do')) || (getRequestElement('do') == 'choose')) { // Let the user choose what he wants to do - $content['refid'] = getConfig(('wernis_refid')); $content['wernis_userid'] = '0'; // Is there an id? - if ((!empty($content['wernis_userid'])) && (!isGetRequestParameterSet('mode'))) { - // Then use an other "mode" - setGetRequestParameter('mode', 'list'); + if ((!empty($content['wernis_userid'])) && (!isGetRequestElementSet('do'))) { + // Then list all entries + setGetRequestElement('do', '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", array(getMemberId()), __FILE__, __LINE__); // Load all rows - $content['rows'] = ''; $SW = 2; + $content['rows'] = ''; while ($data = SQL_FETCHARRAY($result)) { // Prepare data for output $rowContent = array( @@ -87,42 +84,37 @@ if ((!isGetRequestParameterSet('mode')) || (getRequestParameter('mode') == 'choo 'wernis_amount' => $data['wernis_amount'], 'wernis_account' => $data['wernis_account'], 'wernis_type' => $data['wernis_type'], - 'sw' => $SW, ); // Load row template - $content['rows'] .= loadTemplate('member_wernis_mode_list_row', true, $rowContent); - $SW = 3 - $SW; - } + $content['rows'] .= loadTemplate('member_wernis_mode_list_row', TRUE, $rowContent); + } // END - while // Free result SQL_FREERESULT($result); } else { // Default links are not active! - $content['payout_link'] = '{--MEMBER_WERNIS_PAYOUT_DISABLED--}'; - $content['withdraw_link'] = '{--MEMBER_WERNIS_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') { + if (isWernisWithdrawActive()) { // Add link - $content['withdraw_link'] = '
{--MEMBER_WERNIS_MODE_WITHDRAW--}
'; + $content['withdraw_link'] = '
{--MEMBER_WERNIS_MODE_WITHDRAW--}
'; } // END - if // Mode chooser! ;-) - setGetRequestParameter('mode', 'choose'); + setGetRequestElement('do', 'choose'); } -} 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'); +} elseif ((getRequestElement('do') == 'payout') && (getConfig('wernis_payout_active') == 'Y')) { + // Get user's total points and remove the registration fee + $points = getTotalPoints(getMemberId()) - getPointsRegister(); // Is there a percentage or fixed fee? $points = WERNIS_TAKE_FEE($points, 'payout'); @@ -130,11 +122,7 @@ if ((!isGetRequestParameterSet('mode')) || (getRequestParameter('mode') == 'choo // Is this enougth for a payout? if ($points < getConfig('wernis_min_payout')) { // No, then abort here - loadTemplate('admin_settings_saved', false, sprintf( - getMessage('MEMBER_WERNIS_MIN_PAYOUT'), - translateComma(getConfig('wernis_min_payout')), - translateComma($points) - )); + displayMessage('{%message,MEMBER_WERNIS_MIN_PAYOUT=' . $points . '%}'); return; } // END - if @@ -143,122 +131,114 @@ if ((!isGetRequestParameterSet('mode')) || (getRequestParameter('mode') == 'choo $points = bigintval($points[0]); // Add points to content array - $content['points'] = translateComma($points); - - // 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'); - + $content['points'] = $points; +} elseif ((getRequestElement('do') == 'withdraw') && (isWernisWithdrawActive())) { // Prepare data for the template - $content['points'] = translateComma($points); + $content['points'] = getTotalPoints(getMemberId()); $content['wernis_userid'] = ''; - // Add fees to array - WERNIS_ADD_FEES_TO_ARRAY($content); - // Fetch id $content['wernis_userid'] = getUserData('wernis_userid'); } else { // Invalid mode! - loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_WERNIS_MODE_INVALID', getRequestParameter('mode'))); + displayMessage('{%message,MEMBER_WERNIS_MODE_INVALID=' . getRequestElement('do') . '%}'); return; } // Is the formular sent? -if ((isFormSent()) && (isGetRequestParameterSet('mode'))) { +if ((isFormSent()) && (isGetRequestElementSet('do'))) { // Is the user id and password set? - if (!isPostRequestParameterSet(('wernis_userid'))) { + if (!isPostRequestElementSet('wernis_userid')) { // Nothing entered in WDS66 user id - loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_EMPTY_USERNAME--}'); - } elseif (!isPostRequestParameterSet(('wds66_password'))) { + displayMessage('{--MEMBER_WERNIS_EMPTY_USERNAME--}'); + } elseif (!isPostRequestElementSet('wds66_password')) { // Nothing entered in WDS66 password - loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_EMPTY_PASSWORD--}'); - } elseif (!isPostRequestParameterSet(('amount'))) { + displayMessage('{--MEMBER_WERNIS_EMPTY_PASSWORD--}'); + } elseif (!isPostRequestElementSet('amount')) { // Nothing entered in amount - loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_EMPTY_AMOUNT--}'); - } elseif (postRequestParameter('wernis_userid') != bigintval(postRequestParameter('wernis_userid'))) { + displayMessage('{--MEMBER_WERNIS_EMPTY_AMOUNT--}'); + } elseif (postRequestElement('wernis_userid') != bigintval(postRequestElement('wernis_userid'))) { // Only numbers in account id! - loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_INVALID_USERNAME'); - } elseif (postRequestParameter('amount') != bigintval(postRequestParameter('amount'))) { + displayMessage('{--MEMBER_WERNIS_INVALID_USERNAME'); + } elseif (postRequestElement('amount') != bigintval(postRequestElement('amount'))) { // Only numbers in amount! - loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_INVALID_AMOUNT--}'); + displayMessage('{--MEMBER_WERNIS_INVALID_AMOUNT--}'); } else { // Check input data depending on the mode and execute the requested mode - switch (getRequestParameter('mode')) { + switch (getRequestElement('do')) { case 'withdraw': // Widthdraws WDS66 -> This exchange - if (postRequestParameter('amount') < getConfig('wernis_min_withdraw')) { + if (postRequestElement('amount') < getConfig('wernis_min_withdraw')) { // Not enougth entered! - loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_WITHDRAW_AMOUNT_SMALLER_MIN--}'); + displayMessage('{--MEMBER_WERNIS_WITHDRAW_AMOUNT_SMALLER_MIN--}'); } else { // All is fine here so do the withdraw - $success = WERNIS_EXECUTE_WITHDRAW(postRequestParameter('wernis_userid'), md5(postRequestParameter('wds66_password')), postRequestParameter('amount')); - if ($success === true) { + $success = WERNIS_EXECUTE_WITHDRAW(postRequestElement('wernis_userid'), md5(postRequestElement('wds66_password')), postRequestElement('amount')); + if ($success === TRUE) { // Add it to this amount - addPointsDirectly('wernis_withdraw', getMemberId(), bigintval(postRequestParameter('amount'))); + initReferralSystem(); + addPointsThroughReferralSystem('wernis_withdraw', getMemberId(), bigintval(postRequestElement('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(postRequestParameter('wernis_userid')), getMemberId()), __FILE__, __LINE__); + array(bigintval(postRequestElement('wernis_userid')), getMemberId()), __FILE__, __LINE__); // All done! - loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_WITHDRAW_DONE--}'); + displayMessage('{--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()); + displayMessage(GET_WERNIS_ERROR_MESSAGE()); } else { // Something went wrong - loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_WERNIS_WITHDRAW_FAILED', GET_WERNIS_ERROR_MESSAGE())); + displayMessage('{--MEMBER_WERNIS_WITHDRAW_FAILED--}'); } } break; case 'payout': // Payout this exchange -> WDS66 - if (postRequestParameter('amount') < getConfig('wernis_min_payout')) { + if (postRequestElement('amount') < getConfig('wernis_min_payout')) { // Not enougth entered! - loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_PAYOUT_AMOUNT_SMALLER_MIN--}'); - } elseif (postRequestParameter('amount') > $points) { + displayMessage('{--MEMBER_WERNIS_PAYOUT_AMOUNT_SMALLER_MIN--}'); + } elseif (postRequestElement('amount') > $points) { // Not enougth points left! - loadTemplate('admin_settings_saved', false, sprintf(getMessage('MEMBER_WERNIS_PAYOUT_POINTS_DEPLETED'), bigintval(postRequestParameter('amount')), bigintval($points))); + displayMessage(sprintf(getMessage('MEMBER_WERNIS_PAYOUT_POINTS_DEPLETED'), bigintval(postRequestElement('amount')), bigintval($points))); } else { // All is fine here so do the withdraw - $success = WERNIS_EXECUTE_PAYOUT(postRequestParameter('wernis_userid'), postRequestParameter('amount')); - if ($success === true) { - // Sub points - subtractPoints('wernis_payout', getMemberId(), postRequestParameter('amount')); + $success = WERNIS_EXECUTE_PAYOUT(postRequestElement('wernis_userid'), postRequestElement('amount')); + if ($success === TRUE) { + // Sub points and ignore return status + subtractPoints('wernis_payout', getMemberId(), postRequestElement('amount')); // Update WDS66 id SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `wernis_userid`=%s WHERE `userid`=%s LIMIT 1", - array(bigintval(postRequestParameter('wernis_userid')), getMemberId()), __FILE__, __LINE__); + array(bigintval(postRequestElement('wernis_userid')), getMemberId()), __FILE__, __LINE__); // All done! - loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_PAYOUT_DONE--}'); + displayMessage('{--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()); + displayMessage(GET_WERNIS_ERROR_MESSAGE()); } else { // Something went wrong - loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_WERNIS_WITHDRAW_FAILED', GET_WERNIS_ERROR_MESSAGE())); + displayMessage('{--MEMBER_WERNIS_PAYOUT_FAILED--}'); } } break; default: // Invalid mode! - logDebugMessage(__FILE__, __LINE__, sprintf("Invalid mode %s detected.", getRequestParameter('mode'))); - loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_WERNIS_MODE_INVALID', getRequestParameter('mode'))); + logDebugMessage(__FILE__, __LINE__, sprintf("Invalid mode %s detected.", getRequestElement('do'))); + displayMessage('{%message,MEMBER_WERNIS_MODE_INVALID=' . getRequestElement('do') . '%}'); return; - } + } // END - switch } } // END - if // Prepare mode for template name -$mode = sprintf("member_wernis_mode_%s", getRequestParameter('mode')); +$mode = sprintf("member_wernis_mode_%s", getRequestElement('do')); // Load the template -loadTemplate($mode, false, $content); +loadTemplate($mode, FALSE, $content); // [EOF] ?>