|
5 | 5 | use Civi\Cv\Util\BootTrait;
|
6 | 6 | use Civi\Cv\Util\CvArgvInput;
|
7 | 7 | use LesserEvil\ShellVerbosityIsEvil;
|
| 8 | +use Symfony\Component\Console\Exception\CommandNotFoundException; |
8 | 9 | use Symfony\Component\Console\Input\InputInterface;
|
9 | 10 | use Symfony\Component\Console\Input\InputOption;
|
10 | 11 | use Symfony\Component\Console\Output\ConsoleOutput;
|
|
13 | 14 |
|
14 | 15 | class BaseApplication extends \Symfony\Component\Console\Application {
|
15 | 16 |
|
| 17 | + protected $stage = 'new'; |
| 18 | + |
16 | 19 | /**
|
17 | 20 | * Primary entry point for execution of the standalone command.
|
18 | 21 | */
|
@@ -52,6 +55,37 @@ public function configure() {
|
52 | 55 | 'commands' => $this->createCommands(),
|
53 | 56 | ])['commands'];
|
54 | 57 | $this->addCommands($commands);
|
| 58 | + $this->stage = 'configured'; |
| 59 | + } |
| 60 | + |
| 61 | + public function find($name) { |
| 62 | + switch ($this->stage) { |
| 63 | + case 'new': |
| 64 | + case 'extended': |
| 65 | + return parent::find($name); |
| 66 | + |
| 67 | + case 'configured': |
| 68 | + try { |
| 69 | + return parent::find($name); |
| 70 | + } |
| 71 | + catch (CommandNotFoundException $e) { |
| 72 | + $this->stage = 'extended'; |
| 73 | + $c = new class() { |
| 74 | + use BootTrait; |
| 75 | + }; |
| 76 | + |
| 77 | + $okLevels = ['full|cms-full', 'full', 'cms-full']; |
| 78 | + if (in_array(Cv::input()->getOption('level'), $okLevels)) { |
| 79 | + $c->boot(Cv::input(), Cv::output()); |
| 80 | + return parent::find($name); |
| 81 | + } |
| 82 | + else { |
| 83 | + $output = is_callable([Cv::output(), 'getErrorOutput']) ? Cv::output()->getErrorOutput() : Cv::output(); |
| 84 | + $output->writeln(sprintf("<error>WARNING: When using bootstrap --level=%s, some commands may be unavailable.</error>", Cv::input()->getOption('level'))); |
| 85 | + throw $e; |
| 86 | + } |
| 87 | + } |
| 88 | + } |
55 | 89 | }
|
56 | 90 |
|
57 | 91 | /**
|
|
0 commit comments