mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 06:24:44 +02:00
31 lines
916 B
PHP
31 lines
916 B
PHP
<?php
|
|
|
|
namespace App\Services\Eggs;
|
|
|
|
use Ramsey\Uuid\Uuid;
|
|
use App\Models\Egg;
|
|
use App\Exceptions\Service\Egg\NoParentConfigurationFoundException;
|
|
|
|
class EggCreationService
|
|
{
|
|
/**
|
|
* Create a new egg.
|
|
*
|
|
* @throws \App\Exceptions\Model\DataValidationException
|
|
* @throws \App\Exceptions\Service\Egg\NoParentConfigurationFoundException
|
|
*/
|
|
public function handle(array $data): Egg
|
|
{
|
|
$data['config_from'] = array_get($data, 'config_from');
|
|
if (!is_null($data['config_from'])) {
|
|
$parentEgg = Egg::query()->find(array_get($data, 'config_from'));
|
|
throw_unless($parentEgg, new NoParentConfigurationFoundException(trans('exceptions.egg.invalid_copy_id')));
|
|
}
|
|
|
|
return Egg::query()->create(array_merge($data, [
|
|
'uuid' => Uuid::uuid4()->toString(),
|
|
'author' => config('panel.service.author'),
|
|
]));
|
|
}
|
|
}
|