forked from lirantal/daloradius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bill-paypal-transactions.php
332 lines (268 loc) · 9.95 KB
/
bill-paypal-transactions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
<?php
/*
*********************************************************************************************************
* daloRADIUS - RADIUS Web Platform
* Copyright (C) 2007 - Liran Tal <liran@enginx.com> All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*********************************************************************************************************
*
* Authors: Liran Tal <liran@enginx.com>
*
*********************************************************************************************************
*/
include ("library/checklogin.php");
$operator = $_SESSION['operator_user'];
include('library/check_operator_perm.php');
//setting values for the order by and order type variables
isset($_GET['orderBy']) ? $orderBy = $_GET['orderBy'] : $orderBy = "radacctid";
isset($_GET['orderType']) ? $orderType = $_GET['orderType'] : $orderType = "asc";
isset($_GET['payer_email']) ? $payer_email = $_GET['payer_email'] : $payer_email = "%";
isset($_GET['payment_address_status']) ? $payment_address_status = $_GET['payment_address_status'] : $payment_address_status = "";
isset($_GET['payer_status']) ? $payer_status = $_GET['payer_status'] : $payer_status = "";
isset($_GET['payment_status']) ? $payment_status = $_GET['payment_status'] : $payment_status = "";
isset($_GET['vendor_type']) ? $vendor_type = $_GET['vendor_type'] : $vendor_type = "";
isset($_GET['sqlfields']) ? $sqlfields = $_GET['sqlfields'] : $sqlfields = "";
isset($_GET['startdate']) ? $startdate = $_GET['startdate'] : $startdate = "";
isset($_GET['enddate']) ? $enddate = $_GET['enddate'] : $enddate = "";
$payer_email = str_replace('*', '%', $payer_email);
//feed the sidebar variables
$billing_date_startdate = $startdate;
$billing_date_enddate = $enddate;
//$billing_paypal_firstname = $value;
$billing_paypal_payeremail = $payer_email;
$billing_paypal_paymentaddressstatus = $payment_address_status;
$billing_paypal_payerstatus = $payer_status;
$billing_paypal_paymentstatus = $payment_status;
$billing_paypal_vendor_type = $vendor_type;
include_once('library/config_read.php');
$log = "visited page: ";
$logQuery = "performed query for all accounting records on page: ";
?>
<?php
include("menu-bill-paypal.php");
?>
<div id="contentnorightbar">
<h2 id="Intro"><a href="#" onclick="javascript:toggleShowDiv('helpPage')"><? echo $l['Intro']['billpaypaltransactions.php']?>
<h144>+</h144></a></h2>
<div id="helpPage" style="display:none;visibility:visible" >
<?php echo $l['helpPage']['billpaypaltransactions'] ?>
<br/>
</div>
<br/>
<?php
include 'library/opendb.php';
include 'include/management/pages_common.php';
include 'include/management/pages_numbering.php'; // must be included after opendb because it needs to read the CONFIG_IFACE_TABLES_LISTING variable from the config file
// let's sanitize the values passed to us:
$payer_email = $dbSocket->escapeSimple($payer_email);
$payment_address_status = $dbSocket->escapeSimple($payment_address_status);
$payer_status = $dbSocket->escapeSimple($payer_status);
$payment_status = $dbSocket->escapeSimple($payment_status);
$vendor_type = $dbSocket->escapeSimple($vendor_type);
$startdate = $dbSocket->escapeSimple($startdate);
$enddate = $dbSocket->escapeSimple($enddate);
include_once('include/management/userBilling.php');
userBillingPayPalSummary($startdate, $enddate, $payer_email, $payment_address_status, $payer_status, $payment_status, $vendor_type, 1);
// draw the billing rates summary table
include 'library/opendb.php';
// since we need to span through pages, which we do using GET queries I can't rely on this page
// to be processed through POST but rather using GET only (with the current design anyway).
// For this reason, I need to build the GET query which I will later use in the page number's links
$getFields = "";
$counter = 0;
foreach ($sqlfields as $elements) {
$getFields .= "&sqlfields[$counter]=$elements";
$counter++;
}
// we should also sanitize the array that we will be passing to this page in the next query
$getFields = $dbSocket->escapeSimple($getFields);
$getQuery = "";
$getQuery .= "&payer_email=$payer_email";
$getQuery .= "&payment_address_status=$payment_address_status";
$getQuery .= "&payer_status=$payer_status";
$getQuery .= "&payment_status=$payment_status";
$getQuery .= "&vendor_type=$vendor_type";
$getQuery .= "&startdate=$startdate&enddate=$enddate";
$select = implode(",", $sqlfields);
// sanitizing the array passed to us in the get request
$select = $dbSocket->escapeSimple($select);
$sql = "SELECT $select FROM ".$configValues['CONFIG_DB_TBL_DALOBILLINGMERCHANT']." WHERE ".
" (payer_email LIKE '$payer_email') AND ".
" (payment_address_status LIKE '$payment_address_status') AND ".
" (payer_status LIKE '$payer_status') AND ".
" (payment_status LIKE '$payment_status') AND ".
" (vendor_type LIKE '$vendor_type') AND ".
" (payment_date>'$startdate' AND payment_date<'$enddate')";
$res = $dbSocket->query($sql);
$numrows = $res->numRows();
$sql = "SELECT $select FROM ".$configValues['CONFIG_DB_TBL_DALOBILLINGMERCHANT']." WHERE ".
" (payer_email LIKE '$payer_email') AND ".
" (payment_address_status LIKE '$payment_address_status') AND ".
" (payer_status LIKE '$payer_status') AND ".
" (payment_status LIKE '$payment_status') AND ".
" (vendor_type LIKE '$vendor_type') AND ".
" (payment_date>'$startdate' AND payment_date<'$enddate') ".
" ORDER BY $orderBy $orderType LIMIT $offset, $rowsPerPage;";
$res = $dbSocket->query($sql);
$logDebugSQL = "";
$logDebugSQL .= $sql . "\n";
/* START - Related to pages_numbering.php */
$maxPage = ceil($numrows/$rowsPerPage);
/* END */
echo "<table border='0' class='table1'>\n";
echo "
<thead>
<tr>
<th colspan='25'>".$l['all']['Records']."</th>
</tr>
<tr>
<th colspan='25' align='left'>
<br/>
";
if ($configValues['CONFIG_IFACE_TABLES_LISTING_NUM'] == "yes")
setupNumbering($numrows, $rowsPerPage, $pageNum, $orderBy, $orderType, $getFields, $getQuery);
echo " </th></tr>
</thead>
";
// building the dybamic table list fields
echo "<thread> <tr>";
foreach ($sqlfields as $value) {
switch($value) {
case "id":
$title = $l['all']['ID'];
break;
case "username":
$title = $l['all']['Username'];
break;
case "password":
$title = $l['all']['Password'];
break;
case "txnId":
$title = $l['all']['TxnId'];
break;
case "planName":
$title = $l['all']['PlanName'];
break;
case "planId":
$title = $l['all']['PlanId'];
break;
case "quantity":
$title = $l['all']['Quantity'];
break;
case "business_email":
$title = $l['all']['ReceiverEmail'];
break;
case "business_id":
$title = $l['all']['Business'];
break;
case "payment_tax":
$title = $l['all']['Tax'];
break;
case "payment_cost":
$title = $l['all']['Cost'];
break;
case "payment_fee":
$title = $l['all']['TransactionFee'];
break;
case "payment_total":
$title = $l['all']['TotalCost'];
break;
case "payment_currency":
$title = $l['all']['PaymentCurrency'];
break;
case "first_name":
$title = $l['all']['FirstName'];
break;
case "last_name":
$title = $l['all']['LastName'];
break;
case "payer_email":
$title = $l['all']['PayerEmail'];
break;
case "payer_address_name":
$title = $l['all']['AddressRecipient'];
break;
case "payer_address_street":
$title = $l['all']['Street'];
break;
case "payer_address_country":
$title = $l['all']['Country'];
break;
case "payer_address_country_code":
$title = $l['all']['CountryCode'];
break;
case "payer_address_city":
$title = $l['all']['City'];
break;
case "payer_address_state":
$title = $l['all']['State'];
break;
case "payer_address_zip":
$title = $l['all']['Zip'];
break;
case "payment_date":
$title = $l['all']['PaymentDate'];
break;
case "payment_status":
$title = $l['all']['PaymentStatus'];
break;
case "payer_status":
$title = $l['all']['PayerStatus'];
break;
case "vendor_type":
$title = $l['all']['VendorType'];
break;
case "payment_address_status":
$title = $l['all']['PaymentAddressStatus'];
break;
default:
$title = $value;
break;
}
echo "<th scope='col'> $title </th>";
} //foreach $sqlfields
echo "</tr> </thread>";
// inserting the values of each field from the database to the table
while($row = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
echo "<tr>";
foreach ($sqlfields as $value) {
echo "<td> " . $row[$value] . "</td>";
}
echo "</tr>";
}
echo "
<tfoot>
<tr>
<th colspan='25' align='left'>
";
setupLinks($pageNum, $maxPage, $orderBy, $orderType, $getFields, $getQuery);
echo "
</th>
</tr>
</tfoot>
";
echo "</table>";
include 'library/closedb.php';
?>
<?php
include('include/config/logging.php');
?>
</div>
<div id="footer">
<?php
include 'page-footer.php';
?>
</div>
</div>
</div>
</body>
</html>