Skip to content
Snippets Groups Projects
user-logs.php 7.63 KiB
Newer Older
Robert Anderson's avatar
Robert Anderson committed
<?php
Nigel Kukard's avatar
Nigel Kukard committed
# Radius User Logs
# Copyright (C) 2007-2009, AllWorldIT
Robert Anderson's avatar
Robert Anderson committed
# 
# 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.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# 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.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.



include_once("includes/header.php");
include_once("includes/footer.php");
include_once("includes/db.php");
include("includes/radiuscodes.php");
Robert Anderson's avatar
Robert Anderson committed

$db = connect_db();


printHeader(array(
		"Tabs" => array(
			"Back to user list" => "user-main.php"
		),
));

Robert Anderson's avatar
Robert Anderson committed
?>
Robert Anderson's avatar
Robert Anderson committed
<p class="pageheader">User Log</p>
Robert Anderson's avatar
Robert Anderson committed
<?php
if (isset($_POST['user_id'])) {
Robert Anderson's avatar
Robert Anderson committed

Robert Anderson's avatar
Robert Anderson committed
	# Which user in the accounting table should we look for?
	$stmt = $db->prepare("SELECT Username FROM ${DB_TABLE_PREFIX}users WHERE ID = ?");
	$stmt->execute(array($_POST['user_id']));
	$row = $stmt->fetchObject();
	$stmt->closeCursor();
	$getuser = $row->username;
Robert Anderson's avatar
Robert Anderson committed

Robert Anderson's avatar
Robert Anderson committed

	<form id="main_form" action="user-logs.php" method="post">
		<!-- User input from and to dates -->
		<div>
			<table>
				<tr>
					<td>From (yyyy-mm-dd)</td>
				</tr>
				<tr>
					<td><input type="text" name="date_from" /></td>
				</tr>
				<tr>
					<td>To (yyyy-mm-dd)</td>
				</tr>
				<tr>
					<td><input type="text" name="date_to" /></td>
				</tr>
				<tr>
					<input type="hidden" name="user_id" value=<?php echo $_POST['user_id']; ?> />
					<td><input type="submit" value="Get results" /></td>
				</tr>
			</table>
		</div>
	</form>

	<p />

	<!-- Tables headings -->
	<table class="results" style="width: 75%;">
		<tr class="resultstitle">
			<td class="textcenter">EventTimestamp</td>
			<td class="textcenter">ServiceType</td>
			<td class="textcenter">FramedProtocol</td>
			<td class="textcenter">NASPort</td>
			<td class="textcenter">NASPortType</td>
			<td class="textcenter">CallingSationID</td>
			<td class="textcenter">CalledStationID</td>
			<td class="textcenter">NASPortID</td>
			<td class="textcenter">AcctSessionID</td>
			<td class="textcenter">FramedIPAddress</td>
			<td class="textcenter">AcctAuthentic</td>
			<td class="textcenter">NASIdentifier</td>
			<td class="textcenter">NASIPAddress</td>
			<td class="textcenter">AcctDelayTime</td>
			<td class="textcenter">AcctSessionTime</td>
			<td class="textcenter">Data-Input</td>
			<td class="textcenter">Data-Output</td>
			<td class="textcenter">AcctStatusType</td>
			<td class="textcenter">AcctTerminateCause</td>
		</tr>

Robert Anderson's avatar
Robert Anderson committed

		# Extra SQL
		$extraSQL = "";
		$extraSQLVals = array();
		$limitSQL = "";

		# Do we have a from date?, if so add it to our query
		if (isset($_POST['date_from'])) {
			$extraSQL .= " AND EventTimestamp >= ?";
			array_push($extraSQLVals,$_POST['date_from']);
		}
		# Do we have a from date?, if so add it to our query
		if (isset($_POST['date_to'])) {
			$extraSQL .= " AND EventTimestamp <= ?";
			array_push($extraSQLVals,$_POST['date_to']);
		}

		# Modify if we had a partial search or no search
		if (count($extraSQLVals) < 2) {
			$limitSQL = "LIMIT 50";
		}

		# Query to get all default data
		$sql = "
			SELECT
Nigel Kukard's avatar
Nigel Kukard committed
				EventTimestamp, 
				ServiceType,
				FramedProtocol,
				NASPort,
				NASPortType, 
				CallingStationID, 
				CalledStationID, 
				NASPortID, 
				AcctSessionID, 
				FramedIPAddress, 
				AcctAuthentic, 
				NASIdentifier, 
				NASIPAddress, 
				AcctDelayTime, 
				AcctSessionTime, 
				AcctInputOctets, 
				AcctInputGigawords, 
				AcctOutputOctets, 
				AcctOutputGigawords, 
				AcctStatusType, 
				AcctTerminateCause 
Robert Anderson's avatar
Robert Anderson committed
			FROM 
Nigel Kukard's avatar
Nigel Kukard committed
				${DB_TABLE_PREFIX}accounting 
Robert Anderson's avatar
Robert Anderson committed
			WHERE 
Nigel Kukard's avatar
Nigel Kukard committed
				Username = ".$db->quote($getuser)."
				$extraSQL
Robert Anderson's avatar
Robert Anderson committed
			ORDER BY
Nigel Kukard's avatar
Nigel Kukard committed
				EventTimestamp
Robert Anderson's avatar
Robert Anderson committed
			DESC
				$limitSQL
			";

		$res = $db->prepare($sql);
		$res->execute($extraSQLVals);

		$totalInputData = 0;
Robert Anderson's avatar
Robert Anderson committed
		$totalOutputData = 0;
Robert Anderson's avatar
Robert Anderson committed
		$totalSessionTime = 0;

		while ($row = $res->fetchObject()) {

			# Input
			$inputDataItem = 0;

			if (!empty($row->acctinputoctets) && $row->acctinputoctets > 0) {
				$inputDataItem += ($row->acctinputoctets / 1024) / 1024;
Robert Anderson's avatar
Robert Anderson committed
			if (!empty($row->acctinputgigawords) && $row->inputgigawords > 0) {
				$inputDataItem += ($row->acctinputgigawords * 4096);
			$totalInputData += $inputDataItem;
Robert Anderson's avatar
Robert Anderson committed

			# Output
			$outputDataItem = 0;

			if (!empty($row->acctoutputoctets) && $row->acctoutputoctets > 0) {
				$outputDataItem += ($row->acctoutputoctets / 1024) / 1024;
Robert Anderson's avatar
Robert Anderson committed
			}
			if (!empty($row->acctoutputgigawords) && $row->acctoutputgigawords > 0) {
				$outputDataItem += ($row->acctoutputgigawords * 4096);
Robert Anderson's avatar
Robert Anderson committed

Robert Anderson's avatar
Robert Anderson committed
			$totalOutputData = $totalOutputData + $outputDataItem;

			# Add up time
			$sessionTimeItem = 0;

Robert Anderson's avatar
Robert Anderson committed
			if (!empty($row->acctsessiontime) && $row->acctsessiontime > 0) {
				$sessionTimeItem += ($row->acctsessiontime - ($row->acctsessiontime % 60)) / 60;
Robert Anderson's avatar
Robert Anderson committed
			}
			$totalSessionTime += $sessionTimeItem;
Robert Anderson's avatar
Robert Anderson committed
?>
			<tr class="resultsitem">
				<td class="textcenter"><?php echo $row->eventtimestamp; ?></td>
				<td class="textcenter"><?php echo $row->servicetype; ?></td>
				<td class="textcenter"><?php echo $row->framedprotocol; ?></td>
				<td class="textcenter"><?php echo $row->nasport; ?></td>
				<td class="textcenter"><?php echo $row->nasporttype; ?></td>
				<td class="textcenter"><?php echo $row->callingstationid; ?></td>
				<td class="textcenter"><?php echo $row->calledstationid; ?></td>
				<td class="textcenter"><?php echo $row->nasportid; ?></td>
				<td class="textcenter"><?php echo $row->acctsessionid; ?></td>
				<td class="textcenter"><?php echo $row->framedipaddress; ?></td>
				<td class="textcenter"><?php echo $row->acctauthentic; ?></td>
				<td class="textcenter"><?php echo $row->nasidentifier; ?></td>
				<td class="textcenter"><?php echo $row->nasipaddress; ?></td>
				<td class="textcenter"><?php echo $row->acctdelaytime; ?></td>
				<td class="textcenter"><?php echo $sessionTimeItem; ?> Min</td>
				<td class="textcenter"><?php printf('%.2f',$inputDataItem); ?> MB</td>
				<td class="textcenter"><?php printf('%.2f',$outputDataItem); ?> MB</td>
				<td class="textcenter"><?php echo $row->acctstatustype; ?></td>
				<td class="textcenter"><?php echo strRadiusTermCode($row->acctterminatecause); ?></td>
Robert Anderson's avatar
Robert Anderson committed
			</tr>
<?php
		if ($res->rowCount() == 0) {
Robert Anderson's avatar
Robert Anderson committed
?>
Robert Anderson's avatar
Robert Anderson committed
			<tr>
				<td colspan="23" class="textcenter">No logs found for user: <?php echo $getuser ?></td>
			</tr>
Robert Anderson's avatar
Robert Anderson committed

		} else {
?>
			<tr class="resultsitem">
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
				<td class="textcenter" style="font-weight: bold;"><? echo $totalSessionTime; ?> Min</td>
				<td class="textcenter" style="font-weight: bold;"><? printf('%.2f',$totalInputData); ?> MB</td>
				<td class="textcenter" style="font-weight: bold;"><? printf('%.2f',$totalOutputData); ?> MB</td>
				<td class="textcenter"></td>
				<td class="textcenter"></td>
			</tr>
Robert Anderson's avatar
Robert Anderson committed
<?php
		}
		$res->closeCursor();
Robert Anderson's avatar
Robert Anderson committed
?>
Robert Anderson's avatar
Robert Anderson committed
	</table>
Robert Anderson's avatar
Robert Anderson committed
<?php
Robert Anderson's avatar
Robert Anderson committed
?>
Robert Anderson's avatar
Robert Anderson committed
	<div class="warning">No user selected</div>
Robert Anderson's avatar
Robert Anderson committed
<?php
Robert Anderson's avatar
Robert Anderson committed
}
Robert Anderson's avatar
Robert Anderson committed
printFooter();

# vim: ts=4
?>