forked from lirantal/daloradius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bill-pos-list.php
268 lines (217 loc) · 10.7 KB
/
bill-pos-list.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
<?php
/*
*********************************************************************************************************
* daloRADIUS - RADIUS Web Platform
* Copyright (C) 2007 - Liran Tal <[email protected]> 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 <[email protected]>
* Filippo Lauria <[email protected]>
*
*********************************************************************************************************
*/
include("library/checklogin.php");
$operator = $_SESSION['operator_user'];
include('library/check_operator_perm.php');
include_once('library/config_read.php');
include_once("lang/main.php");
include("library/layout.php");
// init logging variables
$log = "visited page: ";
$logQuery = "performed query on page: ";
$logDebugSQL = "";
// set session's page variable
$_SESSION['PREV_LIST_PAGE'] = $_SERVER['REQUEST_URI'];
$cols = array(
"id" => t('all','ID'),
"contactperson" => t('ContactInfo','ContactPerson'),
"company" => t('ContactInfo','Company'),
"username" => t('all','Username'),
t('all','Password'),
"planname" => t('ContactInfo','PlanName')
);
$colspan = count($cols);
$half_colspan = intval($colspan / 2);
$param_cols = array();
foreach ($cols as $k => $v) { if (!is_int($k)) { $param_cols[$k] = $v; } }
// whenever possible we use a whitelist approach
$orderBy = (array_key_exists('orderBy', $_GET) && isset($_GET['orderBy']) &&
in_array($_GET['orderBy'], array_keys($param_cols)))
? $_GET['orderBy'] : array_keys($param_cols)[0];
$orderType = (array_key_exists('orderType', $_GET) && isset($_GET['orderType']) &&
in_array(strtolower($_GET['orderType']), array( "desc", "asc" )))
? strtolower($_GET['orderType']) : "asc";
// print HTML prologue
$extra_js = array(
"library/javascript/ajax.js",
"library/javascript/ajaxGeneric.js"
);
$title = t('Intro','billposlist.php');
$help = t('helpPage','billposlist');
print_html_prologue($title, $langCode, array(), $extra_js);
// we partially strip some character and
// leave validation/escaping to other functions used later in the script
$planname = (array_key_exists('planname', $_GET) && isset($_GET['planname']))
? str_replace("%", "", $_GET['planname']) : "";
$planname_enc = (!empty($planname))
? htmlspecialchars($planname, ENT_QUOTES, 'UTF-8')
: "";
if (!empty($planname_enc)) {
$title .= " :: " . $planname_enc;
}
include("menu-bill-pos.php");
// start printing content
echo '<div id="contentnorightbar">';
print_title_and_help($title, $help);
echo '<div id="returnMessages"></div>';
include('library/opendb.php');
include('include/management/pages_common.php');
$sql_WHERE = array();
$sql_WHERE[] = "rc.username = ui.username";
$sql_WHERE[] = "(rc.attribute LIKE '%-Password' OR rc.attribute = 'Auth-Type')";
if (!empty($planname)) {
$sql_WHERE[] = sprintf("ubi.planname LIKE '%s%%' ", $dbSocket->escapeSimple($planname));
}
$sql = sprintf("SELECT DISTINCT(rc.username) AS username, rc.id, rc.value, rc.attribute, ubi.contactperson,
ubi.billstatus, ubi.planname, ubi.company, ui.firstname, IFNULL(rug.username, 0) AS disabled
FROM %s AS ui, %s AS rc
LEFT JOIN %s AS ubi ON rc.username=ubi.username
LEFT JOIN %s AS rug ON rug.username=rc.username AND rug.groupname='daloRADIUS-Disabled-Users'",
$configValues['CONFIG_DB_TBL_DALOUSERINFO'],
$configValues['CONFIG_DB_TBL_RADCHECK'],
$configValues['CONFIG_DB_TBL_DALOUSERBILLINFO'],
$configValues['CONFIG_DB_TBL_RADUSERGROUP'])
. " WHERE " . implode(" AND ", $sql_WHERE) . "GROUP BY username";
$res = $dbSocket->query($sql);
$numrows = $res->numRows();
if ($numrows > 0) {
/* START - Related to pages_numbering.php */
// when $numrows is set, $maxPage is calculated inside this include file
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
// here we decide if page numbers should be shown
$drawNumberLinks = strtolower($configValues['CONFIG_IFACE_TABLES_LISTING_NUM']) == "yes" && $maxPage > 1;
/* END */
// we execute and log the actual query
$sql .= sprintf(" ORDER BY %s %s LIMIT %s, %s", $orderBy, $orderType, $offset, $rowsPerPage);
$res = $dbSocket->query($sql);
$logDebugSQL .= "$sql;\n";
$per_page_numrows = $res->numRows();
// the partial query is built starting from user input
// and for being passed to setupNumbering and setupLinks functions
$partial_query_string = (!empty($planname_enc))
? sprintf("&vendor=%s", urlencode($planname_enc)) : "";
// this can be passed as form attribute and
// printTableFormControls function parameter
$action = "mng-del.php";
?>
<form name="listall" method="POST" action="<?= $action ?>">
<table border="0" class="table1">
<thead>
<?php
// page numbers are shown only if there is more than one page
if ($drawNumberLinks) {
echo '<tr style="background-color: white">';
printf('<td style="text-align: left" colspan="%s">go to page: ', $colspan);
setupNumbering($numrows, $rowsPerPage, $pageNum, $orderBy, $orderType, $partial_query_string);
echo '</td>' . '</tr>';
}
?>
<tr>
<th style="text-align: left" colspan="<?= $colspan ?>">
<?php
printTableFormControls('username[]', $action);
?>
<input class="button" type="button" value="Disable"
onclick="javascript:disableCheckbox('listall', 'include/management/userOperations.php')">
<input class="button" type="button" value="Enable"
onclick="javascript:enableCheckbox('listall', 'include/management/userOperations.php')">
<br>
<input class="button" type="button" value="Refill Session Time"
onclick="javascript:refillSessionTimeCheckbox('listall', 'include/management/userOperations.php')">
<input class="button" type="button" value="Refill Session Traffic"
onclick="javascript:refillSessionTrafficCheckbox('listall','include/management/userOperations.php'">
</th>
</tr>
<tr>
<?php
// second line of table header
printTableHead($cols, $orderBy, $orderType, $partial_query_string);
?>
</tr>
</thead>
<tbody>
<?php
$count = 1;
while ($row = $res->fetchRow()) {
$rowlen = count($row);
// escape row elements
for ($i = 0; $i < $rowlen; $i++) {
$row[$i] = htmlspecialchars($row[$i], ENT_QUOTES, 'UTF-8');
}
list($username, $id, $value, $attribute, $contactperson, $billstatus, $planname, $company, $firstname, $disabled) = $row;
$img = (boolval($disabled))
? '<img title="user is disabled" src="images/icons/userStatusDisabled.gif" alt="[disabled]">'
: '<img title="user is enabled" src="images/icons/userStatusActive.gif" alt="[enabled]">';
$auth = (strtolower($configValues['CONFIG_IFACE_PASSWORD_HIDDEN']) === "yes")
? "[Password is hidden]" : $value;
$tooltipText = sprintf('<a class="toolTip" href="bill-pos-edit.php?username=%s">%s</a><br><br>'
. '<div style="margin: 15px auto" id="divContainerUserInfo">Loading...</div>',
urlencode($username), t('Tooltip','UserEdit'));
$onclick = sprintf("javascript:ajaxGeneric('include/management/retUserInfo.php','retBandwidthInfo',"
. "'divContainerUserInfo','username=%s');return false;", $username);
?>
<tr>
<td>
<input type="checkbox" name="username[]" value="<?= $username ?>" id="<?= "checkbox-$count" ?>">
<label for="<?= "checkbox-$count" ?>"><?= $id ?></label>
</td>
<td><?= $contactperson ?></td>
<td><?= $company ?></td>
<td>
<?= $img ?>
<a class="tablenovisit" href="#" onclick="<?= $onclick ?>" tooltipText='<?= $tooltipText ?>'>
<?= $username ?>
</a>
</td>
<td><?= $auth ?></td>
<td><?= $planname ?></td>
</tr>
<?php
$count++;
}
?>
</tbody>
<?php
// tfoot
$links = setupLinks_str($pageNum, $maxPage, $orderBy, $orderType, $partial_query_string);
printTableFoot($per_page_numrows, $numrows, $colspan, $drawNumberLinks, $links);
?>
</table>
<input type="hidden" name="csrf_token" value="<?= dalo_csrf_token() ?>">
</form>
<?php
} else {
$failureMsg = "Nothing to display";
include_once("include/management/actionMessages.php");
}
include('library/closedb.php');
include('include/config/logging.php');
$inline_extra_js = "
var tooltipObj = new DHTMLgoodies_formTooltip();
tooltipObj.setTooltipPosition('right');
tooltipObj.setPageBgColor('#EEEEEE');
tooltipObj.setTooltipCornerSize(15);
tooltipObj.initFormFieldTooltip()";
print_footer_and_html_epilogue($inline_extra_js);
?>