mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Response;
|
|
use LibreNMS\Enum\ImageFormat;
|
|
use LibreNMS\Exceptions\RrdGraphException;
|
|
use LibreNMS\Util\Debug;
|
|
use LibreNMS\Util\Graph;
|
|
use LibreNMS\Util\Url;
|
|
|
|
class GraphController extends Controller
|
|
{
|
|
/**
|
|
* @throws \LibreNMS\Exceptions\RrdGraphException
|
|
*/
|
|
public function __invoke(Request $request, string $path = ''): Response
|
|
{
|
|
$vars = array_merge(Url::parseLegacyPathVars($request->path()), $request->except(['username', 'password']));
|
|
|
|
if (\Auth::check()) {
|
|
// only allow debug for logged in users
|
|
Debug::set(! empty($vars['debug']));
|
|
}
|
|
|
|
try {
|
|
$graph = Graph::get($vars);
|
|
|
|
if (Debug::isEnabled()) {
|
|
return response('<img src="' . $graph->inline() . '" alt="graph" />');
|
|
}
|
|
|
|
$headers = [
|
|
'Content-type' => $graph->contentType(),
|
|
];
|
|
|
|
if ($request->get('output') == 'base64') {
|
|
return response($graph->base64(), 200, $headers);
|
|
}
|
|
|
|
return response($graph->data, 200, $headers);
|
|
} catch (RrdGraphException $e) {
|
|
if (Debug::isEnabled()) {
|
|
throw $e;
|
|
}
|
|
|
|
return response($e->generateErrorImage(), 500, ['Content-type' => ImageFormat::forGraph()->contentType()]);
|
|
}
|
|
}
|
|
}
|