More language strings rewritten
[mailer.git] / inc / modules / member / what-payout.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  *                                                                      *
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         // Don't call this directly!
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 } elseif (!IS_MEMBER()) {
40         // Not logged in
41         LOAD_URL("modules.php?module=index");
42 } elseif ((!EXT_IS_ACTIVE("payout")) && (!IS_ADMIN())) {
43         addFatalMessage(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "payout");
44         return;
45 }
46
47 // Add description as navigation point
48 ADD_DESCR("member", __FILE__);
49
50 $result_depths = SQL_QUERY("SELECT level, percents FROM `{!_MYSQL_PREFIX!}_refdepths` ORDER BY level", __FILE__, __LINE__);
51 $TPTS = 0;
52 while (list($lvl, $per) = SQL_FETCHROW($result_depths)) {
53         // Load referal points
54         $result_points = SQL_QUERY_ESC("SELECT points FROM `{!_MYSQL_PREFIX_user_points!}` WHERE userid=%s AND ref_depth=%d LIMIT 1",
55                 array($GLOBALS['userid'], bigintval($lvl)), __FILE__, __LINE__);
56
57         // Entry found?
58         if (SQL_NUMROWS($result_points) == 1) {
59                 // Load points
60                 list($points) = SQL_FETCHROW($result_points);
61
62                 // Add them to total
63                 $TPTS += $points;
64         }
65
66         // Free result
67         SQL_FREERESULT($result_points);
68 }
69
70 // Free memory
71 SQL_FREERESULT($result_depths);
72
73 // Get used points
74 $USED = GET_TOTAL_DATA($GLOBALS['userid'], "user_data", "used_points");
75
76 // Translate point into comma
77 $TPTS = TRANSLATE_COMMA($TPTS - $USED);
78
79 // Sanity check...
80 if (empty($TPTS)) $TPTS = "0.00000";
81
82 if (empty($_GET['payout'])) {
83         // Load payout types
84         $result = SQL_QUERY_ESC("SELECT id, type, rate, min_points, allow_url
85 FROM `{!_MYSQL_PREFIX!}_payout_types`
86 WHERE %s >= min_points
87 ORDER BY type", array(REVERT_COMMA($TPTS)), __FILE__, __LINE__);
88         if (SQL_NUMROWS($result) > 0) {
89                 // Free memory
90                 SQL_FREERESULT($result);
91
92                 // Check for his payouts
93                 $result_payouts = SQL_QUERY_ESC("SELECT DISTINCT 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 bannerm
94 FROM `{!_MYSQL_PREFIX!}_user_payouts` AS p
95 LEFT JOIN `{!_MYSQL_PREFIX!}_payout_types` AS t
96 ON p.payout_id = t.id
97 WHERE p.userid = %s
98 ORDER BY p.payout_timestamp DESC",
99                  array($GLOBALS['userid']), __FILE__, __LINE__);
100                 if (SQL_NUMROWS($result_payouts) > 0) {
101                         // List all his requests
102                         $SW = 2; $OUT = "";
103                         while (list($pid, $total, $account, $bank, $type, $tstamp, $status, $allow, $url, $alt, $banner) = SQL_FETCHROW($result_payouts)) {
104                                 // Translate status
105                                 $status = constant('PAYOUT_MEMBER_STATUS_'.strtoupper($status).'');
106                                 $status = "<div class=\"member_failed\">".$status."</div>";
107
108                                 // Nothing entered must be secured in member/what-payputs.php !
109                                 if ($allow == "Y") {
110                                         // Banner/Textlink views/clicks request
111                                         if (!empty($banner)) {
112                                                 // Banner
113                                                 $account = "<img src=\"".$banner."\" alt=\"".$alt."\" title=\"".$alt."\" border=\"0\" />";
114                                         } else {
115                                                 // Textlink
116                                                 $account = $alt;
117                                         }
118                                         $bank = "<a href=\"".DEREFERER($url)."\" target=\"_blank\">{--CLICK_HERE--}</a>";
119                                 } else {
120                                         // e-currency payout request
121                                         if (empty($account)) $account = "---";
122                                         if (empty($bank))    $bank    = "---";
123                                 }
124
125                                 // Prepare data for the template
126                                 $content = array(
127                                         'sw'     => $SW,
128                                         'acc'    => $account,
129                                         'points' => TRANSLATE_COMMA($total)." ".COMPILE_CODE($type),
130                                         'bank'   => $bank,
131                                         'stamp'  => MAKE_DATETIME($tstamp, "2"),
132                                         'status' => $status
133                                 );
134                                 // Load row template and switch colors
135                                 $OUT .= LOAD_TEMPLATE("member_payout_row", true, $content);
136                                 $SW = 3 - $SW;
137                         }
138
139                         // Remember rows in constant
140                         define('__PAYOUT_ROWS', $OUT);
141
142                         // Load template
143                         LOAD_TEMPLATE("member_payout");
144                 }
145
146                 // Free memory
147                 SQL_FREERESULT($result_payouts);
148
149                 // Output payout list
150                 PAYOUT_OUTPUT_PAYOUT_LIST($TPTS);
151         }
152 } else {
153         // Chedk if he can get paid by selected type
154         $result = SQL_QUERY_ESC("SELECT type, rate, min_points, allow_url FROM `{!_MYSQL_PREFIX!}_payout_types` WHERE id=%s LIMIT 1",
155                 array(bigintval($_GET['payout'])), __FILE__, __LINE__);
156
157         if (SQL_NUMROWS($result) == 1) {
158                 // ID is valid
159                 list($type, $rate, $min, $allow) = SQL_FETCHROW($result);
160                 SQL_FREERESULT($result);
161
162                 // Calculate maximum value
163                 $max = round($TPTS * $rate - 0.5);
164
165                 // Calulcate points from submitted amount
166                 $PAYOUT = 0;
167                 if (!empty($_POST['payout'])) {
168                         $PAYOUT  = bigintval($_POST['payout']) / $rate;
169                         $PAY_MAX = $max / $rate;
170                 }
171
172                 // Move variables into constants for templates
173                 define('PAYOUT_MAX_VALUE' , $max);
174                 define('PAYOUT_TYPE_VALUE', COMPILE_CODE($type));
175
176                 if (REVERT_COMMA($TPTS) >= $min) {
177                         // Ok, he can get be paid
178                         if ((isset($_POST['ok'])) && ($PAYOUT <= $PAY_MAX) && ($PAYOUT >= $min)) {
179                                 // Calculate exact value
180                                 define('PAYOUT_POINTS_VALUE', $PAYOUT);
181
182                                 // Subtract points from member's account
183                                 SUB_POINTS("payout", $GLOBALS['userid'], $PAYOUT);
184
185                                 // Add entry to his tranfer history
186                                 if ($allow == "Y") {
187                                         // Banner/textlink ordered
188                                         SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_payouts` (userid, payout_total, payout_id, payout_timestamp, status, target_url, link_text, banner_url)
189 VALUES (%s,%s,%s, UNIX_TIMESTAMP(), 'NEW','%s','%s','%s')",
190  array(
191         $GLOBALS['userid'],
192         bigintval($_POST['payout']),
193         bigintval($_GET['payout']),
194         $_POST['turl'],
195         $_POST['alt'],
196         $_POST['banner']
197 ), __FILE__, __LINE__);
198
199                                         // Load templates
200                                         $msg_mem = LOAD_EMAIL_TEMPLATE("member_payout_request_banner", array(), $GLOBALS['userid']);
201                                         if (GET_EXT_VERSION("admins") >= "0.4.1") {
202                                                 $adm_tpl = "admin_payout_request_banner";
203                                         } else {
204                                                 $msg_adm = LOAD_EMAIL_TEMPLATE("admin_payout_request_banner", array(), $GLOBALS['userid']);
205                                         }
206                                 } else {
207                                         // e-currency payout requested
208                                         SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_payouts` (userid, payout_total, target_account, target_bank, payout_id, payout_timestamp, status, password)
209 VALUES (%s,%s,%s,'%s',%s, UNIX_TIMESTAMP(), 'NEW','%s')",
210  array(
211         $GLOBALS['userid'],
212         bigintval($_POST['payout']),
213         bigintval($_POST['account']),
214         $_POST['bank'],
215         bigintval($_GET['payout']),
216         $_POST['pass']
217 ), __FILE__, __LINE__);
218
219                                         // Load templates
220                                         $msg_mem = LOAD_EMAIL_TEMPLATE("member_payout_request", array(), $GLOBALS['userid']);
221                                         $msg_adm = LOAD_EMAIL_TEMPLATE("admin_payout_request", array(), $GLOBALS['userid']);
222                                         $admin_tpl = "";
223                                         if (GET_EXT_VERSION("admins") >= "0.4.1")
224                                         {
225                                                 $admin_tpl = "admin_payout_request";
226                                         }
227                                 }
228
229                                 // Generate task
230                                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_task_system` (assigned_admin, status, task_type, subject, text, task_created, userid)
231 VALUES (0, 'NEW','PAYOUT_REQUEST','[payout:] {--PAYOUT_REQUEST_ADMIN--}','%s', UNIX_TIMESTAMP(), %s)",
232  array(
233         $msg_adm,
234         $GLOBALS['userid']
235 ), __FILE__, __LINE__);
236
237                                 // Send out mails
238                                 SEND_EMAIL($GLOBALS['userid'], getMessage('PAYOUT_REQUEST_MEMBER'), $msg_mem);
239
240                                 // To admin(s)
241                                 SEND_ADMIN_NOTIFICATION(getMessage('PAYOUT_REQUEST_ADMIN'), $admin_tpl, array(), $GLOBALS['userid']);
242
243                                 // Load template and output it
244                                 LOAD_TEMPLATE("admin_settings_saved", false, getMessage('PAYOUT_REQUEST_SENT'));
245                         } elseif ($allow == "Y") {
246                                 // Generate banner order form
247                                 LOAD_TEMPLATE("member_payout_form_banner");
248                         } else {
249                                 // Generate normal form
250                                 LOAD_TEMPLATE("member_payout_form");
251                         }
252                 } else {
253                         // Not enougth points
254                         LOAD_TEMPLATE("admin_settings_saved", false, getMessage('PAYOUT_POINTS_NOT_ENOUGTH'));
255                 }
256         } else {
257                 // ID is invalid
258                 LOAD_TEMPLATE("admin_settings_saved", false, getMessage('PAYOUT_ID_INVALID'));
259         }
260 }
261
262 //
263 ?>