X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-wernis.php;h=a0acd2d8e6bd2dbd2b01a1563e37fffa2a0fc3ee;hp=5edf6ac7a63150580d7e1a47c9bf60ce46649fce;hb=a226d81121cb96048b1ed85fd8584a87d435b0db;hpb=752ebf38ef93c3b92187c5aad2c734fc5c5caf74 diff --git a/inc/modules/member/what-wernis.php b/inc/modules/member/what-wernis.php index 5edf6ac7a6..a0acd2d8e6 100644 --- a/inc/modules/member/what-wernis.php +++ b/inc/modules/member/what-wernis.php @@ -1,7 +1,7 @@ MAKE_DATETIME($data['wernis_timestamp'], "2"), - 'points' => TRANSLATE_COMMA($data['wernis_amount']), - 'acc' => bigintval($data['wernis_account']), - 'status' => WERNIS_TRANSFER_STATUS($data['wernis_type']), - 'raw_type' => strtolower($data['wernis_type']), - 'sw' => $SW, + 'wernis_timestamp' => generateDateTime($data['wernis_timestamp'], 2), + 'wernis_amount' => $data['wernis_amount'], + 'wernis_account' => $data['wernis_account'], + 'wernis_type' => $data['wernis_type'], ); // Load row template - $content['rows'] .= LOAD_TEMPLATE("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 { - // Mode pay - $_GET['mode'] = "pay"; + // Default links are not active! + $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--}
'; + } // END - if + + // Is the withdraw mode active? + if (getConfig('wernis_withdraw_active') == 'Y') { + // Add link + $content['withdraw_link'] = '
{--MEMBER_WERNIS_MODE_WITHDRAW--}
'; + } // END - if + + // Mode chooser! ;-) + setGetRequestParameter('mode', 'choose'); } -} -if ($_GET['mode'] == "pay") { - // Get total points and check if the user can request a payout - $points = GET_TOTAL_DATA($GLOBALS['userid'], "user_points", "points") - GET_TOTAL_DATA($GLOBALS['userid'], "user_data", "used_points"); +} elseif ((getRequestParameter('mode') == 'payout') && (getConfig('wernis_payout_active') == 'Y')) { + // Get user's total points and remove the registration fee + $points = getTotalPoints(getMemberId()) - getPointsRegister(); - // No dots here... - $points = explode(".", $points); - $points = bigintval($points[0]); - - // Remove the registration fee - $points = $points - $_CONFIG['points_register']; + // Is there a percentage or fixed fee? + $points = WERNIS_TAKE_FEE($points, 'payout'); // Is this enougth for a payout? - if ($points < $_CONFIG['wernis_min_payout']) { + if ($points < getConfig('wernis_min_payout')) { // No, then abort here - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_MIN_PAYOUT_PAYOUT, TRANSLATE_COMMA($_CONFIG['wernis_min_payout']))); + loadTemplate('admin_settings_saved', false, sprintf( + getMessage('MEMBER_WERNIS_MIN_PAYOUT'), + translateComma(getConfig('wernis_min_payout')), + translateComma($points) + )); return; - } + } // END - if + + // No dots here... + $points = explode('.', $points); + $points = bigintval($points[0]); // Add points to content array - $content['points'] = $points; - $content['min_points'] = TRANSLATE_COMMA($_CONFIG['wernis_min_payout']); - - // Get WDS66 id - $content['wds66_id'] = ""; - $result = SQL_QUERY_ESC("SELECT wernis_userid FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", - array($GLOBALS['userid']), __FILE__, __LINE__); - - // Are there some entries? - if (SQL_NUMROWS($result) == 1) { - // Fetch ID - list($content['wds66_id']) = SQL_FETCHROW($result); - } + $content['points'] = $points; - // Free result - SQL_FREERESULT($result); + // Get WDS66 username + $content['wernis_userid'] = getUserData('wernis_userid'); +} elseif ((getRequestParameter('mode') == 'withdraw') && (getConfig('wernis_withdraw_active') == 'Y')) { + // Prepare data for the template + $content['points'] = getTotalPoints(getMemberId()); + $content['wernis_userid'] = ''; + + // Fetch id + $content['wernis_userid'] = getUserData('wernis_userid'); } else { // Invalid mode! - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_MODE_INVALID, SQL_ESCAPE($_GET['mode']))); + loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_WERNIS_MODE_INVALID', getRequestParameter('mode'))); return; } // Is the formular sent? -if ((isset($_POST['ok'])) && (isset($_GET['mode']))) { - // Check input data depending on the mode and execute the requested mode - switch ($_GET['mode']) { - case "pay": // Payout this exchange -> WDS66 - // Is the user ID and password set? - if (empty($_POST['wds66_id'])) { - // Nothing entered in WDS66 user ID - LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_EMPTY_USERNAME); - OUTPUT_HTML("
"); - } elseif (empty($_POST['wds66_password'])) { - // Nothing entered in WDS66 password - LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_EMPTY_PASSWORD); - OUTPUT_HTML("
"); - } elseif (empty($_POST['amount'])) { - // Nothing entered in amount - LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_EMPTY_AMOUNT); - OUTPUT_HTML("
"); - } elseif ($_POST['wds66_id'] != bigintval($_POST['wds66_id'])) { - // Only numbers in account ID! - LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_INVALID_USERNAME); - OUTPUT_HTML("
"); - } elseif ($_POST['amount'] != bigintval($_POST['amount'])) { - // Only numbers in amount! - LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_INVALID_AMOUNT); - OUTPUT_HTML("
"); - } elseif ($_POST['amount'] < $_CONFIG['wernis_min_payout']) { - // Not enougth entered! - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_AMOUNT_SMALLER_MIN, bigintval($_CONFIG['wernis_min_payout']))); - OUTPUT_HTML("
"); - } elseif ($_POST['amount'] > $points) { - // Not enougth points left! - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_PAYOUT_POINTS_DEPLETED, bigintval($_POST['amount']), bigintval($points))); - OUTPUT_HTML("
"); - } else { - // All is fine here so do the payout - $success = WERNIS_EXECUTE_PAYOUT($_POST['wds66_id'], md5($_POST['wds66_password']), $_POST['amount']); - if ($success) { - // Default is locked! - $locked = true; - - // Shall I "pay" the referral points imidiately? - if ($_CONFIG['ref_payout'] == "0") { - // Yes, "pay" it now - $locked = false; +if ((isFormSent()) && (isGetRequestParameterSet('mode'))) { + // Is the user id and password set? + if (!isPostRequestParameterSet('wernis_userid')) { + // Nothing entered in WDS66 user id + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_EMPTY_USERNAME--}'); + } elseif (!isPostRequestParameterSet('wds66_password')) { + // Nothing entered in WDS66 password + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_EMPTY_PASSWORD--}'); + } elseif (!isPostRequestParameterSet('amount')) { + // Nothing entered in amount + 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, '{--MEMBER_WERNIS_INVALID_USERNAME'); + } elseif (postRequestParameter('amount') != bigintval(postRequestParameter('amount'))) { + // Only numbers in amount! + loadTemplate('admin_settings_saved', false, '{--MEMBER_WERNIS_INVALID_AMOUNT--}'); + } else { + // Check input data depending on the mode and execute the requested mode + switch (getRequestParameter('mode')) { + case 'withdraw': // Widthdraws WDS66 -> This exchange + if (postRequestParameter('amount') < getConfig('wernis_min_withdraw')) { + // Not enougth entered! + loadTemplate('admin_settings_saved', false, '{--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) { + // Add it to this 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(postRequestParameter('wernis_userid')), getMemberId()), __FILE__, __LINE__); + + // All 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, getMaskedMessage('MEMBER_WERNIS_WITHDRAW_FAILED', GET_WERNIS_ERROR_MESSAGE())); } - - // Sub points - SUB_POINTS($GLOBALS['userid'], $_POST['amount']); - - // Update WDS66 id - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET `wernis_userid`=%s WHERE userid=%s LIMIT 1", - array(bigintval($_POST['wds66_id']), $GLOBALS['userid']), __FILE__, __LINE__); - - // All done! - LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_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 - LOAD_TEMPLATE("admin_settings_saved", false, GET_WERNIS_ERROR_MESSAGE()); - OUTPUT_HTML("
"); + } + break; + + case 'payout': // Payout this exchange -> WDS66 + if (postRequestParameter('amount') < getConfig('wernis_min_payout')) { + // Not enougth entered! + 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('MEMBER_WERNIS_PAYOUT_POINTS_DEPLETED'), bigintval(postRequestParameter('amount')), bigintval($points))); } else { - // Something went wrong - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_PAYOUT_FAILED, GET_WERNIS_ERROR_MESSAGE())); - OUTPUT_HTML("
"); + // 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')); + + // 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__); + + // All 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, getMaskedMessage('MEMBER_WERNIS_WITHDRAW_FAILED', GET_WERNIS_ERROR_MESSAGE())); + } } - } - break; + break; - default: // Invalid mode! - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_MODE_INVALID, SQL_ESCAPE($_GET['mode']))); - return; + 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'))); + return; + } // END - switch } -} +} // END - if // Prepare mode for template name -$mode = sprintf("member_wernis_mode_%s", SQL_ESCAPE($_GET['mode'])); +$mode = sprintf("member_wernis_mode_%s", getRequestParameter('mode')); // Load the template -LOAD_TEMPLATE($mode, false, $content); +loadTemplate($mode, false, $content); -// +// [EOF] ?>