This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Core.php
217 lines (175 loc) · 5.7 KB
/
Core.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<?php
namespace Pianissimo\Component\Framework;
use Pianissimo\Component\Config\DelegatingLoader;
use Pianissimo\Component\Config\LoaderInterface;
use Pianissimo\Component\Config\LoaderResolver;
use Pianissimo\Component\DependencyInjection\ContainerBuilder;
use Pianissimo\Component\Framework\Bridge\Doctrine\Command\CreateCommand;
use Pianissimo\Component\Framework\Bridge\Doctrine\Command\UpdateCommand;
use Pianissimo\Component\Framework\Exception\NotFoundHttpException;
use Pianissimo\Component\Framework\Loader\YamlFileLoader;
use Pianissimo\Component\Framework\Controller\ErrorController;
use Pianissimo\Component\Framework\Controller\ExceptionController;
use Pianissimo\Component\Framework\Routing\Command\DebugRoutesCommand;
use ReflectionObject;
use Throwable;
use UnexpectedValueException;
class Core
{
/**
* @var ContainerBuilder
*/
private $container;
/**
* @var float
*/
private $startTime;
/**
* @var string
*/
private $environment;
/**
* @var bool
*/
private $booted;
/**
* @var string
*/
private $projectDir;
public function __construct(string $environment, bool $debug)
{
$this->startTime = microtime(true);
$this->environment = $environment;
$this->setDebugMode($debug);
}
public function boot(): void
{
if ($this->booted === true) {
return;
}
$this->initializeContainer();
$this->addParameters();
$this->container->build();
$this->booted = true;
}
private function initializeContainer(): void
{
$container = new ContainerBuilder();
$container->setDefaultAutowiring(true);
$containerLoader = $this->getContainerLoader($container);
$containerLoader->load(__DIR__ . DIRECTORY_SEPARATOR . 'services.yaml');
if (method_exists($this, 'configureContainer')) {
$this->configureContainer($containerLoader);
}
$this->container = $container;
}
private function getContainerLoader(ContainerBuilder $container): LoaderInterface
{
$loaders = [
new YamlFileLoader($container),
];
$loaderResolver = new LoaderResolver($loaders);
return new DelegatingLoader($loaderResolver);
}
private function addParameters(): void
{
$this->container->setParameter('environment', $this->getEnvironment());
$this->container->setParameter('project_dir', $this->getProjectDir());
}
/**
* @throws NotFoundHttpException
*/
public function handle(Request $request): Response
{
$this->boot();
$controllerResolver = new ControllerResolver($this->container);
$controllerCallable = $controllerResolver->resolve($request);
$response = $controllerCallable();
//$response->setRoute($route);
if (!$response instanceof Response) {
//throw new UnexpectedValueException(sprintf("Function '%s' in controller class '%s' must return an instance of '%s', '%s' given.", $function, $class, Response::class, gettype($response)));
throw new UnexpectedValueException(sprintf("Function must return an instance of '%s'.", Response::class));
}
return $response;
}
/**
* Sends the given Response
*/
public function send(Response $response): void
{
//PianoTuner::get($response, $this->startTime);
$response->send();
}
private function setDebugMode(bool $mode): void
{
if ($mode === true) {
set_error_handler([$this, 'errorHandler'], E_ALL);
set_exception_handler([$this, 'exceptionHandler']);
} else {
ini_set('display_errors', 0);
ini_set('log_errors', 1);
}
}
/**
* Calls the ErrorController and handles it's Response
*/
public function errorHandler($errorNo, $errorString, $errorFile, $errorLine): void
{
$errorController = $this->container->get(ErrorController::class);
$response = $errorController->index($errorNo, $errorString, $errorFile, $errorLine);
$this->send($response);
}
/**
* Calls the ExceptionController and handles it's Response
*/
public function exceptionHandler(Throwable $exception): void
{
if ($this->container === null || $this->container->isBuilt() === false) {
dd($exception);
}
$exceptionController = $this->container->get(ExceptionController::class);
$response = $exceptionController->index($exception);
$this->send($response);
}
/**
* Gets the application root dir (path of the project's composer file).
*/
public function getProjectDir(): string
{
if ($this->projectDir === null) {
$reflectionObject = new ReflectionObject($this);
$dir = $rootDir = dirname($reflectionObject->getFileName());
while (!file_exists($dir . '/composer.json')) {
if ($dir === dirname($dir)) {
return $this->projectDir = $rootDir;
}
$dir = dirname($dir);
}
$this->projectDir = $dir;
}
return $this->projectDir;
}
public function getContainer(): ContainerBuilder
{
return $this->container;
}
public function getStartTime(): float
{
return $this->startTime;
}
public function getEnvironment(): string
{
return $this->environment;
}
/**
* @TODO command locator
*/
public function getCommands(): array
{
return [
DebugRoutesCommand::class,
CreateCommand::class,
UpdateCommand::class,
];
}
}