mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 00:34:44 +02:00
43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api\Client\Servers;
|
|
|
|
use Carbon\Carbon;
|
|
use App\Models\Server;
|
|
use Illuminate\Cache\Repository;
|
|
use App\Transformers\Api\Client\StatsTransformer;
|
|
use App\Repositories\Daemon\DaemonServerRepository;
|
|
use App\Http\Controllers\Api\Client\ClientApiController;
|
|
use App\Http\Requests\Api\Client\Servers\GetServerRequest;
|
|
use Illuminate\Http\Client\ConnectionException;
|
|
|
|
class ResourceUtilizationController extends ClientApiController
|
|
{
|
|
/**
|
|
* ResourceUtilizationController constructor.
|
|
*/
|
|
public function __construct(private Repository $cache, private DaemonServerRepository $repository)
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Return the current resource utilization for a server. This value is cached for up to
|
|
* 20 seconds at a time to ensure that repeated requests to this endpoint do not cause
|
|
* a flood of unnecessary API calls.
|
|
*
|
|
* @throws ConnectionException
|
|
*/
|
|
public function __invoke(GetServerRequest $request, Server $server): array
|
|
{
|
|
$key = "resources:$server->uuid";
|
|
$stats = $this->cache->remember($key, Carbon::now()->addSeconds(20), function () use ($server) {
|
|
return $this->repository->setServer($server)->getDetails();
|
|
});
|
|
|
|
return $this->fractal->item($stats)
|
|
->transformWith($this->getTransformer(StatsTransformer::class))
|
|
->toArray();
|
|
}
|
|
}
|