2008-03-09 17:49:23 +00:00
|
|
|
<?php
|
2015-07-13 20:10:26 +02:00
|
|
|
/*
|
2016-08-20 12:16:55 +01:00
|
|
|
* LibreNMS
|
2012-05-09 10:01:42 +00:00
|
|
|
*
|
2016-08-20 12:16:55 +01:00
|
|
|
* This file is part of LibreNMS.
|
2012-05-09 10:01:42 +00:00
|
|
|
*
|
2016-08-20 12:16:55 +01:00
|
|
|
* @package librenms
|
2013-10-29 05:38:12 +10:00
|
|
|
* @subpackage billing
|
|
|
|
* @copyright (C) 2006 - 2012 Adam Armstrong
|
2012-05-09 10:01:42 +00:00
|
|
|
*/
|
|
|
|
|
2011-09-08 02:57:02 +00:00
|
|
|
ini_set('allow_url_fopen', 0);
|
|
|
|
|
2016-11-21 14:12:59 -06:00
|
|
|
$init_modules = array('web', 'auth');
|
|
|
|
require realpath(__DIR__ . '/..') . '/includes/init.php';
|
2015-07-13 20:10:26 +02:00
|
|
|
|
2018-02-20 14:57:56 +00:00
|
|
|
$urlargs = array(
|
|
|
|
'type' => 'bill_historicbits',
|
|
|
|
'id' => $_GET['bill_id'],
|
|
|
|
'width' => $_GET['x'],
|
|
|
|
'height' => $_GET['y']
|
|
|
|
);
|
|
|
|
if (isset($_GET['bill_hist_id'])) {
|
|
|
|
$urlargs['bill_hist_id'] = $_GET['bill_hist_id'];
|
2016-08-18 20:28:22 -05:00
|
|
|
} else {
|
2018-02-20 14:57:56 +00:00
|
|
|
$urlargs['from'] = $_GET['from'];
|
|
|
|
$urlargs['to'] = $_GET['to'];
|
2008-03-09 17:49:23 +00:00
|
|
|
}
|
2018-02-20 14:57:56 +00:00
|
|
|
if (isset($_GET['count'])) {
|
|
|
|
$urlargs['reducefactor'] = $_GET['count'];
|
2016-03-08 21:43:10 +00:00
|
|
|
}
|
2017-01-01 03:37:15 -06:00
|
|
|
if (isset($_GET['95th'])) {
|
2018-02-20 14:57:56 +00:00
|
|
|
$urlargs['95th'] = $_GET['95th'];
|
2008-03-09 17:49:23 +00:00
|
|
|
}
|
2017-01-01 03:37:15 -06:00
|
|
|
if (isset($_GET['ave'])) {
|
2018-02-20 14:57:56 +00:00
|
|
|
$urlargs['ave'] = $_GET['ave'];
|
2008-03-09 17:49:23 +00:00
|
|
|
}
|
|
|
|
|
2018-02-20 14:57:56 +00:00
|
|
|
$url = "{$config['base_url']}graph.php?";
|
|
|
|
$i = 0;
|
|
|
|
foreach ($urlargs as $name => $value) {
|
|
|
|
if ($i++ > 0) {
|
|
|
|
$url .= '&';
|
|
|
|
}
|
|
|
|
$url .= "$name=$value";
|
2008-03-09 17:49:23 +00:00
|
|
|
}
|
|
|
|
|
2018-02-20 14:57:56 +00:00
|
|
|
header("Location: $url", false, 301);
|
|
|
|
exit;
|