2017-07-20 01:49:41 +00:00
|
|
|
<?php
|
2017-09-26 02:43:01 +00:00
|
|
|
/**
|
2017-07-20 01:49:41 +00:00
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-07-20 01:49:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
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
|
|
|
|
*
|
|
|
|
* @throws \GuzzleHttp\Exception\RequestException
|
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
|
|
|
{
|
|
|
|
// Loop through overrides.
|
|
|
|
foreach ($overrides as $key => $value) {
|
2017-10-06 04:09:43 +00:00
|
|
|
array_set($structure, $key, $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
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function update(array $data)
|
|
|
|
{
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2017-07-25 02:34:10 +00:00
|
|
|
public function reinstall($data = null)
|
2017-07-23 19:51:18 +00:00
|
|
|
{
|
2017-08-26 23:08:11 +00:00
|
|
|
Assert::nullOrIsArray($data, 'First argument passed to reinstall must be null or an array, received %s.');
|
|
|
|
|
2017-07-25 02:34:10 +00:00
|
|
|
if (is_null($data)) {
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/reinstall');
|
2017-07-25 02:34:10 +00:00
|
|
|
}
|
|
|
|
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/reinstall', [
|
2017-07-25 02:34:10 +00:00
|
|
|
'json' => $data,
|
|
|
|
]);
|
2017-07-23 19:51:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function rebuild()
|
|
|
|
{
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/rebuild');
|
2017-07-23 19:51:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function suspend()
|
|
|
|
{
|
2017-10-01 02:00:24 +00:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/suspend');
|
2017-07-23 19:51:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function unsuspend()
|
|
|
|
{
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function delete()
|
|
|
|
{
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function details()
|
|
|
|
{
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function revokeAccessKey($key)
|
|
|
|
{
|
|
|
|
Assert::stringNotEmpty($key, 'First argument passed to revokeAccessKey must be a non-empty string, received %s.');
|
|
|
|
|
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
|
|
|
}
|