2017-08-09 04:24:55 +00:00
|
|
|
<?php
|
2017-09-26 02:43:01 +00:00
|
|
|
/**
|
2017-08-09 04:24:55 +00:00
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-08-09 04:24:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories\Eloquent;
|
|
|
|
|
2017-10-07 04:57:53 +00:00
|
|
|
use Pterodactyl\Models\Egg;
|
2017-10-06 04:09:43 +00:00
|
|
|
use Webmozart\Assert\Assert;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2017-10-07 04:57:53 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\EggRepositoryInterface;
|
2017-10-04 01:18:27 +00:00
|
|
|
use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
|
2017-08-09 04:24:55 +00:00
|
|
|
|
2017-10-07 04:57:53 +00:00
|
|
|
class EggRepository extends EloquentRepository implements EggRepositoryInterface
|
2017-08-09 04:24:55 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function model()
|
|
|
|
{
|
2017-10-07 04:57:53 +00:00
|
|
|
return Egg::class;
|
2017-08-09 04:24:55 +00:00
|
|
|
}
|
2017-08-12 20:29:01 +00:00
|
|
|
|
|
|
|
/**
|
2017-10-07 04:57:53 +00:00
|
|
|
* Return an egg with the variables relation attached.
|
2017-10-04 01:18:27 +00:00
|
|
|
*
|
|
|
|
* @param int $id
|
2017-10-07 04:57:53 +00:00
|
|
|
* @return \Pterodactyl\Models\Egg
|
2017-10-04 01:18:27 +00:00
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
2017-08-12 20:29:01 +00:00
|
|
|
*/
|
2017-10-07 04:57:53 +00:00
|
|
|
public function getWithVariables(int $id): Egg
|
2017-08-12 20:29:01 +00:00
|
|
|
{
|
2017-10-07 04:57:53 +00:00
|
|
|
/** @var \Pterodactyl\Models\Egg $instance */
|
2017-10-04 01:18:27 +00:00
|
|
|
$instance = $this->getBuilder()->with('variables')->find($id, $this->getColumns());
|
|
|
|
if (! $instance) {
|
|
|
|
throw new RecordNotFoundException;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $instance;
|
2017-08-12 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2017-10-06 04:09:43 +00:00
|
|
|
/**
|
2017-10-07 04:57:53 +00:00
|
|
|
* Return all eggs and their relations to be used in the daemon API.
|
2017-10-06 04:09:43 +00:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Collection
|
|
|
|
*/
|
|
|
|
public function getAllWithCopyAttributes(): Collection
|
|
|
|
{
|
|
|
|
return $this->getBuilder()->with('scriptFrom', 'configFrom')->get($this->getColumns());
|
|
|
|
}
|
|
|
|
|
2017-08-12 20:29:01 +00:00
|
|
|
/**
|
2017-10-07 04:57:53 +00:00
|
|
|
* Return an egg with the scriptFrom and configFrom relations loaded onto the model.
|
2017-10-04 01:18:27 +00:00
|
|
|
*
|
2017-10-06 04:09:43 +00:00
|
|
|
* @param int|string $value
|
|
|
|
* @param string $column
|
2017-10-07 04:57:53 +00:00
|
|
|
* @return \Pterodactyl\Models\Egg
|
2017-10-04 01:18:27 +00:00
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
2017-08-12 20:29:01 +00:00
|
|
|
*/
|
2017-10-07 04:57:53 +00:00
|
|
|
public function getWithCopyAttributes($value, string $column = 'id'): Egg
|
2017-08-12 20:29:01 +00:00
|
|
|
{
|
2017-10-06 04:09:43 +00:00
|
|
|
Assert::true((is_digit($value) || is_string($value)), 'First argument passed to getWithCopyAttributes must be an integer or string, received %s.');
|
|
|
|
|
2017-10-07 04:57:53 +00:00
|
|
|
/** @var \Pterodactyl\Models\Egg $instance */
|
2017-10-06 04:09:43 +00:00
|
|
|
$instance = $this->getBuilder()->with('scriptFrom', 'configFrom')->where($column, '=', $value)->first($this->getColumns());
|
2017-10-04 01:18:27 +00:00
|
|
|
if (! $instance) {
|
|
|
|
throw new RecordNotFoundException;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $instance;
|
2017-08-12 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2017-10-04 04:31:04 +00:00
|
|
|
/**
|
|
|
|
* Return all of the data needed to export a service.
|
|
|
|
*
|
|
|
|
* @param int $id
|
2017-10-07 04:57:53 +00:00
|
|
|
* @return \Pterodactyl\Models\Egg
|
2017-10-04 04:31:04 +00:00
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
2017-10-07 04:57:53 +00:00
|
|
|
public function getWithExportAttributes(int $id): Egg
|
2017-10-04 04:31:04 +00:00
|
|
|
{
|
2017-10-07 04:57:53 +00:00
|
|
|
/** @var \Pterodactyl\Models\Egg $instance */
|
2017-10-04 04:31:04 +00:00
|
|
|
$instance = $this->getBuilder()->with('scriptFrom', 'configFrom', 'variables')->find($id, $this->getColumns());
|
|
|
|
if (! $instance) {
|
|
|
|
throw new RecordNotFoundException;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $instance;
|
|
|
|
}
|
|
|
|
|
2017-08-12 20:29:01 +00:00
|
|
|
/**
|
2017-10-07 04:57:53 +00:00
|
|
|
* Confirm a copy script belongs to the same nest as the item trying to use it.
|
2017-10-04 01:18:27 +00:00
|
|
|
*
|
|
|
|
* @param int $copyFromId
|
|
|
|
* @param int $service
|
|
|
|
* @return bool
|
2017-08-12 20:29:01 +00:00
|
|
|
*/
|
2017-10-04 01:18:27 +00:00
|
|
|
public function isCopiableScript(int $copyFromId, int $service): bool
|
2017-08-12 20:29:01 +00:00
|
|
|
{
|
|
|
|
return $this->getBuilder()->whereNull('copy_script_from')
|
|
|
|
->where('id', '=', $copyFromId)
|
2017-10-07 04:57:53 +00:00
|
|
|
->where('nest_id', '=', $service)
|
2017-08-12 20:29:01 +00:00
|
|
|
->exists();
|
|
|
|
}
|
2017-08-09 04:24:55 +00:00
|
|
|
}
|