mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-02 17:14:38 +02:00
refactor: extract exception and cache middleware (#4248)
This commit is contained in:
parent
36fd72c87e
commit
a6bdc322b0
8 changed files with 99 additions and 56 deletions
24
middlewares/ExceptionMiddleware.php
Normal file
24
middlewares/ExceptionMiddleware.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
class ExceptionMiddleware implements Middleware
|
||||
{
|
||||
private Logger $logger;
|
||||
|
||||
public function __construct(Logger $logger)
|
||||
{
|
||||
$this->logger = $logger;
|
||||
}
|
||||
|
||||
public function __invoke(Request $request, $next): Response
|
||||
{
|
||||
try {
|
||||
return $next($request);
|
||||
} catch (\Throwable $e) {
|
||||
$this->logger->error('Exception in ExceptionMiddleware', ['e' => $e]);
|
||||
|
||||
return new Response(render(__DIR__ . '/../templates/exception.html.php', ['e' => $e]), 500);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue