2017 © Pedro Peláez
 

library slim-exception

Slim HTTP exceptions and exception handling

image

juliangut/slim-exception

Slim HTTP exceptions and exception handling

  • Friday, February 16, 2018
  • by juliangut
  • Repository
  • 1 Watchers
  • 0 Stars
  • 81 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 7 Versions
  • 7 % Grown

The README.md

PHP version Latest Version License, (*1)

Total Downloads Monthly Downloads, (*2)

slim-exception

Alternative Slim error handling with better response format negotiation, better exception logging and better development support, (*3)

Installation

Composer

composer require juliangut/slim-exception

Usage

Require composer autoload file, (*4)

require './vendor/autoload.php';

use Jgut\Slim\Exception\Handler\ErrorHandler;
use Jgut\Slim\Exception\Whoops\Handler\ErrorHandler as WhoopsErrorHandler;
use Negotiation\Negotiator;
use Slim\Factory\AppFactory;
use Whoops\Run as Whoops;

// Instantiate the app
$app = AppFactory::create();

// ...

$callableResolver = $app->getCallableResolver();
$responseFactory = $app->getResponseFactory();
$logger = new Logger();

$errorHandler = $inDevelopment && class_exists(WhoopsErrorHandler::class)
    ? new WhoopsErrorHandler($callableResolver, $responseFactory, new Negotiator(), $logger)
    : new ErrorHandler($callableResolver, $responseFactory, new Negotiator(), $logger);

// Add Error Middleware
$errorMiddleware = $app->addErrorMiddleware($inDevelopment, true, true);
$errorMiddleware->setDefaultErrorHandler($errorHandler);

// ...

$app->run();

Renderers

Custom error renderers are configured when using slim-exception error handlers. Fear not, out of the box ErrorHandler is a direct drop-in to change default Slim ErrorHandler, (*5)

You can register your error renderers or completely change them, (*6)

$errorHandler = new ErrorHandler($callableResolver, $responseFactory, new Negotiator());

// Set single error renderer
$errorHandler->setErrorRenderer('application/xhtml+xml', MyCustomHtmlRenderer::class);

// Completely replace error renderers
$errorHandler->setErrorRenderers(['text/html' => MyCustomHtmlRenderer::class]);

Whoops

Developers deserve a better and more informative error handling while in development environment, (*7)

Whoops is a great tool for this purpose and its usage is integrated in this package. There is a special Whoops error handler which can be used as default exception handler for development, (*8)

Given Whoops renderers are meant for development displayErrorDetails argument on Slim\Interfaces\ErrorRendererInterface::__invoke won't be considered and stacktrace will always be displayed, (*9)

The example of how to include Whoops error handler is in the code above, (*10)

For you to use this handler you'll need to require whoops first. Additionally, Symfony's var-dumper plays nice with whoops so require it too, (*11)

composer require --dev filp/whoops
composer require --dev symfony/var-dumper

Handle all errors/exceptions

In order to fully integrate error handling with the environment you can register ExceptionHandler globally. In this way any triggered and unhandled error will be captured and treated by the error handler, (*12)

use Jgut\Slim\Exception\ExceptionHandler;
use Slim\Factory\AppFactory;

// Instantiate the app
$app = AppFactory::create();

// ...
// Create and register $errorHandler in error middleware

$request = Psr17ServerRequestFactoryInterface::createServerRequest();

$exceptionHandler = new ExceptionHandler($request, $errorHandler, $inDevelopment, true, true);
$exceptionHandler->registerHandling();

// ...

$app->run($request);

// This error will be captured and gracefully handled
trigger_error('This is embarrassing', \E_USER_ERROR);

Upgrade from 2.x

  • Minimum PHP version is now 8.0
  • Minimum Whoops version is now 2.15 as custom Inspector has been removed in favor of Whoop's frame filters

Contributing

Found a bug or have a feature request? Please open a new issue. Have a look at existing issues before., (*13)

See file CONTRIBUTING.md, (*14)

License

See file LICENSE included with the source code for a copy of the license terms., (*15)

The Versions