mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
171 lines
4.0 KiB
PHP
171 lines
4.0 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Logging;
|
|
|
|
use SilverStripe\Control\Controller;
|
|
use SilverStripe\Control\Director;
|
|
use SilverStripe\Control\HTTPResponse;
|
|
use Monolog\Handler\AbstractProcessingHandler;
|
|
use Monolog\Formatter\FormatterInterface;
|
|
|
|
/**
|
|
* Output the error to the browser, with the given HTTP status code.
|
|
* We recommend that you use a formatter that generates HTML with this.
|
|
*/
|
|
class HTTPOutputHandler extends AbstractProcessingHandler
|
|
{
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $contentType = "text/html";
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
private $statusCode = 500;
|
|
|
|
/**
|
|
* @var FormatterInterface
|
|
*/
|
|
private $cliFormatter = null;
|
|
|
|
/**
|
|
* Get the mime type to use when displaying this error.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getContentType()
|
|
{
|
|
return $this->contentType;
|
|
}
|
|
|
|
/**
|
|
* Set the mime type to use when displaying this error.
|
|
* Default text/html
|
|
*
|
|
* @param string $contentType
|
|
* @return HTTPOutputHandler Return $this to allow chainable calls
|
|
*/
|
|
public function setContentType($contentType)
|
|
{
|
|
$this->contentType = $contentType;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get the HTTP status code to use when displaying this error.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getStatusCode()
|
|
{
|
|
return $this->statusCode;
|
|
}
|
|
|
|
/**
|
|
* Set the HTTP status code to use when displaying this error.
|
|
* Default 500
|
|
*
|
|
* @param int $statusCode
|
|
* @return $this
|
|
*/
|
|
public function setStatusCode($statusCode)
|
|
{
|
|
$this->statusCode = $statusCode;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set a formatter to use if Director::is_cli() is true
|
|
*
|
|
* @param $cliFormatter
|
|
* @return HTTPOutputHandler Return $this to allow chainable calls
|
|
*/
|
|
public function setCLIFormatter(FormatterInterface $cliFormatter)
|
|
{
|
|
$this->cliFormatter = $cliFormatter;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Return the formatter use if Director::is_cli() is true
|
|
* If none has been set, null is returned, and the getFormatter() result will be used instead
|
|
*
|
|
* @return FormatterInterface
|
|
*/
|
|
public function getCLIFormatter()
|
|
{
|
|
return $this->cliFormatter;
|
|
}
|
|
|
|
/**
|
|
* Return the formatter to use in this case.
|
|
* May be the getCliFormatter() value if one is provided and Director::is_cli() is true.
|
|
*
|
|
* @return FormatterInterface
|
|
*/
|
|
public function getFormatter()
|
|
{
|
|
if (Director::is_cli() && ($cliFormatter = $this->getCLIFormatter())) {
|
|
return $cliFormatter;
|
|
}
|
|
|
|
return $this->getDefaultFormatter();
|
|
}
|
|
|
|
/**
|
|
* Check default formatter to use
|
|
*
|
|
* @return FormatterInterface
|
|
*/
|
|
public function getDefaultFormatter()
|
|
{
|
|
return parent::getFormatter();
|
|
}
|
|
|
|
/**
|
|
* Set default formatter
|
|
*
|
|
* @param FormatterInterface $formatter
|
|
* @return $this
|
|
*/
|
|
public function setDefaultFormatter(FormatterInterface $formatter)
|
|
{
|
|
parent::setFormatter($formatter);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param array $record
|
|
* @return bool
|
|
*/
|
|
protected function write(array $record)
|
|
{
|
|
ini_set('display_errors', 0);
|
|
|
|
// TODO: This coupling isn't ideal
|
|
// See https://github.com/silverstripe/silverstripe-framework/issues/4484
|
|
if (Controller::has_curr()) {
|
|
$response = Controller::curr()->getResponse();
|
|
} else {
|
|
$response = new HTTPResponse();
|
|
}
|
|
|
|
// If headers have been sent then these won't be used, and may throw errors that we wont' want to see.
|
|
if (!headers_sent()) {
|
|
$response->setStatusCode($this->statusCode);
|
|
$response->addHeader("Content-Type", $this->contentType);
|
|
} else {
|
|
// To supress errors aboot errors
|
|
$response->setStatusCode(200);
|
|
}
|
|
|
|
$response->setBody($record['formatted']);
|
|
$response->output();
|
|
|
|
return false === $this->bubble;
|
|
}
|
|
}
|