<?php
/*
*********************************************************************************************************
* daloRADIUS - RADIUS Web Platform
* Copyright (C) 2007 - Liran Tal <hide@address.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.
*
*********************************************************************************************************
* Description:
* this graph extension procduces a query of the overall logins
* made by a particular user on a daily, monthly and yearly basis.
*
* Authors: Liran Tal <hide@address.com>
*
*********************************************************************************************************
*/
include('checklogin.php');
$type = $_REQUEST['type'];
$username = $_REQUEST['user'];
if ($type == "daily") {
daily($username);
} elseif ($type == "monthly") {
monthly($username);
} elseif ($type == "yearly") {
yearly($username);
}
function daily($username) {
include 'opendb.php';
include 'libchart/libchart.php';
$username = $dbSocket->escapeSimple($username);
header("Content-type: image/png");
$chart = new VerticalChart(680,500);
$sql = "SELECT UserName, count(AcctStartTime), DAY(AcctStartTime) AS Day FROM ".
$configValues['CONFIG_DB_TBL_RADACCT']." WHERE username='$username' GROUP BY Day;";
$res = $dbSocket->query($sql);
while($row = $res->fetchRow()) {
$chart->addPoint(new Point("$row[2]", "$row[1]"));
}
$chart->setTitle("Total Users");
$chart->render();
include 'closedb.php';
}
function monthly($username) {
include 'opendb.php';
include 'libchart/libchart.php';
$username = $dbSocket->escapeSimple($username);
header("Content-type: image/png");
$chart = new VerticalChart(680,500);
$sql = "SELECT UserName, count(AcctStartTime), MONTHNAME(AcctStartTime) AS Month FROM ".
$configValues['CONFIG_DB_TBL_RADACCT']." WHERE username='$username' GROUP BY Month;";
$res = $dbSocket->query($sql);
while($row = $res->fetchRow()) {
$chart->addPoint(new Point("$row[2]", "$row[1]"));
}
$chart->setTitle("Total Users");
$chart->render();
include 'closedb.php';
}
function yearly($username) {
include 'opendb.php';
include 'libchart/libchart.php';
$username = $dbSocket->escapeSimple($username);
header("Content-type: image/png");
$chart = new VerticalChart(680,500);
$sql = "SELECT UserName, count(AcctStartTime), YEAR(AcctStartTime) AS Year FROM ".
$configValues['CONFIG_DB_TBL_RADACCT']." WHERE username='$username' GROUP BY Year;";
$res = $dbSocket->query($sql);
while($row = $res->fetchRow()) {
$chart->addPoint(new Point("$row[2]", "$row[1]"));
}
$chart->setTitle("Total Users");
$chart->render();
include 'closedb.php';
}
?>