-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsoleKernel.php
182 lines (150 loc) · 4.39 KB
/
ConsoleKernel.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?php
declare(strict_types=1);
namespace Codefy\Framework\Console;
use Codefy\Framework\Application;
use Codefy\Framework\Console\ConsoleApplication as Codex;
use Codefy\Framework\Factory\FileLoggerSmtpFactory;
use Codefy\Framework\Scheduler\Mutex\Locker;
use Codefy\Framework\Scheduler\Schedule;
use Exception;
use Qubus\Support\DateTime\QubusDateTimeZone;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Exception\CommandNotFoundException;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Throwable;
use function Qubus\Inheritance\Helpers\tap;
class ConsoleKernel
{
protected ?Codex $codex = null;
protected array $commands = [];
protected bool $commandsLoaded = false;
protected ?Schedule $schedule = null;
protected array $bootstrappers = [
\Codefy\Framework\Bootstrap\RegisterProviders::class,
\Codefy\Framework\Bootstrap\BootProviders::class,
];
public function __construct(protected Application $codefy)
{
$this->codefy->booted(function () {
$this->defineConsoleSchedule();
});
}
protected function defineConsoleSchedule(): void
{
$this->codefy->share(nameOrInstance: Schedule::class);
$this->codefy->prepare(name: Schedule::class, callableOrMethodStr: function () {
$timeZone = new QubusDateTimeZone(timezone: $this->codefy->make(
name: 'codefy.config'
)->getConfigKey('app.timezone'));
$mutex = $this->codefy->make(name: Locker::class);
return tap(value: new Schedule(timeZone: $timeZone, mutex: $mutex), callback: function ($schedule) {
$this->schedule(schedule: $schedule);
});
});
$this->schedule = $this->codefy->make(name: Schedule::class);
}
/**
* @throws Exception
*/
public function handle(InputInterface $input, ?OutputInterface $output = null): int
{
try {
$this->bootstrap();
return $this->getCodex()->run(input: $input, output: $output);
} catch (Throwable $ex) {
FileLoggerSmtpFactory::critical(message: $ex->getMessage(), context: [self::class => 'handle()']);
return 1;
}
}
protected function schedule(Schedule $schedule): void
{
//
}
protected function commands(): void
{
//
}
/**
* Registers a command.
*
* @param Command $command
* @return void
*/
public function registerCommand(Command $command): void
{
$this->getCodex()->add(command: $command);
}
/**
* Gets all the commands registered.
*
* @return array
*/
public function all(): array
{
$this->bootstrap();
return $this->getCodex()->all();
}
/**
* Get the output for the last run command.
*
* @return string
*/
public function output(): string
{
$this->bootstrap();
return $this->getCodex()->output();
}
/**
* Bootstrap the console kernel.
*
* @return void
*/
public function bootstrap(): void
{
if (! $this->codefy->hasBeenBootstrapped()) {
$this->codefy->bootstrapWith($this->bootstrappers());
}
if (false === $this->commandsLoaded) {
$this->commands();
$this->commandsLoaded = true;
}
}
/**
* Retrieve the Codex instance.
*
* @return Codex
*/
protected function getCodex(): Codex
{
if (null === $this->codex) {
return $this->codex = new Codex(codefy: $this->codefy);
}
return $this->codex;
}
/**
* Run a Codex console command by name.
*
* @param string $command
* @param array $parameters
* @param bool|OutputInterface|null $outputBuffer
* @return int
*
* @throws CommandNotFoundException
* @throws Exception
*/
public function call(string $command, array $parameters = [], bool|OutputInterface $outputBuffer = null): int
{
$this->bootstrap();
return $this->getCodex()->call(command: $command, parameters: $parameters, outputBuffer: $outputBuffer);
}
/**
* Get the bootstrappers.
*
* @return string[]
*/
protected function bootstrappers(): array
{
return $this->bootstrappers;
}
}