Withdraw now only allowed to sponsor in wernis/primera extension. Payout (untested...
[mailer.git] / inc / modules / member / what-wernis.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 04/12/2004 *
4  * ================                             Last change: 11/16/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-wernis.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Wernis requests                                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auszahlungsanfragen                              *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!IS_MEMBER()) {
39         // User is not logged in
40         LOAD_URL("modules.php?module=index");
41 } elseif ((!EXT_IS_ACTIVE("wernis")) && (!IS_ADMIN())) {
42         // Extension "wernis" is not activated
43         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "wernis");
44         return;
45 }
46
47 // Add description as navigation point
48 ADD_DESCR("member", basename(__FILE__));
49
50 // Check if the admin has entered the data
51 if ((empty($_CONFIG['wernis_api_id'])) || (empty($_CONFIG['wernis_api_md5']))) {
52         // Something important is missing...
53         LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_API_DATA_MISSING);
54         return;
55 }
56
57 // Init the content array and points
58 $content = array(); $points = false;
59
60 // Is the mode set (payout only!)
61 if (!isset($_GET['mode'])) {
62         // Get referal id
63         $content['refid'] = bigintval($_CONFIG['wernis_refid']);
64
65         // Get WDS66 id
66         $result = SQL_QUERY_ESC("SELECT wernis_userid FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
67                 array($GLOBALS['userid']), __FILE__, __LINE__);
68
69         // Are there some entries?
70         if (SQL_NUMROWS($result) == 1) {
71                 // Fetch ID
72                 list($content['wds66_id']) = SQL_FETCHROW($result);
73         }
74
75         // Free result
76         SQL_FREERESULT($result);
77
78         // Is there an ID?
79         if ((!empty($content['wds66_id'])) && (!isset($_GET['mode']))) {
80                 // Then use an other "mode"
81                 $_GET['mode'] = "list";
82
83                 // And load all rows!
84                 $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",
85                         array($GLOBALS['userid']), __FILE__, __LINE__);
86
87                 // Load all rows
88                 $content['rows'] = ""; $SW = 2;
89                 while ($data = SQL_FETCHARRAY($result)) {
90                         // Prepare data for output
91                         $rowContent = array(
92                                 'stamp'                 => MAKE_DATETIME($data['wernis_timestamp'], "2"),
93                                 'points'                => TRANSLATE_COMMA($data['wernis_amount']),
94                                 'acc'                   => bigintval($data['wernis_account']),
95                                 'status'                => WERNIS_TRANSFER_STATUS($data['wernis_type']),
96                                 'raw_type'              => strtolower($data['wernis_type']),
97                                 'sw'                    => $SW,
98                         );
99
100                         // Load row template
101                         $content['rows'] .= LOAD_TEMPLATE("member_wernis_mode_list_row", true, $rowContent);
102                         $SW = 3 - $SW;
103                 }
104
105                 // Free result
106                 SQL_FREERESULT($result);
107         } else {
108                 // Mode pay
109                 $_GET['mode'] = "pay";
110         }
111 }
112 if ($_GET['mode'] == "pay") {
113         // Get total points and check if the user can request a payout
114         $points = GET_TOTAL_DATA($GLOBALS['userid'], "user_points", "points") - GET_TOTAL_DATA($GLOBALS['userid'], "user_data", "used_points");
115
116         // No dots here...
117         $points = explode(".", $points);
118         $points = bigintval($points[0]);
119
120         // Remove the registration fee
121         $points = $points - $_CONFIG['points_register'];
122
123         // Is this enougth for a payout?
124         if ($points < $_CONFIG['wernis_min_payout']) {
125                 // No, then abort here
126                 LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_MIN_PAYOUT_PAYOUT, TRANSLATE_COMMA($_CONFIG['wernis_min_payout'])));
127                 return;
128         }
129
130         // Add points to content array
131         $content['points']              = $points;
132         $content['min_points']  = TRANSLATE_COMMA($_CONFIG['wernis_min_payout']);
133
134         // Get WDS66 id
135         $content['wds66_id'] = "";
136         $result = SQL_QUERY_ESC("SELECT wernis_userid FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
137                 array($GLOBALS['userid']), __FILE__, __LINE__);
138
139         // Are there some entries?
140         if (SQL_NUMROWS($result) == 1) {
141                 // Fetch ID
142                 list($content['wds66_id']) = SQL_FETCHROW($result);
143         }
144
145         // Free result
146         SQL_FREERESULT($result);
147 } else {
148         // Invalid mode!
149         LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_MODE_INVALID, SQL_ESCAPE($_GET['mode'])));
150         return;
151 }
152
153 // Is the formular sent?
154 if ((isset($_POST['ok'])) && (isset($_GET['mode']))) {
155         // Check input data depending on the mode and execute the requested mode
156         switch ($_GET['mode']) {
157                 case "pay": // Payout this exchange -> WDS66
158                         // Is the user ID and password set?
159                         if (empty($_POST['wds66_id'])) {
160                                 // Nothing entered in WDS66 user ID
161                                 LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_EMPTY_USERNAME);
162                                 OUTPUT_HTML("<br />");
163                         } elseif (empty($_POST['wds66_password'])) {
164                                 // Nothing entered in WDS66 password
165                                 LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_EMPTY_PASSWORD);
166                                 OUTPUT_HTML("<br />");
167                         } elseif (empty($_POST['amount'])) {
168                                 // Nothing entered in amount
169                                 LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_EMPTY_AMOUNT);
170                                 OUTPUT_HTML("<br />");
171                         } elseif ($_POST['wds66_id'] != bigintval($_POST['wds66_id'])) {
172                                 // Only numbers in account ID!
173                                 LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_INVALID_USERNAME);
174                                 OUTPUT_HTML("<br />");
175                         } elseif ($_POST['amount'] != bigintval($_POST['amount'])) {
176                                 // Only numbers in amount!
177                                 LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_INVALID_AMOUNT);
178                                 OUTPUT_HTML("<br />");
179                         } elseif ($_POST['amount'] < $_CONFIG['wernis_min_payout']) {
180                                 // Not enougth entered!
181                                 LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_AMOUNT_SMALLER_MIN, bigintval($_CONFIG['wernis_min_payout'])));
182                                 OUTPUT_HTML("<br />");
183                         } elseif ($_POST['amount'] > $points) {
184                                 // Not enougth points left!
185                                 LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_PAYOUT_POINTS_DEPLETED, bigintval($_POST['amount']), bigintval($points)));
186                                 OUTPUT_HTML("<br />");
187                         } else {
188                                 // All is fine here so do the payout
189                                 $success = WERNIS_EXECUTE_PAYOUT($_POST['wds66_id'], md5($_POST['wds66_password']), $_POST['amount']);
190                                 if ($success) {
191                                         // Default is locked!
192                                         $locked = true;
193
194                                         // Shall I "pay" the referral points imidiately?
195                                         if ($_CONFIG['ref_payout'] == "0") {
196                                                 // Yes, "pay" it now
197                                                 $locked = false;
198                                         }
199
200                                         // Remove the points from the account
201                                         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET `used_points` = `used_points` + %s, `wernis_userid`=%s WHERE userid=%s LIMIT 1",
202                                                 array(bigintval($_POST['amount']), bigintval($_POST['wds66_id']), $GLOBALS['userid']), __FILE__, __LINE__);
203
204                                         // All done!
205                                         LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_MEMBER_PAYOUT_DONE);
206                                         return;
207                                 } 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")) {
208                                         // Wrong login data
209                                         LOAD_TEMPLATE("admin_settings_saved", false, GET_WERNIS_ERROR_MESSAGE());
210                                         OUTPUT_HTML("<br />");
211                                 } else {
212                                         // Something went wrong
213                                         LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_PAYOUT_FAILED, GET_WERNIS_ERROR_MESSAGE()));
214                                         OUTPUT_HTML("<br />");
215                                 }
216                         }
217                         break;
218
219                 default: // Invalid mode!
220                         LOAD_TEMPLATE("admin_settings_saved", false, sprintf(WERNIS_MEMBER_MODE_INVALID, SQL_ESCAPE($_GET['mode'])));
221                         return;
222         }
223 }
224
225 // Prepare mode for template name
226 $mode = sprintf("member_wernis_mode_%s", SQL_ESCAPE($_GET['mode']));
227
228 // Load the template
229 LOAD_TEMPLATE($mode, false, $content);
230
231 //
232 ?>