Next wave of more use of EL, see ticket #176
[mailer.git] / inc / modules / member / what-primera.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } elseif (!isMember()) {
44         // User is not logged in
45         redirectToIndexMemberOnlyModule();
46 }
47
48 // Add description as navigation point
49 addMenuDescription('member', __FILE__);
50
51 if ((!isExtensionActive('primera')) && (!isAdmin())) {
52         // Extension 'primera' is not activated
53         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('primera'));
54         return;
55 } // END - if
56
57 // Check if the admin has entered the data
58 if ((getConfig('primera_api_name') == '') || (getConfig('primera_api_md5') == '')) {
59         // Something important is missing...
60         loadTemplate('admin_settings_saved', false, getMessage('MEMBER_PRIMERA_API_DATA_MISSING'));
61         return;
62 } // END - if
63
64 // Init the content array and points
65 $content = array();
66 $points = false;
67
68 // Is the mode set (payout only)
69 if (!isGetRequestParameterSet('mode')) {
70         // Get referal id
71         $content['refid'] = getConfig(('primera_refid'));
72
73         // Is there an id?
74         if ((!empty($content['primera_nickname'])) && (!isGetRequestParameterSet('mode'))) {
75                 // Then use an other "mode"
76                 setGetRequestParameter('mode', 'list');
77
78                 // And load all rows!
79                 $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",
80                         array(getMemberId()), __FILE__, __LINE__);
81
82                 // Load all rows
83                 $content['rows'] = ''; $SW = 2;
84                 while ($data = SQL_FETCHARRAY($result)) {
85                         // Prepare data for output
86                         $rowContent['primera_timestamp'] = generateDateTime($data['primera_timestamp'], 2);
87
88                         // Load row template
89                         $content['rows'] .= loadTemplate('member_primera_mode_list_row', true, $rowContent);
90                         $SW = 3 - $SW;
91                 }
92
93                 // Free result
94                 SQL_FREERESULT($result);
95         } else {
96                 // Mode pay
97                 setGetRequestParameter('mode', 'pay');
98         }
99 } // END - if
100
101 if (getRequestParameter('mode') == 'pay') {
102         // Get total points and check if the user can request a payout
103         $points = countSumTotalData(getMemberId(), 'user_points', 'points') - countSumTotalData(getMemberId(), 'user_data', 'used_points');
104
105         // No dots here...
106         $points = explode('.', $points);
107         $points = bigintval($points[0]);
108
109         // Remove the registration fee
110         $points = $points - getConfig('points_register');
111
112         // Is this enougth for a payout?
113         if ($points < getConfig('primera_min_payout')) {
114                 // No, then abort here
115                 loadTemplate('admin_settings_saved', false, getMessage('MEMBER_PRIMERA_MIN_PAYOUT_PAYOUT'));
116                 return;
117         }
118
119         // Add points to content array
120         $content['points'] = $points;
121 } else {
122         // Invalid mode!
123         loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_PRIMERA_MODE_INVALID', getRequestParameter('mode')));
124         return;
125 }
126
127 // Is the formular sent?
128 if ((isFormSent()) && (isGetRequestParameterSet('mode'))) {
129         // Check input data depending on the mode and execute the requested mode
130         switch (getRequestParameter('mode')) {
131                 case 'pay': // Payout this exchange -> Primus
132                         // Is the user id and password set?
133                         if (!isPostRequestParameterSet(('primera_nickname'))) {
134                                 // Nothing entered in Primus nickname
135                                 loadTemplate('admin_settings_saved', false, getMessage('MEMBER_PRIMERA_EMPTY_USERNAME'));
136                         } elseif (!isPostRequestParameterSet(('primera_password'))) {
137                                 // Nothing entered in Primera password
138                                 loadTemplate('admin_settings_saved', false, getMessage('MEMBER_PRIMERA_EMPTY_PASSWORD'));
139                         } elseif (!isPostRequestParameterSet(('amount'))) {
140                                 // Nothing entered in amount
141                                 loadTemplate('admin_settings_saved', false, getMessage('MEMBER_PRIMERA_EMPTY_AMOUNT'));
142                         } elseif (postRequestParameter('amount') != bigintval(postRequestParameter('amount'))) {
143                                 // Only numbers in amount!
144                                 loadTemplate('admin_settings_saved', false, getMessage('MEMBER_PRIMERA_INVALID_AMOUNT'));
145                         } elseif (postRequestParameter('amount') < getConfig('primera_min_payout')) {
146                                 // Not enougth entered!
147                                 loadTemplate('admin_settings_saved', false, getMessage('MEMBER_PRIMERA_AMOUNT_SMALLER_MIN'));
148                         } elseif (postRequestParameter('amount') > $points) {
149                                 // Not enougth points left!
150                                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('MEMBER_PRIMERA_PAYOUT_POINTS_DEPLETED'), bigintval(postRequestParameter('amount')), bigintval($points)));
151                         } else {
152                                 // All is fine here so do the payout
153                                 $success = executePrimeraPayout(postRequestParameter('primera_nickname'), md5(postRequestParameter('primera_password')), postRequestParameter('amount'));
154                                 if ($success) {
155                                         // Default is locked!
156                                         $locked = true;
157
158                                         // Shall I 'pay' the referal points imidiately?
159                                         if (getConfig('ref_payout') == '0') {
160                                                 // Yes, 'pay' it now
161                                                 $locked = false;
162                                         } // END - if
163
164                                         // Remove points from account
165                                         subtractPoints('primera_payout', getMemberId(), postRequestParameter('amount'));
166
167                                         // Update primera nickname
168                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `primera_nickname`=%s WHERE `userid`=%s LIMIT 1",
169                                                 array(postRequestParameter('primera_nickname'), getMemberId()), __FILE__, __LINE__);
170
171                                         // All done!
172                                         loadTemplate('admin_settings_saved', false, getMessage('MEMBER_PRIMERA_PAYOUT_DONE'));
173                                         return;
174                                 } 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')) {
175                                         // Wrong login data
176                                         loadTemplate('admin_settings_saved', false, GET_PRIMERA_ERROR_MESSAGE());
177                                 } else {
178                                         // Something went wrong
179                                         loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_PRIMERA_PAYOUT_FAILED', GET_PRIMERA_ERROR_MESSAGE()));
180                                 }
181                         }
182                         break;
183
184                 default: // Invalid mode!
185                         logDebugMessage(__FILE__, __LINE__, sprintf("Invalid mode %s detected.", getRequestParameter('mode')));
186                         loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_PRIMERA_MODE_INVALID', getRequestParameter('mode')));
187                         return;
188         }
189 } // END - if
190
191 // Prepare mode for template name
192 $mode = sprintf("member_primera_mode_%s", getRequestParameter('mode'));
193
194 // Load the template
195 loadTemplate($mode, false, $content);
196
197 //
198 ?>