misc_pterodactyl-panel/app/Repositories/Eloquent/NestRepository.php

78 lines
2.2 KiB
PHP
Raw Normal View History

<?php
2017-07-15 16:52:34 +00:00
namespace Pterodactyl\Repositories\Eloquent;
use Pterodactyl\Models\Nest;
use Illuminate\Database\Eloquent\Collection;
use Pterodactyl\Contracts\Repository\NestRepositoryInterface;
2017-08-05 22:26:30 +00:00
use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
2017-07-15 16:52:34 +00:00
class NestRepository extends EloquentRepository implements NestRepositoryInterface
{
/**
* Return the model backing this repository.
2017-07-15 16:52:34 +00:00
*/
public function model(): string
2017-07-15 16:52:34 +00:00
{
return Nest::class;
2017-07-15 16:52:34 +00:00
}
/**
* Return a nest or all nests with their associated eggs and variables.
2017-10-04 04:31:04 +00:00
*
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function getWithEggs(int $id = null): Collection|Nest
2017-07-15 16:52:34 +00:00
{
$instance = $this->getBuilder()->with('eggs', 'eggs.variables');
2017-07-15 16:52:34 +00:00
2021-01-23 20:33:34 +00:00
if (!is_null($id)) {
2017-07-15 16:52:34 +00:00
$instance = $instance->find($id, $this->getColumns());
2021-01-23 20:33:34 +00:00
if (!$instance) {
throw new RecordNotFoundException();
2017-07-15 16:52:34 +00:00
}
return $instance;
}
return $instance->get($this->getColumns());
}
/**
* Return a nest or all nests and the count of eggs and servers for that nest.
2017-10-04 04:31:04 +00:00
*
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function getWithCounts(int $id = null): Collection|Nest
{
$instance = $this->getBuilder()->withCount(['eggs', 'servers']);
2017-10-03 03:51:13 +00:00
2021-01-23 20:33:34 +00:00
if (!is_null($id)) {
2017-10-03 03:51:13 +00:00
$instance = $instance->find($id, $this->getColumns());
2021-01-23 20:33:34 +00:00
if (!$instance) {
throw new RecordNotFoundException();
2017-10-03 03:51:13 +00:00
}
return $instance;
}
return $instance->get($this->getColumns());
}
2017-10-03 03:51:13 +00:00
/**
* Return a nest along with its associated eggs and the servers relation on those eggs.
2017-10-04 04:31:04 +00:00
*
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
2017-10-03 03:51:13 +00:00
*/
public function getWithEggServers(int $id): Nest
2017-10-03 03:51:13 +00:00
{
$instance = $this->getBuilder()->with('eggs.servers')->find($id, $this->getColumns());
2021-01-23 20:33:34 +00:00
if (!$instance) {
throw new RecordNotFoundException();
}
/* @var Nest $instance */
return $instance;
}
}