A lot code rewritten:
[mailer.git] / inc / modules / member / what-payout.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/12/2004 *
4  * ===================                          Last change: 12/01/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-payout.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Payout 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         // Don't call this directly!
43         die();
44 } elseif (!isMember()) {
45         // Not logged in
46         redirectToIndexMemberOnlyModule();
47 }
48
49 // Add description as navigation point
50 addMenuDescription('member', __FILE__);
51
52 if ((!isExtensionActive('payout')) && (!isAdmin())) {
53         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('payout'));
54         return;
55 } // END - if
56
57 // Get total points
58 $totalPoints = countSumTotalData(getMemberId(), 'user_points', 'points');
59
60 // Get used points
61 $usedPoints = countSumTotalData(getMemberId(), 'user_data', 'used_points');
62
63 // Translate point into comma
64 $totalPoints = ($totalPoints - $usedPoints);
65
66 // Sanity check...
67 if (empty($totalPoints)) $totalPoints = '0.00000';
68
69 if (!isGetRequestParameterSet('payout')) {
70         // Load payout types
71         $result = SQL_QUERY_ESC("SELECT
72         `id`, `type`, `rate`, `min_points`, `allow_url`
73 FROM
74         `{?_MYSQL_PREFIX?}_payout_types`
75 WHERE
76         %s >= `min_points`
77 ORDER BY
78         `type` ASC",
79                 array($totalPoints), __FILE__, __LINE__);
80         if (SQL_NUMROWS($result) > 0) {
81                 // Free memory
82                 SQL_FREERESULT($result);
83
84                 // Check for his payouts
85                 $result_payouts = SQL_QUERY_ESC("SELECT
86         p.id, p.payout_total, p.target_account, p.target_bank, t.type, p.payout_timestamp, p.status, t.allow_url AS allow, p.target_url AS url, p.link_text AS alt, p.banner_url AS banner
87 FROM
88         `{?_MYSQL_PREFIX?}_user_payouts` AS p
89 LEFT JOIN
90         `{?_MYSQL_PREFIX?}_payout_types` AS t
91 ON
92         p.payout_id = t.id
93 WHERE
94         p.userid = %s
95 ORDER BY
96         p.payout_timestamp DESC",
97                         array(getMemberId()), __FILE__, __LINE__);
98                 if (SQL_NUMROWS($result_payouts) > 0) {
99                         // List all his requests
100                         $OUT = '';
101                         while ($content = SQL_FETCHARRAY($result_payouts)) {
102                                 // Translate status
103                                 $content['status'] = translatePayoutStatus();
104                                 $content['status'] = '<div class="member_failed">' . $content['status'] . '</div>';
105
106                                 // Nothing entered must be secured in member/what-payputs.php !
107                                 if ($content['allow'] == 'Y') {
108                                         // Banner/Textlink views/clicks request
109                                         if (!empty($content['banner'])) {
110                                                 // Banner
111                                                 $content['target_account'] = '<img src="' . $content['banner'] . '" alt="' . $content['alt'] . '" title="' . $content['alt'] . '" border="0" />';
112                                         } else {
113                                                 // Textlink
114                                                 $content['target_account'] = $content['alt'];
115                                         }
116                                         $content['target_bank'] = '<a href="' . generateDerefererUrl($content['url']) . '" target="_blank">{--CLICK_HERE--}</a>';
117                                 } // END - if
118
119                                 // Prepare data for the template
120                                 $content = array(
121                                         'target_account'   => $content['target_account'],
122                                         'payout_total'     => $content['payout_total'],
123                                         'target_bank'      => $content['target_bank'],
124                                         'payout_timestamp' => generateDateTime($content['payout_timestamp'], 2),
125                                         'status'           => $content['status'],
126                                         'type'             => $content['type'],
127                                 );
128
129                                 // Load row template and switch colors
130                                 $OUT .= loadTemplate('member_payout_row', true, $content);
131                         } // END - while
132
133                         // Load template
134                         loadTemplate('member_payout', false, $OUT);
135                 } // END - if
136
137                 // Free memory
138                 SQL_FREERESULT($result_payouts);
139
140                 // Output payout list
141                 outputPayoutList($totalPoints);
142         } else {
143                 // No payout types setup
144                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PAYOUT_SETUP_INCOMPLETE--}');
145         }
146 } else {
147         // Chedk if he can get paid by selected type
148         $result = SQL_QUERY_ESC("SELECT `type`, `rate`, `min_points`, `allow_url` AS allow FROM `{?_MYSQL_PREFIX?}_payout_types` WHERE `id`=%s LIMIT 1",
149                 array(bigintval(getRequestParameter('payout'))), __FILE__, __LINE__);
150
151         if (SQL_NUMROWS($result) == 1) {
152                 // id is valid so load the data
153                 $content = SQL_FETCHARRAY($result);
154
155                 // Calculate maximum value
156                 $max     = round($totalPoints * $content['rate'] - 0.5);
157                 $PAY_MAX = '0';
158
159                 // Calulcate points from submitted amount
160                 $points = '0';
161                 if (isPostRequestParameterSet('payout')) {
162                         $points  = bigintval(postRequestParameter('payout')) / $content['rate'];
163                         $PAY_MAX = $max / $content['rate'];
164                 }
165
166                 // Has enougth points to payout?
167                 if ($totalPoints >= $content['min_points']) {
168                         // Ok, he can get be paid
169                         if ((isFormSent()) && ($points <= $PAY_MAX) && ($points >= $content['min_points'])) {
170                                 // Remember points in array
171                                 setPostRequestParameter('payout_points', translateComma($points));
172                                 setPostRequestParameter('type'         , $content['type']);
173
174                                 // Subtract points from member's account
175                                 subtractPoints('payout', getMemberId(), $points);
176
177                                 // Add entry to his tranfer history
178                                 if ($content['allow'] == 'Y') {
179                                         // Banner/textlink ordered
180                                         SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_payouts` (`userid`, `payout_total`, `payout_id`, `payout_timestamp`, `status`, `target_url`, `link_text`, `banner_url`)
181 VALUES (%s,%s,%s, UNIX_TIMESTAMP(), 'NEW','%s','%s','%s')",
182                                         array(
183                                                 getMemberId(),
184                                                 bigintval(postRequestParameter('payout')),
185                                                 bigintval(getRequestParameter('payout')),
186                                                 postRequestParameter('turl'),
187                                                 postRequestParameter('alt'),
188                                                 postRequestParameter('banner')
189                                         ), __FILE__, __LINE__);
190
191                                         // Load templates
192                                         $message_mem = loadEmailTemplate('member_payout_request_banner', postRequestArray(), getMemberId());
193                                         if (isExtensionInstalledAndNewer('admins', '0.4.1')) {
194                                                 $adm_tpl = 'admin_payout_request_banner';
195                                         } else {
196                                                 $message_adm = loadEmailTemplate('admin_payout_request_banner', postRequestArray(), getMemberId());
197                                         }
198                                 } else {
199                                         // e-currency payout requested
200                                         SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_payouts` (`userid`, `payout_total`, `target_account`, `target_bank`, `payout_id`, `payout_timestamp`, `status`, `password`)
201 VALUES (%s,%s,%s,'%s',%s, UNIX_TIMESTAMP(), 'NEW','%s')",
202                                         array(
203                                                 getMemberId(),
204                                                 bigintval(postRequestParameter('payout')),
205                                                 bigintval(postRequestParameter('account')),
206                                                 postRequestParameter('bank'),
207                                                 bigintval(getRequestParameter('payout')),
208                                                 postRequestParameter('pass')
209                                         ), __FILE__, __LINE__);
210
211                                         // Load templates
212                                         $message_mem = loadEmailTemplate('member_payout_request', postRequestArray(), getMemberId());
213                                         $message_adm = loadEmailTemplate('admin_payout_request', postRequestArray(), getMemberId());
214                                         $admin_tpl = '';
215
216                                         // @TODO Rewrite this to a filter
217                                         if (isExtensionInstalledAndNewer('admins', '0.4.1')) {
218                                                 $admin_tpl = 'admin_payout_request';
219                                         } // END - if
220                                 }
221
222                                 // Generate task (we ignore the task id here)
223                                 createNewTask('[payout:] {--ADMIN_PAYOUY_REQUEST_SUBJECT--}', $message_adm, 'PAYOUT_REQUEST', getMemberId());
224
225                                 // Send out mails
226                                 sendEmail(getMemberId(), '{--MEMBER_PAYOUT_REQUEST_SUBJECT--}', $message_mem);
227
228                                 // To admin(s)
229                                 sendAdminNotification('{--ADMIN_PAYOUY_REQUEST_SUBJECT--}', $admin_tpl, postRequestArray(), getMemberId());
230
231                                 // Load template and output it
232                                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PAYOUT_REQUEST_SENT--}');
233                         } elseif ($content['allow'] == 'Y') {
234                                 // Prepare content
235                                 $content = array(
236                                         'max'    => $max,
237                                         'type'   => $content['type'],
238                                         'payout' => bigintval(getRequestParameter('payout'))
239                                 );
240
241                                 // Generate banner order form
242                                 loadTemplate('member_payout_form_banner', false, $content);
243                         } else {
244                                 // Prepare content
245                                 $content = array(
246                                         'max'    => $max,
247                                         'type'   => $content['type'],
248                                         'payout' => bigintval(getRequestParameter('payout'))
249                                 );
250
251                                 // Generate normal form
252                                 loadTemplate('member_payout_form', false, $content);
253                         }
254                 } else {
255                         // Not enougth points
256                         loadTemplate('admin_settings_saved', false, '{--MEMBER_PAYOUT_POINTS_NOT_ENOUGTH--}');
257                 }
258         } else {
259                 // id is invalid
260                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PAYOUT_ID_INVALID--}');
261         }
262
263         // Free result
264         SQL_FREERESULT($result);
265 }
266
267 // [EOF]
268 ?>