f38dfd5b9b099e22308544203a6882ffa39a25db
[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, '{--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'] = '';
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                 } // END - while
91
92                 // Free result
93                 SQL_FREERESULT($result);
94         } else {
95                 // Mode pay
96                 setGetRequestParameter('mode', 'pay');
97         }
98 } // END - if
99
100 if (getRequestParameter('mode') == 'pay') {
101         // Get total points and check if the user can request a payout
102         $points = countSumTotalData(getMemberId(), 'user_points', 'points') - countSumTotalData(getMemberId(), 'user_data', 'used_points');
103
104         // No dots here...
105         $points = explode('.', $points);
106         $points = bigintval($points[0]);
107
108         // Remove the registration fee
109         $points = $points - getPointsRegister();
110
111         // Is this enougth for a payout?
112         if ($points < getConfig('primera_min_payout')) {
113                 // No, then abort here
114                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PRIMERA_MIN_PAYOUT_PAYOUT--}');
115                 return;
116         }
117
118         // Add points to content array
119         $content['points'] = $points;
120 } else {
121         // Invalid mode!
122         loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_PRIMERA_MODE_INVALID', getRequestParameter('mode')));
123         return;
124 }
125
126 // Is the formular sent?
127 if ((isFormSent()) && (isGetRequestParameterSet('mode'))) {
128         // Check input data depending on the mode and execute the requested mode
129         switch (getRequestParameter('mode')) {
130                 case 'pay': // Payout this exchange -> Primus
131                         // Is the user id and password set?
132                         if (!isPostRequestParameterSet(('primera_nickname'))) {
133                                 // Nothing entered in Primus nickname
134                                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PRIMERA_EMPTY_USERNAME--}');
135                         } elseif (!isPostRequestParameterSet(('primera_password'))) {
136                                 // Nothing entered in Primera password
137                                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PRIMERA_EMPTY_PASSWORD--}');
138                         } elseif (!isPostRequestParameterSet(('amount'))) {
139                                 // Nothing entered in amount
140                                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PRIMERA_EMPTY_AMOUNT--}');
141                         } elseif (postRequestParameter('amount') != bigintval(postRequestParameter('amount'))) {
142                                 // Only numbers in amount!
143                                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PRIMERA_INVALID_AMOUNT--}');
144                         } elseif (postRequestParameter('amount') < getConfig('primera_min_payout')) {
145                                 // Not enougth entered!
146                                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PRIMERA_AMOUNT_SMALLER_MIN--}');
147                         } elseif (postRequestParameter('amount') > $points) {
148                                 // Not enougth points left!
149                                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('MEMBER_PRIMERA_PAYOUT_POINTS_DEPLETED'), bigintval(postRequestParameter('amount')), bigintval($points)));
150                         } else {
151                                 // All is fine here so do the payout
152                                 $success = executePrimeraPayout(postRequestParameter('primera_nickname'), md5(postRequestParameter('primera_password')), postRequestParameter('amount'));
153                                 if ($success) {
154                                         // Default is locked!
155                                         $locked = true;
156
157                                         // Shall I 'pay' the referal points imidiately?
158                                         if (getConfig('ref_payout') == '0') {
159                                                 // Yes, 'pay' it now
160                                                 $locked = false;
161                                         } // END - if
162
163                                         // Remove points from account
164                                         subtractPoints('primera_payout', getMemberId(), postRequestParameter('amount'));
165
166                                         // Update primera nickname
167                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `primera_nickname`=%s WHERE `userid`=%s LIMIT 1",
168                                                 array(postRequestParameter('primera_nickname'), getMemberId()), __FILE__, __LINE__);
169
170                                         // All done!
171                                         loadTemplate('admin_settings_saved', false, '{--MEMBER_PRIMERA_PAYOUT_DONE--}');
172                                         return;
173                                 } 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')) {
174                                         // Wrong login data
175                                         loadTemplate('admin_settings_saved', false, GET_PRIMERA_ERROR_MESSAGE());
176                                 } else {
177                                         // Something went wrong
178                                         loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_PRIMERA_PAYOUT_FAILED', GET_PRIMERA_ERROR_MESSAGE()));
179                                 }
180                         }
181                         break;
182
183                 default: // Invalid mode!
184                         logDebugMessage(__FILE__, __LINE__, sprintf("Invalid mode %s detected.", getRequestParameter('mode')));
185                         loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_PRIMERA_MODE_INVALID', getRequestParameter('mode')));
186                         return;
187         }
188 } // END - if
189
190 // Prepare mode for template name
191 $mode = sprintf("member_primera_mode_%s", getRequestParameter('mode'));
192
193 // Load the template
194 loadTemplate($mode, false, $content);
195
196 //
197 ?>