mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Contracts\Repository;
|
|
|
|
use Pterodactyl\Models\Egg;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
interface EggRepositoryInterface extends RepositoryInterface
|
|
{
|
|
/**
|
|
* Return an egg with the variables relation attached.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function getWithVariables(int $id): Egg;
|
|
|
|
/**
|
|
* Return all eggs and their relations to be used in the daemon API.
|
|
*/
|
|
public function getAllWithCopyAttributes(): Collection;
|
|
|
|
/**
|
|
* Return an egg with the scriptFrom and configFrom relations loaded onto the model.
|
|
*/
|
|
public function getWithCopyAttributes(int|string $value, string $column = 'id'): Egg;
|
|
|
|
/**
|
|
* Return all the data needed to export a service.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function getWithExportAttributes(int $id): Egg;
|
|
|
|
/**
|
|
* Confirm a copy script belongs to the same nest as the item trying to use it.
|
|
*/
|
|
public function isCopyableScript(int $copyFromId, int $service): bool;
|
|
}
|