2019-08-17 23:03:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories\Wings;
|
|
|
|
|
2019-09-06 03:33:27 +00:00
|
|
|
use Webmozart\Assert\Assert;
|
|
|
|
use Pterodactyl\Models\Server;
|
2019-08-17 23:03:10 +00:00
|
|
|
use GuzzleHttp\Exception\TransferException;
|
|
|
|
use Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException;
|
|
|
|
|
2019-09-06 03:33:27 +00:00
|
|
|
class DaemonServerRepository extends DaemonRepository
|
2019-08-17 23:03:10 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Returns details about a server from the Daemon instance.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
|
|
|
*/
|
|
|
|
public function getDetails(): array
|
|
|
|
{
|
2019-09-06 04:16:36 +00:00
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
2019-09-06 03:33:27 +00:00
|
|
|
|
2019-08-17 23:03:10 +00:00
|
|
|
try {
|
|
|
|
$response = $this->getHttpClient()->get(
|
2019-09-06 03:33:27 +00:00
|
|
|
sprintf('/api/servers/%s', $this->server->uuid)
|
2019-08-17 23:03:10 +00:00
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
|
|
|
|
|
|
|
return json_decode($response->getBody()->__toString(), true);
|
|
|
|
}
|
|
|
|
}
|