35 lines
890 B
PHP
35 lines
890 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Services\Nests;
|
|
|
|
use Ramsey\Uuid\Uuid;
|
|
use Pterodactyl\Models\Nest;
|
|
use Illuminate\Contracts\Config\Repository as ConfigRepository;
|
|
|
|
class NestCreationService
|
|
{
|
|
/**
|
|
* NestCreationService constructor.
|
|
*/
|
|
public function __construct(private ConfigRepository $config)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Create a new nest on the system.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
*/
|
|
public function handle(array $data, string $author = null): Nest
|
|
{
|
|
/** @var Nest $nest */
|
|
$nest = Nest::query()->create([
|
|
'uuid' => Uuid::uuid4()->toString(),
|
|
'author' => $author ?? $this->config->get('pterodactyl.service.author'),
|
|
'name' => array_get($data, 'name'),
|
|
'description' => array_get($data, 'description'),
|
|
]);
|
|
|
|
return $nest;
|
|
}
|
|
}
|