2017-08-09 04:24:55 +00:00
|
|
|
<?php
|
|
|
|
|
2017-10-07 21:16:51 +00:00
|
|
|
namespace Pterodactyl\Services\Eggs\Variables;
|
2017-08-09 04:24:55 +00:00
|
|
|
|
2017-10-07 04:57:53 +00:00
|
|
|
use Pterodactyl\Models\EggVariable;
|
2021-10-03 20:23:06 +00:00
|
|
|
use Illuminate\Contracts\Validation\Factory as Validator;
|
2018-03-17 20:09:09 +00:00
|
|
|
use Pterodactyl\Traits\Services\ValidatesValidationRules;
|
2017-10-07 21:16:51 +00:00
|
|
|
use Pterodactyl\Exceptions\Service\Egg\Variable\ReservedVariableNameException;
|
2017-08-09 04:24:55 +00:00
|
|
|
|
|
|
|
class VariableCreationService
|
|
|
|
{
|
2018-03-17 20:09:09 +00:00
|
|
|
use ValidatesValidationRules;
|
|
|
|
|
2021-10-03 20:23:06 +00:00
|
|
|
private Validator $validator;
|
2017-08-12 20:29:01 +00:00
|
|
|
|
2017-10-07 21:16:51 +00:00
|
|
|
/**
|
|
|
|
* VariableCreationService constructor.
|
|
|
|
*/
|
2021-10-03 20:23:06 +00:00
|
|
|
public function __construct(Validator $validator)
|
2017-10-08 04:29:08 +00:00
|
|
|
{
|
2018-03-17 20:09:09 +00:00
|
|
|
$this->validator = $validator;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the validation factory instance to be used by rule validation
|
|
|
|
* checking in the trait.
|
|
|
|
*/
|
2021-10-03 20:23:06 +00:00
|
|
|
protected function getValidator(): Validator
|
2018-03-17 20:09:09 +00:00
|
|
|
{
|
|
|
|
return $this->validator;
|
2017-08-09 04:24:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-10-07 21:16:51 +00:00
|
|
|
* Create a new variable for a given Egg.
|
2017-08-09 04:24:55 +00:00
|
|
|
*
|
2018-03-17 20:09:09 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Service\Egg\Variable\BadValidationRuleException
|
2017-10-07 21:16:51 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Service\Egg\Variable\ReservedVariableNameException
|
2017-08-09 04:24:55 +00:00
|
|
|
*/
|
2017-10-07 21:16:51 +00:00
|
|
|
public function handle(int $egg, array $data): EggVariable
|
2017-08-09 04:24:55 +00:00
|
|
|
{
|
2017-10-07 04:57:53 +00:00
|
|
|
if (in_array(strtoupper(array_get($data, 'env_variable')), explode(',', EggVariable::RESERVED_ENV_NAMES))) {
|
2021-01-23 20:33:34 +00:00
|
|
|
throw new ReservedVariableNameException(sprintf('Cannot use the protected name %s for this environment variable.', array_get($data, 'env_variable')));
|
2017-08-12 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2021-01-23 20:33:34 +00:00
|
|
|
if (!empty($data['rules'] ?? '')) {
|
2018-03-17 20:09:09 +00:00
|
|
|
$this->validateRules($data['rules']);
|
|
|
|
}
|
|
|
|
|
2017-12-31 01:56:42 +00:00
|
|
|
$options = array_get($data, 'options') ?? [];
|
2017-08-12 20:29:01 +00:00
|
|
|
|
2021-10-03 20:23:06 +00:00
|
|
|
/** @var \Pterodactyl\Models\EggVariable $model */
|
|
|
|
$model = EggVariable::query()->create([
|
2017-10-07 21:16:51 +00:00
|
|
|
'egg_id' => $egg,
|
2018-02-17 19:37:53 +00:00
|
|
|
'name' => $data['name'] ?? '',
|
|
|
|
'description' => $data['description'] ?? '',
|
|
|
|
'env_variable' => $data['env_variable'] ?? '',
|
|
|
|
'default_value' => $data['default_value'] ?? '',
|
2017-08-12 20:29:01 +00:00
|
|
|
'user_viewable' => in_array('user_viewable', $options),
|
|
|
|
'user_editable' => in_array('user_editable', $options),
|
2018-02-17 19:37:53 +00:00
|
|
|
'rules' => $data['rules'] ?? '',
|
|
|
|
]);
|
2021-10-30 20:41:38 +00:00
|
|
|
|
2021-10-03 20:23:06 +00:00
|
|
|
return $model;
|
2017-08-09 04:24:55 +00:00
|
|
|
}
|
|
|
|
}
|