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\Contracts\Repository\Daemon;
|
|
|
|
|
2017-10-05 23:09:43 -05:00
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
|
2017-07-19 20:49:41 -05:00
|
|
|
interface ServerRepositoryInterface extends BaseRepositoryInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Create a new server on the daemon for the panel.
|
|
|
|
*
|
2017-10-05 23:09:43 -05:00
|
|
|
* @param array $structure
|
2017-08-21 22:10:48 -05:00
|
|
|
* @param array $overrides
|
2017-07-21 21:17:42 -05:00
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
2017-10-05 23:09:43 -05:00
|
|
|
*
|
|
|
|
* @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-22 20:15:01 -05:00
|
|
|
|
2017-08-23 21:34:11 -05:00
|
|
|
/**
|
2017-07-22 20:15:01 -05:00
|
|
|
* Update server details on the daemon.
|
|
|
|
*
|
2017-08-21 22:10:48 -05:00
|
|
|
* @param array $data
|
2017-07-22 20:15:01 -05:00
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
|
|
|
public function update(array $data);
|
2017-07-23 14:51:18 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark a server to be reinstalled on the system.
|
|
|
|
*
|
2017-08-21 22:10:48 -05:00
|
|
|
* @param array|null $data
|
2017-07-23 14:51:18 -05:00
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
2017-07-24 21:34:10 -05:00
|
|
|
public function reinstall($data = null);
|
2017-07-23 14:51:18 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark a server as needing a container rebuild the next time the server is booted.
|
|
|
|
*
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
|
|
|
public function rebuild();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Suspend a server on the daemon.
|
|
|
|
*
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
|
|
|
public function suspend();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Un-suspend a server on the daemon.
|
|
|
|
*
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
|
|
|
public function unsuspend();
|
2017-07-24 21:34:10 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a server on the daemon.
|
|
|
|
*
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
|
|
|
public function delete();
|
2017-08-30 21:11:14 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return detials on a specific server.
|
|
|
|
*
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
|
|
|
public function details();
|
2017-09-24 21:12:30 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Revoke an access key on the daemon before the time is expired.
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
|
|
|
public function revokeAccessKey($key);
|
2017-07-19 20:49:41 -05:00
|
|
|
}
|