2017-07-20 03:49:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories\Eloquent;
|
|
|
|
|
2017-10-26 05:33:28 +02:00
|
|
|
use Illuminate\Support\Collection;
|
2017-10-07 06:57:53 +02:00
|
|
|
use Pterodactyl\Models\EggVariable;
|
|
|
|
use Pterodactyl\Contracts\Repository\EggVariableRepositoryInterface;
|
2017-07-20 03:49:41 +02:00
|
|
|
|
2017-10-07 06:57:53 +02:00
|
|
|
class EggVariableRepository extends EloquentRepository implements EggVariableRepositoryInterface
|
2017-07-20 03:49:41 +02:00
|
|
|
{
|
|
|
|
/**
|
2018-01-05 05:49:50 +01:00
|
|
|
* Return the model backing this repository.
|
|
|
|
*
|
|
|
|
* @return string
|
2017-07-20 03:49:41 +02:00
|
|
|
*/
|
|
|
|
public function model()
|
|
|
|
{
|
2017-10-07 06:57:53 +02:00
|
|
|
return EggVariable::class;
|
2017-07-20 03:49:41 +02:00
|
|
|
}
|
2017-10-26 05:33:28 +02: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.
|
|
|
|
*
|
|
|
|
* @param int $egg
|
|
|
|
* @return \Illuminate\Support\Collection
|
|
|
|
*/
|
|
|
|
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 03:49:41 +02:00
|
|
|
}
|