Skip to content

Commit c6b689b

Browse files
committed
BaseApplication - Support for dispatching commands from extensions
1 parent ed59c8f commit c6b689b

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

lib/src/BaseApplication.php

+34
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use Civi\Cv\Util\BootTrait;
66
use Civi\Cv\Util\CvArgvInput;
77
use LesserEvil\ShellVerbosityIsEvil;
8+
use Symfony\Component\Console\Exception\CommandNotFoundException;
89
use Symfony\Component\Console\Input\InputInterface;
910
use Symfony\Component\Console\Input\InputOption;
1011
use Symfony\Component\Console\Output\ConsoleOutput;
@@ -13,6 +14,8 @@
1314

1415
class BaseApplication extends \Symfony\Component\Console\Application {
1516

17+
protected $stage = 'new';
18+
1619
/**
1720
* Primary entry point for execution of the standalone command.
1821
*/
@@ -52,6 +55,37 @@ public function configure() {
5255
'commands' => $this->createCommands(),
5356
])['commands'];
5457
$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+
}
5589
}
5690

5791
/**

0 commit comments

Comments
 (0)