PteroTheme/app/Contracts/Repository/ServiceOptionRepositoryInte...

55 lines
1.5 KiB
PHP
Raw Normal View History

<?php
2017-09-26 03:43:01 +01:00
/**
* Pterodactyl - Panel
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
*
2017-09-26 03:43:01 +01:00
* This software is licensed under the terms of the MIT license.
* https://opensource.org/licenses/MIT
*/
namespace Pterodactyl\Contracts\Repository;
use Pterodactyl\Models\ServiceOption;
interface ServiceOptionRepositoryInterface extends RepositoryInterface
{
/**
* Return a service option with the variables relation attached.
*
2017-08-22 04:10:48 +01:00
* @param int $id
* @return \Pterodactyl\Models\ServiceOption
*
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function getWithVariables(int $id): ServiceOption;
/**
* Return a service option with the scriptFrom and configFrom relations loaded onto the model.
*
2017-08-22 04:10:48 +01:00
* @param int $id
* @return \Pterodactyl\Models\ServiceOption
*
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function getWithCopyAttributes(int $id): ServiceOption;
2017-10-04 05:31:04 +01:00
/**
* Return all of the data needed to export a service.
*
* @param int $id
* @return \Pterodactyl\Models\ServiceOption
*
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function getWithExportAttributes(int $id): ServiceOption;
/**
* Confirm a copy script belongs to the same service as the item trying to use it.
*
2017-08-22 04:10:48 +01:00
* @param int $copyFromId
* @param int $service
* @return bool
*/
public function isCopiableScript(int $copyFromId, int $service): bool;
}