Some functions rewritten to hungarian notation, handling of array rewritten
[mailer.git] / inc / modules / member / what-primera.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/09/2008 *
4  * ================                             Last change: 09/09/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-primera.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 (!defined('__SECURITY')) {
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("primera")) && (!IS_ADMIN())) {
42         // Extension "primera" is not activated
43         addFatalMessage(EXTENSION_PROBLEM_EXT_INACTIVE, "primera");
44         return;
45 }
46
47 // Add description as navigation point
48 ADD_DESCR("member", __FILE__);
49
50 // Check if the admin has entered the data
51 if ((getConfig('primera_api_name') == "") || (getConfig('primera_api_md5') == "")) {
52         // Something important is missing...
53         LOAD_TEMPLATE("admin_settings_saved", false, PRIMERA_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(getConfig('primera_refid'));
64
65         // Get Primus id
66         $result = SQL_QUERY_ESC("SELECT primera_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['primera_nickname']) = SQL_FETCHROW($result);
73         } // END - if
74
75         // Free result
76         SQL_FREERESULT($result);
77
78         // Is there an ID?
79         if ((!empty($content['primera_nickname'])) && (!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`, `primera_account`, `primera_amount`, `primera_timestamp`, `primera_type` FROM "._MYSQL_PREFIX."_user_primera WHERE `userid` = %s ORDER BY `primera_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['primera_timestamp'], "2"),
93                                 'points'                => TRANSLATE_COMMA($data['primera_amount']),
94                                 'acc'                   => SQL_ESCAPE($data['primera_account']),
95                                 'status'                => PRIMERA_TRANSFER_STATUS($data['primera_type']),
96                                 'raw_type'              => strtolower($data['primera_type']),
97                                 'sw'                    => $SW,
98                         );
99
100                         // Load row template
101                         $content['rows'] .= LOAD_TEMPLATE("member_primera_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 } // END - if
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 - getConfig('points_register');
122
123         // Is this enougth for a payout?
124         if ($points < getConfig('primera_min_payout')) {
125                 // No, then abort here
126                 LOAD_TEMPLATE("admin_settings_saved", false, sprintf(PRIMERA_MEMBER_MIN_PAYOUT_PAYOUT, TRANSLATE_COMMA(getConfig('primera_min_payout'))));
127                 return;
128         }
129
130         // Add points to content array
131         $content['points']              = $points;
132         $content['min_points']  = TRANSLATE_COMMA(getConfig('primera_min_payout'));
133
134         // Get Primera id
135         $content['primera_nickname'] = "";
136         $result = SQL_QUERY_ESC("SELECT primera_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['primera_nickname']) = 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(PRIMERA_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 -> Primus
158                         // Is the user ID and password set?
159                         if (empty($_POST['primera_nickname'])) {
160                                 // Nothing entered in Primus nickname
161                                 LOAD_TEMPLATE("admin_settings_saved", false, PRIMERA_MEMBER_EMPTY_USERNAME);
162                                 OUTPUT_HTML("<br />");
163                         } elseif (empty($_POST['primera_password'])) {
164                                 // Nothing entered in Primera password
165                                 LOAD_TEMPLATE("admin_settings_saved", false, PRIMERA_MEMBER_EMPTY_PASSWORD);
166                                 OUTPUT_HTML("<br />");
167                         } elseif (empty($_POST['amount'])) {
168                                 // Nothing entered in amount
169                                 LOAD_TEMPLATE("admin_settings_saved", false, PRIMERA_MEMBER_EMPTY_AMOUNT);
170                                 OUTPUT_HTML("<br />");
171                         } elseif ($_POST['amount'] != bigintval($_POST['amount'])) {
172                                 // Only numbers in amount!
173                                 LOAD_TEMPLATE("admin_settings_saved", false, PRIMERA_MEMBER_INVALID_AMOUNT);
174                                 OUTPUT_HTML("<br />");
175                         } elseif ($_POST['amount'] < getConfig('primera_min_payout')) {
176                                 // Not enougth entered!
177                                 LOAD_TEMPLATE("admin_settings_saved", false, sprintf(PRIMERA_MEMBER_AMOUNT_SMALLER_MIN, bigintval(getConfig('primera_min_payout'))));
178                                 OUTPUT_HTML("<br />");
179                         } elseif ($_POST['amount'] > $points) {
180                                 // Not enougth points left!
181                                 LOAD_TEMPLATE("admin_settings_saved", false, sprintf(PRIMERA_MEMBER_PAYOUT_POINTS_DEPLETED, bigintval($_POST['amount']), bigintval($points)));
182                                 OUTPUT_HTML("<br />");
183                         } else {
184                                 // All is fine here so do the payout
185                                 $success = PRIMERA_EXECUTE_PAYOUT($_POST['primera_nickname'], md5($_POST['primera_password']), $_POST['amount']);
186                                 if ($success) {
187                                         // Default is locked!
188                                         $locked = true;
189
190                                         // Shall I "pay" the referal points imidiately?
191                                         if (getConfig('ref_payout') == "0") {
192                                                 // Yes, "pay" it now
193                                                 $locked = false;
194                                         } // END - if
195
196                                         // Remove points from account
197                                         SUB_POINTS("primera_payout", $GLOBALS['userid'], $_POST['amount']);
198
199                                         // Update primera nickname
200                                         SQL_QUERY_ESC("UPDATE `"._MYSQL_PREFIX."_user_data` SET `primera_userid`=%s WHERE userid=%s LIMIT 1",
201                                                 array($_POST['primera_nickname'], $GLOBALS['userid']), __FILE__, __LINE__);
202
203                                         // All done!
204                                         LOAD_TEMPLATE("admin_settings_saved", false, PRIMERA_MEMBER_PAYOUT_DONE);
205                                         return;
206                                 } elseif ((GET_PRIMERA_ERROR_CODE() == "user_failed") || (GET_PRIMERA_ERROR_CODE() == "own_failed") || (GET_PRIMERA_ERROR_CODE() == "amount_failed") || (GET_PRIMERA_ERROR_CODE() == "api_amount_failed")) {
207                                         // Wrong login data
208                                         LOAD_TEMPLATE("admin_settings_saved", false, GET_PRIMERA_ERROR_MESSAGE());
209                                         OUTPUT_HTML("<br />");
210                                 } else {
211                                         // Something went wrong
212                                         LOAD_TEMPLATE("admin_settings_saved", false, sprintf(PRIMERA_MEMBER_PAYOUT_FAILED, GET_PRIMERA_ERROR_MESSAGE()));
213                                         OUTPUT_HTML("<br />");
214                                 }
215                         }
216                         break;
217
218                 default: // Invalid mode!
219                         DEBUG_LOG(__FILE__, __LINE__, sprintf("Invalid mode %s detected.", $_GET['mode']));
220                         LOAD_TEMPLATE("admin_settings_saved", false, sprintf(PRIMERA_MEMBER_MODE_INVALID, SQL_ESCAPE($_GET['mode'])));
221                         return;
222         }
223 } // END - if
224
225 // Prepare mode for template name
226 $mode = sprintf("member_primera_mode_%s", SQL_ESCAPE($_GET['mode']));
227
228 // Load the template
229 LOAD_TEMPLATE($mode, false, $content);
230
231 //
232 ?>