<?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 extension creates a pie chart of the comparison of hotspots per unique users
*
* Authors: Liran Tal <hide@address.com>
*
*********************************************************************************************************
*/
include('checklogin.php');
include 'opendb.php';
include 'libchart/libchart.php';
header("Content-type: image/png");
$chart = new PieChart(620,320);
// getting total downloads of days in a month
$sql = "SELECT ".$configValues['CONFIG_DB_TBL_DALOHOTSPOTS'].".name, count(distinct(UserName)), count(radacctid), ".
" avg(AcctSessionTime), sum(AcctSessionTime) FROM ".$configValues['CONFIG_DB_TBL_RADACCT'].
" JOIN ".$configValues['CONFIG_DB_TBL_DALOHOTSPOTS'].
" ON (".$configValues['CONFIG_DB_TBL_RADACCT'].".calledstationid LIKE ".
$configValues['CONFIG_DB_TBL_DALOHOTSPOTS'].".mac) GROUP BY ".$configValues['CONFIG_DB_TBL_DALOHOTSPOTS'].".name;";
$res = $dbSocket->query($sql);
while($row = $res->fetchRow()) {
$chart->addPoint(new Point("$row[0] ($row[3] seconds)", "$row[3]"));
}
$chart->setTitle("Distribution of Time usage per Hotspot");
$chart->render();
include 'closedb.php';
?>