]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-wernis.php
Withdraw now only allowed to sponsor in wernis/primera extension. Payout (untested...
[mailer.git] / inc / modules / member / what-wernis.php
index 202c754d2c8f9ebec87cebf91c27bf8e6bd2b3f6..ca832333d9e8352bccfe8f406c741a5b85b5db6b 100644 (file)
@@ -57,9 +57,9 @@ if ((empty($_CONFIG['wernis_api_id'])) || (empty($_CONFIG['wernis_api_md5']))) {
 // Init the content array and points
 $content = array(); $points = false;
 
-// Is the mode set (withdraw or payout)
-if ((!isset($_GET['mode'])) || ($_GET['mode'] == "choose")) {
-       // Let the user choose what he wants to do
+// Is the mode set (payout only!)
+if (!isset($_GET['mode'])) {
+       // Get referal id
        $content['refid'] = bigintval($_CONFIG['wernis_refid']);
 
        // Get WDS66 id
@@ -105,10 +105,11 @@ if ((!isset($_GET['mode'])) || ($_GET['mode'] == "choose")) {
                // Free result
                SQL_FREERESULT($result);
        } else {
-               // Mode chooser! ;-)
-               $_GET['mode'] = "choose";
+               // Mode pay
+               $_GET['mode'] = "pay";
        }
-} elseif ($_GET['mode'] == "pay") {
+}
+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");
 
@@ -141,27 +142,6 @@ if ((!isset($_GET['mode'])) || ($_GET['mode'] == "choose")) {
                list($content['wds66_id']) = SQL_FETCHROW($result);
        }
 
-       // Free result
-       SQL_FREERESULT($result);
-} elseif ($_GET['mode'] == "withdraw") {
-       // Get total points for just displaying them
-       $points = GET_TOTAL_DATA($GLOBALS['userid'], "user_points", "points") - GET_TOTAL_DATA($GLOBALS['userid'], "user_data", "used_points");
-
-       // Prepare data for the template
-       $content['points']              = TRANSLATE_COMMA($points);
-       $content['min_points']  = TRANSLATE_COMMA($_CONFIG['wernis_min_withdraw']);
-       $content['wds66_id']    = "";
-
-       // Get 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);
-       }
-
        // Free result
        SQL_FREERESULT($result);
 } else {
@@ -174,59 +154,6 @@ if ((!isset($_GET['mode'])) || ($_GET['mode'] == "choose")) {
 if ((isset($_POST['ok'])) && (isset($_GET['mode']))) {
        // Check input data depending on the mode and execute the requested mode
        switch ($_GET['mode']) {
-               case "withdraw": // Widthdraws WDS66 -> This exchange
-                       // 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("<br />");
-                       } elseif (empty($_POST['wds66_password'])) {
-                               // Nothing entered in WDS66 password
-                               LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_EMPTY_PASSWORD);
-                               OUTPUT_HTML("<br />");
-                       } elseif (empty($_POST['amount'])) {
-                               // Nothing entered in amount
-                               LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_EMPTY_AMOUNT);
-                               OUTPUT_HTML("<br />");
-                       } 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("<br />");
-                       } elseif ($_POST['amount'] != bigintval($_POST['amount'])) {
-                               // Only numbers in amount!
-                               LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_INVALID_AMOUNT);
-                               OUTPUT_HTML("<br />");
-                       } elseif ($_POST['amount'] < $_CONFIG['wernis_min_withdraw']) {
-                               // Not enougth entered!
-                               LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_AMOUNT_SMALLER_MIN, bigintval($_CONFIG['wernis_min_withdraw'])));
-                               OUTPUT_HTML("<br />");
-                       } else {
-                               // All is fine here so do the withdraw
-                               $success = WERNIS_EXECUTE_WITHDRAW($_POST['wds66_id'], md5($_POST['wds66_password']), $_POST['amount']);
-                               if ($success) {
-                                       // Add it to this amount
-                                       $DEPTH = 0;
-                                       ADD_POINTS_REFSYSTEM($GLOBALS['userid'], bigintval($_POST['amount']), false, 0, false, "direct");
-
-                                       // Update the user data as well..
-                                       $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_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
-                                       LOAD_TEMPLATE("admin_settings_saved", false, GET_WERNIS_ERROR_MESSAGE());
-                                       OUTPUT_HTML("<br />");
-                               } else {
-                                       // Something went wrong
-                                       LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_WITHDRAW_FAILED, GET_WERNIS_ERROR_MESSAGE()));
-                                       OUTPUT_HTML("<br />");
-                               }
-                       }
-                       break;
-
                case "pay": // Payout this exchange -> WDS66
                        // Is the user ID and password set?
                        if (empty($_POST['wds66_id'])) {
@@ -258,7 +185,7 @@ if ((isset($_POST['ok'])) && (isset($_GET['mode']))) {
                                LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_PAYOUT_POINTS_DEPLETED, bigintval($_POST['amount']), bigintval($points)));
                                OUTPUT_HTML("<br />");
                        } else {
-                               // All is fine here so do the withdraw
+                               // 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!
@@ -283,7 +210,7 @@ if ((isset($_POST['ok'])) && (isset($_GET['mode']))) {
                                        OUTPUT_HTML("<br />");
                                } else {
                                        // Something went wrong
-                                       LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_WITHDRAW_FAILED, GET_WERNIS_ERROR_MESSAGE()));
+                                       LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_PAYOUT_FAILED, GET_WERNIS_ERROR_MESSAGE()));
                                        OUTPUT_HTML("<br />");
                                }
                        }