-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathModule.php
365 lines (302 loc) · 12.2 KB
/
Module.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
<?php
namespace DhErrorLogging;
use Zend\Console\Console;
use Zend\Mvc\MvcEvent;
use Zend\Mvc\Application;
use Zend\Mvc\ResponseSender\SendResponseEvent;
use Zend\EventManager\EventInterface;
use Zend\Log\Logger;
use Zend\Db\Adapter;
use Zend\View\Model\ModelInterface;
use Zend\ModuleManager\Feature;
class Module implements
Feature\BootstrapListenerInterface,
Feature\AutoloaderProviderInterface,
Feature\ConfigProviderInterface
{
private $logger;
private $generator;
private $exceptionFilter;
private $options;
private $nonMvcResponseSender;
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\ClassMapAutoloader' => array(
__DIR__ . '/autoload_classmap.php',
),
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
),
),
);
}
public function onBootstrap(EventInterface $e)
{
$app = $e->getApplication();
$eventManager = $app->getEventManager()->getSharedManager();
$serviceManager = $app->getServiceManager();
$this->options = $options = $serviceManager->get('DhErrorLogging\Options\ModuleOptions');
// return if it is not enabled
if (!$options->isEnabled()) {
return;
}
// get logger
$this->logger = $serviceManager->get('DhErrorLogging\Logger');
$this->generator = $serviceManager->get('DhErrorLogging\Generator\ErrorReferenceGenerator');
$this->exceptionFilter = $serviceManager->get('DhErrorLogging\Filter\ExceptionFilter');
$this->nonMvcResponseSender = $serviceManager->get('DhErrorLogging\Sender\ResponseSender');
// Handle native PHP errors
if ($options->isErrortypeEnabled('errors')) {
$this->attachErrorHandler();
}
// Handle those exceptions that do not get caught by MVC
if ($options->isErrortypeEnabled('exceptions')) {
$this->attachExceptionHandler();
}
// Handle framework specific errors
if ($options->isErrortypeEnabled('dispatch')) {
$eventManager->attach('Zend\Mvc\Application', MvcEvent::EVENT_DISPATCH_ERROR, array($this, 'attachDispatchErrorHandler'));
}
if ($options->isErrortypeEnabled('render')) {
$eventManager->attach('Zend\Mvc\Application', MvcEvent::EVENT_RENDER_ERROR, array($this, 'attachRenderErrorHandler'));
}
// Handle fatal errors
if ($options->isErrortypeEnabled('fatal')) {
$this->attachFatalErrorHandler();
}
}
public function attachErrorHandler()
{
// Handle native PHP errors
set_error_handler(function ($level, $message, $file, $line) {
$minErrorLevel = error_reporting();
if ($minErrorLevel & $level) {
$errorReference = $this->generator->generate();
$extra = array(
'type' => 'ERROR',
'file' => $file,
'line' => $line,
'reference' => $errorReference
);
// translate error type to log type.
$logType = Logger::ERR;
if (isset(Logger::$errorPriorityMap[$level])) {
$logType = Logger::$errorPriorityMap[$level];
}
// log it
$this->logger->log($logType, $message, $extra);
if ($this->options->getDisplayableErrorLevels() & $level) {
$this->nonMvcResponse($extra, $message);
// return false to not continue native handler
return false;
}
return true;
}
});
}
public function attachExceptionHandler()
{
set_exception_handler(function ($exception) {
$logs = array();
do {
$priority = Logger::ERR;
if ($exception instanceof \ErrorException && isset(Logger::$errorPriorityMap[$exception->getSeverity()])) {
$priority = Logger::$errorPriorityMap[$exception->getSeverity()];
}
// log only desired exceptions
if (!empty($exception) && !$this->exceptionFilter->isAllowed($exception)) {
return;
}
$errorReference = $this->generator->generate();
$extra = array(
'type' => 'EXCEPTION',
'file' => $exception->getFile(),
'line' => $exception->getLine(),
'trace' => $exception->getTrace(),
'reference' => $errorReference
);
if (isset($exception->xdebug_message)) {
$extra['xdebug'] = $exception->xdebug_message;
}
$logs[] = array(
'priority' => $priority,
'message' => $exception->getMessage(),
'extra' => $extra,
);
$exception = $exception->getPrevious();
} while ($exception);
foreach (array_reverse($logs) as $log) {
$this->logger->log($log['priority'], $log['message'], $log['extra']);
}
$params = $logs[0]['extra'];
$params['message'] = $logs[0]['message'];
$this->nonMvcResponse($params);
// return false to not continue other handlers
return false;
});
}
public function attachDispatchErrorHandler($event)
{
// check if event is error
if (!$event->isError()) {
return;
}
$errorType = E_ERROR;
// get message and exception (if present)
$message = $event->getError();
$exception = $event->getParam('exception');
$type = 'DISPATCH';
// 404 route not found exception
if ($message == Application::ERROR_ROUTER_NO_MATCH) {
if (empty($this->config['dherrorlogging']['error_types']['dispatch\router_no_match'])) {
return;
}
$type = '404';
}
// exception filter
if (!empty($exception) && !$this->exceptionFilter->isAllowed($exception)) {
return;
}
// generate unique reference for this error
$errorReference = $this->generator->generate();
$extra = array(
'reference' => $errorReference,
'type' => $type
);
// check if event has exception and populate extras array.
if (!empty($exception)) {
$message = $exception->getMessage();
$extra['file'] = $exception->getFile();
$extra['line'] = $exception->getLine();
$extra['trace'] = $exception->getTrace();
// check if xdebug is enabled and message present in which case add it to the extra
if (isset($exception->xdebug_message)) {
$extra['xdebug'] = $exception->xdebug_message;
}
if (method_exists($exception, 'getSeverity')) {
$errorType = $exception->getSeverity();
}
}
// translate error type to log type.
$logType = Logger::ERR;
if (isset(Logger::$errorPriorityMap[$errorType])) {
$logType = Logger::$errorPriorityMap[$errorType];
}
// log it
$this->logger->log($logType, $message, $extra);
$this->mvcResponse('dispatch', $event, $extra);
}
public function attachRenderErrorHandler($event)
{
// check if event is an error
if (!$event->isError()) {
return;
}
$errorType = E_ERROR;
// get message and exception (if present)
$message = $event->getError();
$exception = $event->getParam('exception');
$type = 'RENDER';
// exception filter
if (!empty($exception) && !$this->exceptionFilter->isAllowed($exception)) {
return;
}
// generate unique reference for this error
$errorReference = $this->generator->generate();
$extra = array(
'reference' => $errorReference,
'type' => $type
);
// check if event has exception and populate extras array.
if (!empty($exception)) {
$message = $exception->getMessage();
$extra['file'] = $exception->getFile();
$extra['line'] = $exception->getLine();
$extra['trace'] = $exception->getTrace();
// check if xdebug is enabled and message present in which case add it to the extra
if (isset($exception->xdebug_message)) {
$extra['xdebug'] = $exception->xdebug_message;
}
if (method_exists($exception, 'getSeverity')) {
$errorType = $exception->getSeverity();
}
}
// translate error type to log type.
$logType = Logger::ERR;
if (isset(Logger::$errorPriorityMap[$errorType])) {
$logType = Logger::$errorPriorityMap[$errorType];
}
// log it
$this->logger->log($logType, $message, $extra);
$this->mvcResponse('render', $event, $extra);
}
public function attachFatalErrorHandler()
{
// catch also fatal errors which would not show the regular error template.
register_shutdown_function(function () {
$error = error_get_last();
// check we have valid error object
if (null === $error || !isset($error['type'])) {
return;
}
// allow only catchable errors
if ($error['type'] !== E_ERROR && $error['type'] !== E_PARSE && $error['type'] !== E_RECOVERABLE_ERROR) {
return;
}
$errorReference = $this->generator->generate();
$extra = array(
'type' => 'FATAL',
'reference' => $errorReference,
'file' => $error['file'],
'line' => $error['line']
);
// translate error type to log type.
$logType = Logger::ERR;
if (isset(Logger::$errorPriorityMap[$error['type']])) {
$logType = Logger::$errorPriorityMap[$error['type']];
}
try {
// log error using logger
$this->logger->log($logType, $error['message'], $extra);
}
catch (\Exception $e) {
// if fatal error occured it could be a log writer problem
// so write it to PHP log file nad show a nice error message
error_log(sprintf('[Error reference: %s] %s', $errorReference, $error['message']), 0);
}
$this->nonMvcResponse($extra, $error['message']);
});
}
private function nonMvcResponse($extra, $message = '') {
$responseEvent = new SendResponseEvent();
if (!empty($message)) {
$extra = array_merge($extra, array('message' => $message));
}
$responseEvent->setParams($extra);
$this->nonMvcResponseSender->send($responseEvent);
}
private function mvcResponse($name, $event, $extra = []) {
// hijack error view and add error reference variable to the view
$viewModel = $event->getResult();
if ($viewModel instanceof ModelInterface) {
// if template specified, use it
if ($this->options->getTemplate($name)) {
$mapresolver = $event->getApplication()->getServiceManager()->get('ViewTemplateMapResolver');
if (!$mapresolver->has('dherrorlogging/'.$name)) { // if not specified, assign it from config
$path = $this->options->getTemplate($name);
$mapresolver->add('dherrorlogging/'.$name, realpath($path));
}
$viewModel->setTemplate('dherrorlogging/'.$name);
}
if (isset($extra['reference'])) {
$viewModel->setVariable('errorReference', $extra['reference']);
}
}
}
}