2017-07-20 01:49:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories\Eloquent;
|
|
|
|
|
2017-10-26 03:33:28 +00:00
|
|
|
use Illuminate\Support\Collection;
|
2017-10-07 04:57:53 +00:00
|
|
|
use Pterodactyl\Models\EggVariable;
|
|
|
|
use Pterodactyl\Contracts\Repository\EggVariableRepositoryInterface;
|
2017-07-20 01:49:41 +00:00
|
|
|
|
2017-10-07 04:57:53 +00:00
|
|
|
class EggVariableRepository extends EloquentRepository implements EggVariableRepositoryInterface
|
2017-07-20 01:49:41 +00:00
|
|
|
{
|
|
|
|
/**
|
2018-01-05 04:49:50 +00:00
|
|
|
* Return the model backing this repository.
|
2017-07-20 01:49:41 +00:00
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function model(): string
|
2017-07-20 01:49:41 +00:00
|
|
|
{
|
2017-10-07 04:57:53 +00:00
|
|
|
return EggVariable::class;
|
2017-07-20 01:49:41 +00:00
|
|
|
}
|
2017-10-26 03:33:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return editable variables for a given egg. Editable variables must be set to
|
|
|
|
* user viewable in order to be picked up by this function.
|
|
|
|
*/
|
|
|
|
public function getEditableVariables(int $egg): Collection
|
|
|
|
{
|
|
|
|
return $this->getBuilder()->where([
|
|
|
|
['egg_id', '=', $egg],
|
|
|
|
['user_viewable', '=', 1],
|
|
|
|
['user_editable', '=', 1],
|
|
|
|
])->get($this->getColumns());
|
|
|
|
}
|
2017-07-20 01:49:41 +00:00
|
|
|
}
|