1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* This file is part of byrokrat\giroapp. |
5
|
|
|
* |
6
|
|
|
* byrokrat\giroapp is free software: you can redistribute it and/or |
7
|
|
|
* modify it under the terms of the GNU General Public License as published |
8
|
|
|
* by the Free Software Foundation, either version 3 of the License, or |
9
|
|
|
* (at your option) any later version. |
10
|
|
|
* |
11
|
|
|
* byrokrat\giroapp is distributed in the hope that it will be useful, |
12
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14
|
|
|
* GNU General Public License for more details. |
15
|
|
|
* |
16
|
|
|
* You should have received a copy of the GNU General Public License |
17
|
|
|
* along with byrokrat\giroapp. If not, see <http://www.gnu.org/licenses/>. |
18
|
|
|
* |
19
|
|
|
* Copyright 2016-21 Hannes Forsgård |
20
|
|
|
*/ |
21
|
|
|
|
22
|
|
|
declare(strict_types=1); |
23
|
|
|
|
24
|
|
|
namespace byrokrat\giroapp\Console; |
25
|
|
|
|
26
|
|
|
use byrokrat\giroapp\CommandBus\ForceState; |
27
|
|
|
use byrokrat\giroapp\DependencyInjection\CommandBusProperty; |
28
|
|
|
use byrokrat\giroapp\Domain\State\StateCollection; |
29
|
|
|
use byrokrat\giroapp\Validator\ChoiceValidator; |
30
|
|
|
use Symfony\Component\Console\Command\Command; |
31
|
|
|
use Symfony\Component\Console\Input\InputInterface; |
32
|
|
|
use Symfony\Component\Console\Input\InputOption; |
33
|
|
|
use Symfony\Component\Console\Output\OutputInterface; |
34
|
|
|
use Symfony\Component\Console\Helper\QuestionHelper; |
35
|
|
|
|
36
|
|
|
final class EditStateConsole implements ConsoleInterface |
37
|
|
|
{ |
38
|
|
|
use CommandBusProperty; |
39
|
|
|
use Helper\DonorArgument; |
40
|
|
|
use Helper\DryRun; |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* @var StateCollection |
44
|
|
|
*/ |
45
|
|
|
private $stateCollection; |
46
|
|
|
|
47
|
|
|
public function __construct(StateCollection $stateCollection) |
48
|
|
|
{ |
49
|
|
|
$this->stateCollection = $stateCollection; |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
public function configure(Command $command): void |
53
|
|
|
{ |
54
|
|
|
$command->setName('edit-state'); |
55
|
|
|
$command->setDescription('Edit donor state'); |
56
|
|
|
$command->setHelp( |
57
|
|
|
'Edit donor state. Please note that you should only attempt to edit ' |
58
|
|
|
. 'donor states if you really know what you are doing as manual edits ' |
59
|
|
|
. 'may produce incomplete states.' |
60
|
|
|
); |
61
|
|
|
$this->configureDonorArgument($command); |
62
|
|
|
$command->addOption( |
63
|
|
|
self::OPTION_NEW_STATE, |
64
|
|
|
null, |
65
|
|
|
InputOption::VALUE_REQUIRED, |
66
|
|
|
self::OPTION_DESCS[self::OPTION_NEW_STATE] |
67
|
|
|
); |
68
|
|
|
$command->addOption('message', 'm', InputOption::VALUE_REQUIRED, 'Message describing state change'); |
69
|
|
|
$this->configureDryRun($command); |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
public function execute(InputInterface $input, OutputInterface $output): void |
73
|
|
|
{ |
74
|
|
|
$donor = $this->readDonor($input); |
75
|
|
|
|
76
|
|
|
$inputReader = new Helper\InputReader($input, $output, new QuestionHelper()); |
77
|
|
|
|
78
|
|
|
$validStates = array_change_key_case( |
79
|
|
|
(array)array_combine($this->stateCollection->getItemKeys(), $this->stateCollection->getItemKeys()), |
80
|
|
|
CASE_LOWER |
81
|
|
|
); |
82
|
|
|
|
83
|
|
|
$newStateId = $inputReader->readInput( |
84
|
|
|
self::OPTION_NEW_STATE, |
85
|
|
|
Helper\QuestionFactory::createChoiceQuestion( |
86
|
|
|
self::OPTION_DESCS[self::OPTION_NEW_STATE], |
87
|
|
|
$validStates, |
88
|
|
|
$donor->getState()->getStateId() |
89
|
|
|
), |
90
|
|
|
new ChoiceValidator($validStates) |
91
|
|
|
); |
92
|
|
|
|
93
|
|
|
/** @var string $msg */ |
94
|
|
|
$msg = $input->getOption('message') ?: 'Edited by user'; |
95
|
|
|
|
96
|
|
|
$this->commandBus->handle(new ForceState($donor, $newStateId, $msg)); |
97
|
|
|
|
98
|
|
|
$this->evaluateDryRun($input); |
99
|
|
|
} |
100
|
|
|
} |
101
|
|
|
|