-
Notifications
You must be signed in to change notification settings - Fork 567
Expand file tree
/
Copy pathDebugKitMiddleware.php
More file actions
73 lines (65 loc) · 2.21 KB
/
DebugKitMiddleware.php
File metadata and controls
73 lines (65 loc) · 2.21 KB
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
<?php
declare(strict_types=1);
/**
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @license https://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace DebugKit\Middleware;
use Cake\Core\Configure;
use Cake\Event\EventManager;
use DebugKit\ToolbarService;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\MiddlewareInterface;
use Psr\Http\Server\RequestHandlerInterface;
/**
* Middleware that enables DebugKit for the layers below.
*/
class DebugKitMiddleware implements MiddlewareInterface
{
/**
* @var \DebugKit\ToolbarService
*/
protected ToolbarService $service;
/**
* Constructor
*
* @param \DebugKit\ToolbarService $service The configured service, or null.
*/
public function __construct(?ToolbarService $service = null)
{
$service = $service ?: new ToolbarService(EventManager::instance(), (array)Configure::read('DebugKit'));
$this->service = $service;
}
/**
* Invoke the middleware.
*
* DebugKit will augment the response and add the toolbar if possible.
*
* @param \Psr\Http\Message\ServerRequestInterface $request The request.
* @param \Psr\Http\Server\RequestHandlerInterface $handler The request handler.
* @return \Psr\Http\Message\ResponseInterface A response.
*/
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
if ($this->service->isEnabled()) {
$this->service->loadPanels();
$this->service->initializePanels();
}
$response = $handler->handle($request);
if (!$this->service->isEnabled()) {
return $response;
}
$row = $this->service->saveData($request, $response);
if (!$row) {
return $response;
}
return $this->service->injectScripts($row, $response);
}
}