2017-07-03 02:29:58 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Contracts\Repository;
|
|
|
|
|
2018-01-05 04:49:50 +00:00
|
|
|
use Pterodactyl\Models\User;
|
2017-10-26 03:33:28 +00:00
|
|
|
use Pterodactyl\Models\Server;
|
2018-01-05 04:49:50 +00:00
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
|
2017-07-15 16:52:34 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\Attributes\SearchableInterface;
|
|
|
|
|
|
|
|
interface ServerRepositoryInterface extends RepositoryInterface, SearchableInterface
|
2017-07-03 02:29:58 +00:00
|
|
|
{
|
2017-07-08 19:07:51 +00:00
|
|
|
/**
|
2017-07-15 16:52:34 +00:00
|
|
|
* Returns a listing of all servers that exist including relationships.
|
2017-07-08 19:07:51 +00:00
|
|
|
*
|
2018-01-05 04:49:50 +00:00
|
|
|
* @param int $paginate
|
|
|
|
* @return \Illuminate\Contracts\Pagination\LengthAwarePaginator
|
2017-07-08 19:07:51 +00:00
|
|
|
*/
|
2018-01-05 04:49:50 +00:00
|
|
|
public function getAllServers(int $paginate): LengthAwarePaginator;
|
2017-09-20 03:10:14 +00:00
|
|
|
|
2017-11-05 21:36:37 +00:00
|
|
|
/**
|
|
|
|
* Load the egg relations onto the server model.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Models\Server $server
|
|
|
|
* @param bool $refresh
|
|
|
|
* @return \Pterodactyl\Models\Server
|
|
|
|
*/
|
|
|
|
public function loadEggRelations(Server $server, bool $refresh = false): Server;
|
|
|
|
|
2017-07-20 01:49:41 +00:00
|
|
|
/**
|
2018-01-05 04:49:50 +00:00
|
|
|
* Return a collection of servers with their associated data for rebuild operations.
|
2017-07-22 02:17:42 +00:00
|
|
|
*
|
2018-01-05 04:49:50 +00:00
|
|
|
* @param int|null $server
|
|
|
|
* @param int|null $node
|
|
|
|
* @return \Illuminate\Support\Collection
|
2017-07-20 01:49:41 +00:00
|
|
|
*/
|
2018-01-05 04:49:50 +00:00
|
|
|
public function getDataForRebuild(int $server = null, int $node = null): Collection;
|
2017-07-20 01:49:41 +00:00
|
|
|
|
|
|
|
/**
|
2018-01-05 04:49:50 +00:00
|
|
|
* Return a server model and all variables associated with the server.
|
2017-07-20 01:49:41 +00:00
|
|
|
*
|
2018-01-05 04:49:50 +00:00
|
|
|
* @param int $id
|
|
|
|
* @return \Pterodactyl\Models\Server
|
2017-07-22 02:17:42 +00:00
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
2018-01-05 04:49:50 +00:00
|
|
|
public function findWithVariables(int $id): Server;
|
2017-07-22 02:17:42 +00:00
|
|
|
|
2017-10-26 03:33:28 +00:00
|
|
|
/**
|
|
|
|
* Get the primary allocation for a given server. If a model is passed into
|
|
|
|
* the function, load the allocation relationship onto it. Otherwise, find and
|
|
|
|
* return the server from the database.
|
|
|
|
*
|
2018-01-05 04:49:50 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
|
|
|
* @param bool $refresh
|
2017-10-26 03:33:28 +00:00
|
|
|
* @return \Pterodactyl\Models\Server
|
2018-01-05 04:49:50 +00:00
|
|
|
*/
|
|
|
|
public function getPrimaryAllocation(Server $server, bool $refresh = false): Server;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return all of the server variables possible and default to the variable
|
|
|
|
* default if there is no value defined for the specific server requested.
|
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @param bool $returnAsObject
|
|
|
|
* @return array|object
|
2017-10-26 03:33:28 +00:00
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
2018-01-05 04:49:50 +00:00
|
|
|
public function getVariablesWithValues(int $id, bool $returnAsObject = false);
|
2017-10-26 03:33:28 +00:00
|
|
|
|
2017-07-22 02:17:42 +00:00
|
|
|
/**
|
|
|
|
* Return enough data to be used for the creation of a server via the daemon.
|
|
|
|
*
|
2017-10-27 04:49:54 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
|
|
|
* @param bool $refresh
|
|
|
|
* @return \Pterodactyl\Models\Server
|
2017-07-22 02:17:42 +00:00
|
|
|
*/
|
2017-10-27 04:49:54 +00:00
|
|
|
public function getDataForCreation(Server $server, bool $refresh = false): Server;
|
2017-07-22 02:17:42 +00:00
|
|
|
|
|
|
|
/**
|
2018-01-05 04:49:50 +00:00
|
|
|
* Load associated databases onto the server model.
|
2017-07-22 02:17:42 +00:00
|
|
|
*
|
2018-01-05 04:49:50 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
|
|
|
* @param bool $refresh
|
|
|
|
* @return \Pterodactyl\Models\Server
|
2017-07-20 01:49:41 +00:00
|
|
|
*/
|
2018-01-05 04:49:50 +00:00
|
|
|
public function loadDatabaseRelations(Server $server, bool $refresh = false): Server;
|
2017-07-25 02:34:10 +00:00
|
|
|
|
|
|
|
/**
|
2017-11-11 21:07:01 +00:00
|
|
|
* Get data for use when updating a server on the Daemon. Returns an array of
|
|
|
|
* the egg and pack UUID which are used for build and rebuild. Only loads relations
|
|
|
|
* if they are missing, or refresh is set to true.
|
2017-07-25 02:34:10 +00:00
|
|
|
*
|
2017-11-11 21:07:01 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
|
|
|
* @param bool $refresh
|
2017-07-25 02:34:10 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2017-11-11 21:07:01 +00:00
|
|
|
public function getDaemonServiceData(Server $server, bool $refresh = false): array;
|
2017-08-31 02:11:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a paginated list of servers that a user can access at a given level.
|
|
|
|
*
|
2018-01-05 04:49:50 +00:00
|
|
|
* @param \Pterodactyl\Models\User $user
|
|
|
|
* @param int $level
|
2017-08-31 02:11:14 +00:00
|
|
|
* @return \Illuminate\Pagination\LengthAwarePaginator
|
|
|
|
*/
|
2018-01-05 04:49:50 +00:00
|
|
|
public function filterUserAccessServers(User $user, int $level): LengthAwarePaginator;
|
2017-08-31 02:11:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a server by UUID.
|
|
|
|
*
|
|
|
|
* @param string $uuid
|
2017-11-05 18:38:39 +00:00
|
|
|
* @return \Pterodactyl\Models\Server
|
2017-08-31 02:11:14 +00:00
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
2018-01-05 04:49:50 +00:00
|
|
|
public function getByUuid(string $uuid): Server;
|
2017-07-03 02:29:58 +00:00
|
|
|
}
|