2017-07-20 01:49:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories\Daemon;
|
|
|
|
|
2017-08-27 19:55:25 +00:00
|
|
|
use Webmozart\Assert\Assert;
|
2017-10-06 04:09:43 +00:00
|
|
|
use Psr\Http\Message\ResponseInterface;
|
2017-07-20 01:49:41 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface;
|
|
|
|
|
|
|
|
class ServerRepository extends BaseRepository implements ServerRepositoryInterface
|
|
|
|
{
|
|
|
|
/**
|
2017-10-06 04:09:43 +00:00
|
|
|
* Create a new server on the daemon for the panel.
|
|
|
|
*
|
|
|
|
* @param array $structure
|
|
|
|
* @param array $overrides
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*
|
2018-05-13 16:19:35 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
2017-07-20 01:49:41 +00:00
|
|
|
*/
|
2017-10-06 04:09:43 +00:00
|
|
|
public function create(array $structure, array $overrides = []): ResponseInterface
|
2017-07-20 01:49:41 +00:00
|
|
|
{
|
|
|
|
foreach ($overrides as $key => $value) {
|
2018-01-06 00:27:47 +00:00
|
|
|
$structure[$key] = value($value);
|
2017-07-20 01:49:41 +00:00
|
|
|
}
|
|
|
|
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('POST', 'servers', [
|
2017-10-06 04:09:43 +00:00
|
|
|
'json' => $structure,
|
2017-07-22 02:17:42 +00:00
|
|
|
]);
|
2017-07-20 01:49:41 +00:00
|
|
|
}
|
2017-07-23 01:15:01 +00:00
|
|
|
|
|
|
|
/**
|
2018-01-06 00:27:47 +00:00
|
|
|
* Update server details on the daemon.
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
2018-05-13 16:19:35 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
2017-07-23 01:15:01 +00:00
|
|
|
*/
|
2018-01-06 00:27:47 +00:00
|
|
|
public function update(array $data): ResponseInterface
|
2017-07-23 01:15:01 +00:00
|
|
|
{
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('PATCH', 'server', [
|
2017-07-23 01:15:01 +00:00
|
|
|
'json' => $data,
|
|
|
|
]);
|
|
|
|
}
|
2017-07-23 19:51:18 +00:00
|
|
|
|
|
|
|
/**
|
2018-01-06 00:27:47 +00:00
|
|
|
* Mark a server to be reinstalled on the system.
|
|
|
|
*
|
|
|
|
* @param array|null $data
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
2018-05-13 16:19:35 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
2017-07-23 19:51:18 +00:00
|
|
|
*/
|
2018-01-06 00:27:47 +00:00
|
|
|
public function reinstall(array $data = null): ResponseInterface
|
2017-07-23 19:51:18 +00:00
|
|
|
{
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/reinstall', [
|
2018-01-06 00:27:47 +00:00
|
|
|
'json' => $data ?? [],
|
2017-07-25 02:34:10 +00:00
|
|
|
]);
|
2017-07-23 19:51:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-06 00:27:47 +00:00
|
|
|
* Mark a server as needing a container rebuild the next time the server is booted.
|
|
|
|
*
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
2018-05-13 16:19:35 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
2017-07-23 19:51:18 +00:00
|
|
|
*/
|
2018-01-06 00:27:47 +00:00
|
|
|
public function rebuild(): ResponseInterface
|
2017-07-23 19:51:18 +00:00
|
|
|
{
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/rebuild');
|
2017-07-23 19:51:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-06 00:27:47 +00:00
|
|
|
* Suspend a server on the daemon.
|
|
|
|
*
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
2018-05-13 16:19:35 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
2017-07-23 19:51:18 +00:00
|
|
|
*/
|
2018-01-06 00:27:47 +00:00
|
|
|
public function suspend(): ResponseInterface
|
2017-07-23 19:51:18 +00:00
|
|
|
{
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/suspend');
|
2017-07-23 19:51:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-06 00:27:47 +00:00
|
|
|
* Un-suspend a server on the daemon.
|
|
|
|
*
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
2018-05-13 16:19:35 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
2017-07-23 19:51:18 +00:00
|
|
|
*/
|
2018-01-06 00:27:47 +00:00
|
|
|
public function unsuspend(): ResponseInterface
|
2017-07-23 19:51:18 +00:00
|
|
|
{
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/unsuspend');
|
2017-07-23 19:51:18 +00:00
|
|
|
}
|
2017-07-25 02:34:10 +00:00
|
|
|
|
|
|
|
/**
|
2018-01-06 00:27:47 +00:00
|
|
|
* Delete a server on the daemon.
|
|
|
|
*
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
2018-05-13 16:19:35 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
2017-07-25 02:34:10 +00:00
|
|
|
*/
|
2018-01-06 00:27:47 +00:00
|
|
|
public function delete(): ResponseInterface
|
2017-07-25 02:34:10 +00:00
|
|
|
{
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('DELETE', 'servers');
|
2017-07-25 02:34:10 +00:00
|
|
|
}
|
2017-08-31 02:11:14 +00:00
|
|
|
|
|
|
|
/**
|
2018-05-13 14:50:56 +00:00
|
|
|
* Return details on a specific server.
|
2018-01-06 00:27:47 +00:00
|
|
|
*
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
2018-05-13 16:19:35 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
2017-08-31 02:11:14 +00:00
|
|
|
*/
|
2018-01-06 00:27:47 +00:00
|
|
|
public function details(): ResponseInterface
|
2017-08-31 02:11:14 +00:00
|
|
|
{
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('GET', 'server');
|
2017-08-31 02:11:14 +00:00
|
|
|
}
|
2017-09-25 02:12:30 +00:00
|
|
|
|
|
|
|
/**
|
2018-01-06 00:27:47 +00:00
|
|
|
* Revoke an access key on the daemon before the time is expired.
|
|
|
|
*
|
|
|
|
* @param string|array $key
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*
|
2018-05-13 16:19:35 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
2017-09-25 02:12:30 +00:00
|
|
|
*/
|
2018-01-06 00:27:47 +00:00
|
|
|
public function revokeAccessKey($key): ResponseInterface
|
2017-09-25 02:12:30 +00:00
|
|
|
{
|
2017-12-03 20:00:47 +00:00
|
|
|
if (is_array($key)) {
|
2018-03-04 03:45:10 +00:00
|
|
|
return $this->getHttpClient()->request('POST', 'keys/batch-delete', [
|
2018-03-04 03:53:07 +00:00
|
|
|
'json' => ['keys' => $key],
|
2017-12-03 20:00:47 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Assert::stringNotEmpty($key, 'First argument passed to revokeAccessKey must be a non-empty string or array, received %s.');
|
2017-09-25 02:12:30 +00:00
|
|
|
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('DELETE', 'keys/' . $key);
|
2017-09-25 02:12:30 +00:00
|
|
|
}
|
2017-07-20 01:49:41 +00:00
|
|
|
}
|