2022-09-16 04:58:22 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* DynamicInputOption.php
|
|
|
|
*
|
|
|
|
* -Description-
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @link https://www.librenms.org
|
|
|
|
*
|
|
|
|
* @copyright 2022 Tony Murray
|
|
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Console;
|
|
|
|
|
|
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
|
|
|
|
|
|
class DynamicInputOption extends InputOption
|
|
|
|
{
|
|
|
|
/** @var callable|null */
|
2022-09-19 16:03:55 +02:00
|
|
|
private $descriptionCallable;
|
|
|
|
/** @var callable|null */
|
|
|
|
private $defaultCallable;
|
2022-09-16 04:58:22 -05:00
|
|
|
|
2022-09-19 16:03:55 +02:00
|
|
|
public function __construct(string $name, $shortcut = null, int $mode = null, string $description = '', $default = null, ?callable $defaultCallable = null, ?callable $descriptionCallable = null)
|
2022-09-16 04:58:22 -05:00
|
|
|
{
|
2022-09-19 16:03:55 +02:00
|
|
|
$this->descriptionCallable = $descriptionCallable;
|
|
|
|
$this->defaultCallable = $defaultCallable;
|
2022-09-16 04:58:22 -05:00
|
|
|
|
|
|
|
parent::__construct($name, $shortcut, $mode, $description, $default);
|
|
|
|
}
|
|
|
|
|
2023-04-17 13:51:35 +02:00
|
|
|
public function getDescription(): string
|
2022-09-16 04:58:22 -05:00
|
|
|
{
|
|
|
|
$description = parent::getDescription();
|
|
|
|
|
2022-09-19 16:03:55 +02:00
|
|
|
if (is_callable($this->descriptionCallable)) {
|
|
|
|
$description .= ' [' . implode(', ', call_user_func($this->descriptionCallable)) . ']';
|
2022-09-16 04:58:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return $description;
|
|
|
|
}
|
2022-09-19 16:03:55 +02:00
|
|
|
|
2023-04-17 13:51:35 +02:00
|
|
|
public function getDefault(): array|string|int|float|bool|null
|
2022-09-19 16:03:55 +02:00
|
|
|
{
|
|
|
|
if (is_callable($this->defaultCallable)) {
|
|
|
|
return call_user_func($this->defaultCallable);
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getDefault();
|
|
|
|
}
|
2022-09-16 04:58:22 -05:00
|
|
|
}
|