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\Contracts\Repository;
|
|
|
|
|
|
|
|
use Pterodactyl\Contracts\Repository\Attributes\SearchableInterface;
|
|
|
|
|
|
|
|
interface NodeRepositoryInterface extends RepositoryInterface, SearchableInterface
|
|
|
|
{
|
2017-08-05 22:20:07 +00:00
|
|
|
/**
|
|
|
|
* Return the usage stats for a single node.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param int $id
|
2017-08-05 22:20:07 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getUsageStats($id);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return all available nodes with a searchable interface.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param int $count
|
2017-08-05 22:20:07 +00:00
|
|
|
* @return \Illuminate\Contracts\Pagination\LengthAwarePaginator
|
|
|
|
*/
|
|
|
|
public function getNodeListingData($count = 25);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a single node with location and server information.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param int $id
|
2017-08-05 22:20:07 +00:00
|
|
|
* @return mixed
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
|
|
|
public function getSingleNode($id);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a node with all of the associated allocations and servers that are attached to said allocations.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param int $id
|
2017-08-05 22:20:07 +00:00
|
|
|
* @return mixed
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
|
|
|
public function getNodeAllocations($id);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a node with all of the servers attached to that node.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param int $id
|
2017-08-05 22:20:07 +00:00
|
|
|
* @return mixed
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
|
|
|
public function getNodeServers($id);
|
|
|
|
|
2017-07-22 02:17:42 +00:00
|
|
|
/**
|
|
|
|
* Return a collection of nodes beloning to a specific location for use on frontend display.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param int $location
|
2017-07-22 02:17:42 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getNodesForLocation($location);
|
2017-07-20 01:49:41 +00:00
|
|
|
}
|