2017-08-09 06:24:55 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Contracts\Repository;
|
|
|
|
|
2017-10-07 06:57:53 +02:00
|
|
|
use Pterodactyl\Models\Egg;
|
2017-10-06 06:09:43 +02:00
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2017-10-04 03:18:27 +02:00
|
|
|
|
2017-10-07 06:57:53 +02:00
|
|
|
interface EggRepositoryInterface extends RepositoryInterface
|
2017-08-09 06:24:55 +02:00
|
|
|
{
|
2017-08-12 22:29:01 +02:00
|
|
|
/**
|
2017-10-07 06:57:53 +02:00
|
|
|
* Return an egg with the variables relation attached.
|
2017-08-12 22:29:01 +02:00
|
|
|
*
|
2017-10-04 03:18:27 +02:00
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
2017-08-12 22:29:01 +02:00
|
|
|
*/
|
2017-10-07 06:57:53 +02:00
|
|
|
public function getWithVariables(int $id): Egg;
|
2017-08-12 22:29:01 +02:00
|
|
|
|
2017-10-06 06:09:43 +02:00
|
|
|
/**
|
2017-10-07 06:57:53 +02:00
|
|
|
* Return all eggs and their relations to be used in the daemon API.
|
2017-10-06 06:09:43 +02:00
|
|
|
*/
|
|
|
|
public function getAllWithCopyAttributes(): Collection;
|
|
|
|
|
2017-08-12 22:29:01 +02:00
|
|
|
/**
|
2017-10-07 06:57:53 +02:00
|
|
|
* Return an egg with the scriptFrom and configFrom relations loaded onto the model.
|
2017-08-12 22:29:01 +02:00
|
|
|
*/
|
2022-10-14 18:59:20 +02:00
|
|
|
public function getWithCopyAttributes(int|string $value, string $column = 'id'): Egg;
|
2017-08-12 22:29:01 +02:00
|
|
|
|
2017-10-04 06:31:04 +02:00
|
|
|
/**
|
2022-10-14 18:59:20 +02:00
|
|
|
* Return all the data needed to export a service.
|
2017-10-04 06:31:04 +02:00
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
2017-10-07 06:57:53 +02:00
|
|
|
public function getWithExportAttributes(int $id): Egg;
|
2017-10-04 06:31:04 +02:00
|
|
|
|
2017-08-12 22:29:01 +02:00
|
|
|
/**
|
2017-10-07 06:57:53 +02:00
|
|
|
* Confirm a copy script belongs to the same nest as the item trying to use it.
|
2017-08-12 22:29:01 +02:00
|
|
|
*/
|
2018-05-13 16:50:56 +02:00
|
|
|
public function isCopyableScript(int $copyFromId, int $service): bool;
|
2017-08-09 06:24:55 +02:00
|
|
|
}
|