| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
- /*
- * Copyright (C) 2019 Alexander Marston ([email protected])
- *
- * 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 3 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, see <http://www.gnu.org/licenses/>.
- */
- // Require includes
- require __DIR__ . '/vendor/autoload.php';
- require __DIR__ . '/includes/utilities.php';
- require __DIR__ . '/includes/vnstat.php';
- require __DIR__ . '/includes/config.php';
- if (isset($vnstat_config)) {
- $vnstat_cmd = $vnstat_bin_dir.' --config '.$vnstat_config;
- } else {
- $vnstat_cmd = $vnstat_bin_dir;
- }
- if (empty($graph_type)) {
- $graph_type = 'linear';
- }
- // Initiaite vnStat class
- $vnstat = new vnStat($vnstat_cmd);
- // Initiate Smarty
- $smarty = new Smarty();
- // Set the current year
- $smarty->assign('year', date("Y"));
- // Set the list of interfaces
- $interface_list = $vnstat->getInterfaces();
- // Set the current interface
- $thisInterface = "";
- if (isset($_GET['i'])) {
- $interfaceChosen = rawurldecode($_GET['i']);
- if (in_array($interfaceChosen, $interface_list, true)) {
- $thisInterface = $interfaceChosen;
- } else {
- $thisInterface = reset($interface_list);
- }
- } else {
- // Assume they mean the first interface
- $thisInterface = reset($interface_list);
- }
- $smarty->assign('graph_type', $graph_type);
- $smarty->assign('current_interface', $thisInterface);
- // Assign interface options
- $smarty->assign('interface_list', $interface_list);
- // JsonVersion
- $smarty->assign('jsonVersion', $vnstat->getVnstatJsonVersion());
- // Populate table data
- if ($vnstat->getVnstatJsonVersion() > 1) {
- $fiveData = $vnstat->getInterfaceData('five', 'table', $thisInterface);
- $smarty->assign('fiveTableData', $fiveData);
- }
- $hourlyData = $vnstat->getInterfaceData('hourly', 'table', $thisInterface);
- $smarty->assign('hourlyTableData', $hourlyData);
- $dailyData = $vnstat->getInterfaceData('daily', 'table', $thisInterface);
- $smarty->assign('dailyTableData', $dailyData);
- $monthlyData = $vnstat->getInterfaceData('monthly', 'table', $thisInterface);
- $smarty->assign('monthlyTableData', $monthlyData);
- $top10Data = $vnstat->getInterfaceData('top10', 'table', $thisInterface);
- $smarty->assign('top10TableData', $top10Data);
- // Populate graph data
- if ($vnstat->getVnstatJsonVersion() > 1) {
- $fiveGraphData = $vnstat->getInterfaceData('five', 'graph', $thisInterface);
- $smarty->assign('fiveGraphData', $fiveGraphData);
- $smarty->assign('fiveLargestPrefix', $fiveGraphData[0]['delimiter']);
- $smarty->assign('fiveBase', $fiveGraphData[0]['base']);
- }
- $hourlyGraphData = $vnstat->getInterfaceData('hourly', 'graph', $thisInterface);
- $smarty->assign('hourlyGraphData', $hourlyGraphData);
- $smarty->assign('hourlyLargestPrefix', $hourlyGraphData[0]['delimiter']);
- $smarty->assign('hourlyBase', $hourlyGraphData[0]['base']);
- $dailyGraphData = $vnstat->getInterfaceData('daily', 'graph', $thisInterface);
- $smarty->assign('dailyGraphData', $dailyGraphData);
- $smarty->assign('dailyLargestPrefix', $dailyGraphData[0]['delimiter']);
- $smarty->assign('dailyBase', $dailyGraphData[0]['base']);
- $monthlyGraphData = $vnstat->getInterfaceData('monthly', 'graph', $thisInterface);
- $smarty->assign('monthlyGraphData', $monthlyGraphData);
- $smarty->assign('monthlyLargestPrefix', $monthlyGraphData[0]['delimiter']);
- // Display the page
- $smarty->display('templates/site_index.tpl');
- ?>
|