2019-12-10 05:05:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Controllers\Admin\Nodes;
|
|
|
|
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Pterodactyl\Models\Node;
|
|
|
|
use Illuminate\Http\JsonResponse;
|
|
|
|
use Pterodactyl\Http\Controllers\Controller;
|
|
|
|
use Pterodactyl\Repositories\Wings\DaemonConfigurationRepository;
|
|
|
|
|
|
|
|
class SystemInformationController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Repositories\Wings\DaemonConfigurationRepository
|
|
|
|
*/
|
|
|
|
private $repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SystemInformationController constructor.
|
|
|
|
*/
|
|
|
|
public function __construct(DaemonConfigurationRepository $repository)
|
|
|
|
{
|
|
|
|
$this->repository = $repository;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns system information from the Daemon.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
|
|
|
*/
|
|
|
|
public function __invoke(Request $request, Node $node)
|
|
|
|
{
|
|
|
|
$data = $this->repository->setNode($node)->getSystemInformation();
|
|
|
|
|
2022-05-04 23:23:01 +00:00
|
|
|
return new JsonResponse([
|
2019-12-10 05:05:39 +00:00
|
|
|
'version' => $data['version'] ?? '',
|
|
|
|
'system' => [
|
|
|
|
'type' => Str::title($data['os'] ?? 'Unknown'),
|
|
|
|
'arch' => $data['architecture'] ?? '--',
|
|
|
|
'release' => $data['kernel_version'] ?? '--',
|
|
|
|
'cpus' => $data['cpu_count'] ?? 0,
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|