forked from lirantal/daloradius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acct-all.php
211 lines (167 loc) · 8.72 KB
/
acct-all.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
<?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/validation.php");
include("library/layout.php");
// init logging variables
$log = "visited page: ";
$logQuery = "performed query for all accounting records on page: ";
$logDebugSQL = "";
// print HTML prologue
$title = t('Intro','acctall.php');
$help = t('helpPage','acctall');
print_html_prologue($title, $langCode);
include("menu-accounting.php");
$cols = array(
"radacctid" => t('all','ID'),
"hotspot" => t('all','HotSpot'),
"username" => t('all','Username'),
"framedipaddress" => t('all','IPAddress'),
"acctstarttime" => t('all','StartTime'),
"acctstoptime" => t('all','StopTime'),
"acctsessiontime" => t('all','TotalTime'),
"acctinputoctets" => sprintf("%s (%s)", t('all','Upload'), t('all','Bytes')),
"acctoutputoctets" => sprintf("%s (%s)", t('all','Download'), t('all','Bytes')),
"acctterminatecause" => t('all','Termination'),
"nasipaddress" => t('all','NASIPAddress'),
);
$colspan = count($cols);
$half_colspan = intval($colspan / 2);
$orderBy = (array_key_exists('orderBy', $_GET) && isset($_GET['orderBy']) &&
in_array($_GET['orderBy'], array_keys($cols)))
? $_GET['orderBy'] : array_keys($cols)[0];
$orderType = (array_key_exists('orderType', $_GET) && isset($_GET['orderType']) &&
preg_match(ORDER_TYPE_REGEX, $_GET['orderType']) !== false)
? strtolower($_GET['orderType']) : "asc";
echo '<div id="contentnorightbar">';
print_title_and_help($title, $help);
include('library/opendb.php');
include_once('include/management/pages_common.php');
// setup php session variables for exporting
$_SESSION['reportTable'] = $configValues['CONFIG_DB_TBL_RADACCT'];
$_SESSION['reportQuery'] = "";
$_SESSION['reportType'] = "accountingGeneric";
$sql = sprintf("SELECT COUNT(radacctid) FROM %s", $configValues['CONFIG_DB_TBL_RADACCT']);
$res = $dbSocket->query($sql);
$logDebugSQL .= "$sql;\n";
$numrows = $res->fetchrow()[0];
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;
$sql = sprintf("SELECT ra.RadAcctId, dhs.name AS hotspot, ra.username, ra.FramedIPAddress, ra.AcctStartTime,
ra.AcctStopTime, ra.AcctSessionTime, ra.AcctInputOctets, ra.AcctOutputOctets,
ra.AcctTerminateCause, ra.NASIPAddress
FROM %s AS ra LEFT JOIN %s AS dhs ON ra.calledstationid=dhs.mac",
$configValues['CONFIG_DB_TBL_RADACCT'], $configValues['CONFIG_DB_TBL_DALOHOTSPOTS'])
. sprintf(" ORDER BY %s %s LIMIT %s, %s", $orderBy, $orderType, $offset, $rowsPerPage);
$res = $dbSocket->query($sql);
$logDebugSQL .= "$sql;\n";
$per_page_numrows = $res->numRows();
?>
<table border="0" class="table1">
<thead>
<tr style="background-color: white">
<?php
// page numbers are shown only if there is more than one page
if ($drawNumberLinks) {
printf('<td style="text-align: left" colspan="%s">go to page: ', $half_colspan + ($colspan % 2));
setupNumbering($numrows, $rowsPerPage, $pageNum, $orderBy, $orderType);
echo '</td>';
}
?>
<td style="text-align: right" colspan="<?= ($drawNumberLinks) ? $half_colspan : $colspan ?>">
<input class="button" type="button" value="CSV Export"
onclick="location.href='include/management/fileExport.php?reportFormat=csv'">
</td>
</tr>
<?php
// second line of table header
echo "<tr>";
printTableHead($cols, $orderBy, $orderType);
echo "</tr>";
?>
</thead>
<tbody>
<?php
$simple_td_format = '<td>%s</td>';
$li_style = 'margin: 7px auto';
while ($row = $res->fetchRow()) {
foreach ($row as $i => $value) {
$row[$i] = htmlspecialchars($value, ENT_QUOTES, 'UTF-8');
}
echo "<tr>";
printf($simple_td_format, $row[0]);
$onclick = "javascript:ajaxGeneric('include/management/retHotspotInfo.php','retHotspotGeneralStat','divContainerHotspotInfo'"
. sprintf(",'hotspot=%s');return false;", $row[1]);
$tooltip = '<ul style="list-style-type: none">'
. sprintf('<li style="%s"><a class="toolTip" href="mng-hs-edit.php?name=%s">%s</a></li>',
$li_style, urlencode($row[1]), t('Tooltip','HotspotEdit'))
. sprintf('<li style="%s"><a class="toolTip" href="acct-hotspot-compare.php">%s</a></li>',
$li_style, t('all','Compare'))
. '</ul>'
. '<div style="margin: 15px auto" id="divContainerHotspotInfo">Loading...</div>';
printf('<td><a class="tablenovisit" href="#" onclick="%s" ' . "tooltipText='%s'>%s</a></td>",
$onclick, $tooltip, $row[1]);
$onclick = "javascript:ajaxGeneric('include/management/retUserInfo.php','retBandwidthInfo','divContainerUserInfo',"
. sprintf("'username=%s');return false;", $row[2]);
$tooltip = sprintf('<a class="toolTip" href="mng-edit.php?username=%s">%s</a>', $row[2], t('Tooltip','UserEdit'))
. '<div style="margin: 15px auto" id="divContainerUserInfo">Loading...</div>';
printf('<td><a class="tablenovisit" href="#" onclick="%s" ' . "tooltipText='%s'>%s</a></td>",
$onclick, $tooltip, $row[2]);
printf($simple_td_format, $row[3]);
printf($simple_td_format, $row[4]);
printf($simple_td_format, $row[5]);
printf($simple_td_format, time2str($row[6]));
printf($simple_td_format, toxbyte($row[7]));
printf($simple_td_format, toxbyte($row[8]));
printf($simple_td_format, $row[9]);
printf($simple_td_format, $row[10]);
echo "</tr>";
}
echo '</tbody>';
// tfoot
$links = setupLinks_str($pageNum, $maxPage, $orderBy, $orderType);
printTableFoot($per_page_numrows, $numrows, $colspan, $drawNumberLinks, $links);
echo '</table>';
} 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);
?>