2017-07-19 20:49:41 -05:00
|
|
|
<?php
|
2017-09-25 21:43:01 -05:00
|
|
|
/**
|
2017-07-19 20:49:41 -05:00
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-25 21:43:01 -05:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-07-19 20:49:41 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories\Daemon;
|
|
|
|
|
2017-08-27 14:55:25 -05:00
|
|
|
use Webmozart\Assert\Assert;
|
2017-10-05 23:09:43 -05:00
|
|
|
use Psr\Http\Message\ResponseInterface;
|
2017-07-19 20:49:41 -05:00
|
|
|
use Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface;
|
|
|
|
|
|
|
|
class ServerRepository extends BaseRepository implements ServerRepositoryInterface
|
|
|
|
{
|
|
|
|
/**
|
2017-10-05 23:09:43 -05: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-19 20:49:41 -05:00
|
|
|
*/
|
2017-10-05 23:09:43 -05:00
|
|
|
public function create(array $structure, array $overrides = []): ResponseInterface
|
2017-07-19 20:49:41 -05:00
|
|
|
{
|
|
|
|
// Loop through overrides.
|
|
|
|
foreach ($overrides as $key => $value) {
|
2017-10-05 23:09:43 -05:00
|
|
|
array_set($structure, $key, $value);
|
2017-07-19 20:49:41 -05:00
|
|
|
}
|
|
|
|
|
2017-09-30 21:00:24 -05:00
|
|
|
return $this->getHttpClient()->request('POST', 'servers', [
|
2017-10-05 23:09:43 -05:00
|
|
|
'json' => $structure,
|
2017-07-21 21:17:42 -05:00
|
|
|
]);
|
2017-07-19 20:49:41 -05:00
|
|
|
}
|
2017-07-22 20:15:01 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function update(array $data)
|
|
|
|
{
|
2017-09-30 21:00:24 -05:00
|
|
|
return $this->getHttpClient()->request('PATCH', 'server', [
|
2017-07-22 20:15:01 -05:00
|
|
|
'json' => $data,
|
|
|
|
]);
|
|
|
|
}
|
2017-07-23 14:51:18 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2017-07-24 21:34:10 -05:00
|
|
|
public function reinstall($data = null)
|
2017-07-23 14:51:18 -05:00
|
|
|
{
|
2017-08-26 18:08:11 -05:00
|
|
|
Assert::nullOrIsArray($data, 'First argument passed to reinstall must be null or an array, received %s.');
|
|
|
|
|
2017-07-24 21:34:10 -05:00
|
|
|
if (is_null($data)) {
|
2017-09-30 21:00:24 -05:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/reinstall');
|
2017-07-24 21:34:10 -05:00
|
|
|
}
|
|
|
|
|
2017-09-30 21:00:24 -05:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/reinstall', [
|
2017-07-24 21:34:10 -05:00
|
|
|
'json' => $data,
|
|
|
|
]);
|
2017-07-23 14:51:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function rebuild()
|
|
|
|
{
|
2017-09-30 21:00:24 -05:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/rebuild');
|
2017-07-23 14:51:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function suspend()
|
|
|
|
{
|
2017-09-30 21:00:24 -05:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/suspend');
|
2017-07-23 14:51:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function unsuspend()
|
|
|
|
{
|
2017-09-30 21:00:24 -05:00
|
|
|
return $this->getHttpClient()->request('POST', 'server/unsuspend');
|
2017-07-23 14:51:18 -05:00
|
|
|
}
|
2017-07-24 21:34:10 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function delete()
|
|
|
|
{
|
2017-09-30 21:00:24 -05:00
|
|
|
return $this->getHttpClient()->request('DELETE', 'servers');
|
2017-07-24 21:34:10 -05:00
|
|
|
}
|
2017-08-30 21:11:14 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function details()
|
|
|
|
{
|
2017-09-30 21:00:24 -05:00
|
|
|
return $this->getHttpClient()->request('GET', 'server');
|
2017-08-30 21:11:14 -05:00
|
|
|
}
|
2017-09-24 21:12:30 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function revokeAccessKey($key)
|
|
|
|
{
|
|
|
|
Assert::stringNotEmpty($key, 'First argument passed to revokeAccessKey must be a non-empty string, received %s.');
|
|
|
|
|
2017-09-30 21:00:24 -05:00
|
|
|
return $this->getHttpClient()->request('DELETE', 'keys/' . $key);
|
2017-09-24 21:12:30 -05:00
|
|
|
}
|
2017-07-19 20:49:41 -05:00
|
|
|
}
|