New (template) wrapper function fixEmptyContentToDashes() introduced, EL rewrites:
[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 = ''; $SW = 2;
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                                         'sw'               => $SW,
122                                         'target_account'   => $content['target_account'],
123                                         'payout_total'     => $content['payout_total'],
124                                         'target_bank'      => $content['target_bank'],
125                                         'payout_timestamp' => generateDateTime($content['payout_timestamp'], 2),
126                                         'status'           => $content['status'],
127                                         'type'             => $content['type'],
128                                 );
129
130                                 // Load row template and switch colors
131                                 $OUT .= loadTemplate('member_payout_row', true, $content);
132                                 $SW = 3 - $SW;
133                         }
134
135                         // Load template
136                         loadTemplate('member_payout', false, $OUT);
137                 }
138
139                 // Free memory
140                 SQL_FREERESULT($result_payouts);
141
142                 // Output payout list
143                 outputPayoutList($totalPoints);
144         } else {
145                 // No payout types setup
146                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PAYOUT_SETUP_INCOMPLETE--}');
147         }
148 } else {
149         // Chedk if he can get paid by selected type
150         $result = SQL_QUERY_ESC("SELECT `type`, `rate`, `min_points`, `allow_url` AS allow FROM `{?_MYSQL_PREFIX?}_payout_types` WHERE `id`=%s LIMIT 1",
151                 array(bigintval(getRequestParameter('payout'))), __FILE__, __LINE__);
152
153         if (SQL_NUMROWS($result) == 1) {
154                 // id is valid so load the data
155                 $content = SQL_FETCHARRAY($result);
156
157                 // Calculate maximum value
158                 $max     = round($totalPoints * $content['rate'] - 0.5);
159                 $PAY_MAX = '0';
160
161                 // Calulcate points from submitted amount
162                 $points = '0';
163                 if (isPostRequestParameterSet('payout')) {
164                         $points  = bigintval(postRequestParameter('payout')) / $content['rate'];
165                         $PAY_MAX = $max / $content['rate'];
166                 }
167
168                 // Has enougth points to payout?
169                 if ($totalPoints >= $content['min_points']) {
170                         // Ok, he can get be paid
171                         if ((isFormSent()) && ($points <= $PAY_MAX) && ($points >= $content['min_points'])) {
172                                 // Remember points in array
173                                 setPostRequestParameter('payout_points', translateComma($points));
174                                 setPostRequestParameter('type'         , $content['type']);
175
176                                 // Subtract points from member's account
177                                 subtractPoints('payout', getMemberId(), $points);
178
179                                 // Add entry to his tranfer history
180                                 if ($content['allow'] == 'Y') {
181                                         // Banner/textlink ordered
182                                         SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_payouts` (`userid`, `payout_total`, `payout_id`, `payout_timestamp`, `status`, `target_url`, `link_text`, `banner_url`)
183 VALUES (%s,%s,%s, UNIX_TIMESTAMP(), 'NEW','%s','%s','%s')",
184                                         array(
185                                                 getMemberId(),
186                                                 bigintval(postRequestParameter('payout')),
187                                                 bigintval(getRequestParameter('payout')),
188                                                 postRequestParameter('turl'),
189                                                 postRequestParameter('alt'),
190                                                 postRequestParameter('banner')
191                                         ), __FILE__, __LINE__);
192
193                                         // Load templates
194                                         $message_mem = loadEmailTemplate('member_payout_request_banner', postRequestArray(), getMemberId());
195                                         if (isExtensionInstalledAndNewer('admins', '0.4.1')) {
196                                                 $adm_tpl = 'admin_payout_request_banner';
197                                         } else {
198                                                 $message_adm = loadEmailTemplate('admin_payout_request_banner', postRequestArray(), getMemberId());
199                                         }
200                                 } else {
201                                         // e-currency payout requested
202                                         SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_payouts` (`userid`, `payout_total`, `target_account`, `target_bank`, `payout_id`, `payout_timestamp`, `status`, `password`)
203 VALUES (%s,%s,%s,'%s',%s, UNIX_TIMESTAMP(), 'NEW','%s')",
204                                         array(
205                                                 getMemberId(),
206                                                 bigintval(postRequestParameter('payout')),
207                                                 bigintval(postRequestParameter('account')),
208                                                 postRequestParameter('bank'),
209                                                 bigintval(getRequestParameter('payout')),
210                                                 postRequestParameter('pass')
211                                         ), __FILE__, __LINE__);
212
213                                         // Load templates
214                                         $message_mem = loadEmailTemplate('member_payout_request', postRequestArray(), getMemberId());
215                                         $message_adm = loadEmailTemplate('admin_payout_request', postRequestArray(), getMemberId());
216                                         $admin_tpl = '';
217
218                                         // @TODO Rewrite this to a filter
219                                         if (isExtensionInstalledAndNewer('admins', '0.4.1')) {
220                                                 $admin_tpl = 'admin_payout_request';
221                                         } // END - if
222                                 }
223
224                                 // Generate task (we ignore the task id here)
225                                 createNewTask('[payout:] {--ADMIN_PAYOUY_REQUEST_SUBJECT--}', $message_adm, 'PAYOUT_REQUEST', getMemberId());
226
227                                 // Send out mails
228                                 sendEmail(getMemberId(), '{--MEMBER_PAYOUT_REQUEST_SUBJECT--}', $message_mem);
229
230                                 // To admin(s)
231                                 sendAdminNotification('{--ADMIN_PAYOUY_REQUEST_SUBJECT--}', $admin_tpl, postRequestArray(), getMemberId());
232
233                                 // Load template and output it
234                                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PAYOUT_REQUEST_SENT--}');
235                         } elseif ($content['allow'] == 'Y') {
236                                 // Prepare content
237                                 $content = array(
238                                         'max'    => $max,
239                                         'type'   => $content['type'],
240                                         'payout' => bigintval(getRequestParameter('payout'))
241                                 );
242
243                                 // Generate banner order form
244                                 loadTemplate('member_payout_form_banner', false, $content);
245                         } else {
246                                 // Prepare content
247                                 $content = array(
248                                         'max'    => $max,
249                                         'type'   => $content['type'],
250                                         'payout' => bigintval(getRequestParameter('payout'))
251                                 );
252
253                                 // Generate normal form
254                                 loadTemplate('member_payout_form', false, $content);
255                         }
256                 } else {
257                         // Not enougth points
258                         loadTemplate('admin_settings_saved', false, '{--MEMBER_PAYOUT_POINTS_NOT_ENOUGTH--}');
259                 }
260         } else {
261                 // id is invalid
262                 loadTemplate('admin_settings_saved', false, '{--MEMBER_PAYOUT_ID_INVALID--}');
263         }
264
265         // Free result
266         SQL_FREERESULT($result);
267 }
268
269 // [EOF]
270 ?>