44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Repositories\Wings;
|
|
|
|
use GuzzleHttp\Exception\TransferException;
|
|
use Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException;
|
|
|
|
class DaemonConfigurationRepository extends DaemonRepository
|
|
{
|
|
/**
|
|
* Returns system information from the wings instance.
|
|
*
|
|
* @return array
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
|
*/
|
|
public function getSystemInformation(): array
|
|
{
|
|
try {
|
|
$response = $this->getHttpClient()->get('/api/system');
|
|
} catch (TransferException $exception) {
|
|
throw new DaemonConnectionException($exception);
|
|
}
|
|
|
|
return json_decode($response->getBody()->__toString(), true);
|
|
}
|
|
|
|
/**
|
|
* Updates the configuration information for a daemon.
|
|
*
|
|
* @param array $attributes
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
|
*/
|
|
public function update(array $attributes = [])
|
|
{
|
|
try {
|
|
return $this->getHttpClient()->post(
|
|
'/api/update', array_merge($this->node->getConfiguration(), $attributes)
|
|
);
|
|
} catch (TransferException $exception) {
|
|
throw new DaemonConnectionException($exception);
|
|
}
|
|
}
|
|
}
|