misc_pterodactyl-panel/app/Services/Eggs/Variables/VariableCreationService.php

61 lines
1.9 KiB
PHP
Raw Normal View History

<?php
2017-09-26 02:43:01 +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
*/
namespace Pterodactyl\Services\Eggs\Variables;
use Pterodactyl\Models\EggVariable;
use Pterodactyl\Contracts\Repository\EggVariableRepositoryInterface;
use Pterodactyl\Exceptions\Service\Egg\Variable\ReservedVariableNameException;
class VariableCreationService
{
/**
* @var \Pterodactyl\Contracts\Repository\EggVariableRepositoryInterface
*/
2017-10-08 04:29:08 +00:00
protected $repository;
/**
* VariableCreationService constructor.
*
2017-10-08 04:29:08 +00:00
* @param \Pterodactyl\Contracts\Repository\EggVariableRepositoryInterface $repository
*/
2017-10-08 04:29:08 +00:00
public function __construct(EggVariableRepositoryInterface $repository)
{
$this->repository = $repository;
}
/**
* Create a new variable for a given Egg.
*
* @param int $egg
* @param array $data
* @return \Pterodactyl\Models\EggVariable
*
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
* @throws \Pterodactyl\Exceptions\Service\Egg\Variable\ReservedVariableNameException
*/
public function handle(int $egg, array $data): EggVariable
{
if (in_array(strtoupper(array_get($data, 'env_variable')), explode(',', EggVariable::RESERVED_ENV_NAMES))) {
2017-08-13 19:55:09 +00:00
throw new ReservedVariableNameException(sprintf(
2017-08-22 03:10:48 +00:00
'Cannot use the protected name %s for this environment variable.',
array_get($data, 'env_variable')
2017-08-13 19:55:09 +00:00
));
}
$options = array_get($data, 'options', []);
2017-10-08 04:29:08 +00:00
return $this->repository->create(array_merge($data, [
'egg_id' => $egg,
'user_viewable' => in_array('user_viewable', $options),
'user_editable' => in_array('user_editable', $options),
2017-10-08 04:29:08 +00:00
]));
}
}