Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ExceptionHtmlFormatter.php « Formatter « Log « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70549dbd7eb162e5ac44b1fc4e2f306bf70eb477 (plain)
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
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

namespace Piwik\Log\Formatter;

use Piwik\API\ResponseBuilder;
use Piwik\Common;
use Piwik\Log;

/**
 * Formats a log message containing an exception object into an HTML response.
 */
class ExceptionHtmlFormatter extends Formatter
{
    public function format(array $record)
    {
        if (! $record['message'] instanceof \Exception) {
            return $this->next($record);
        }

        Common::sendHeader('Content-Type: text/html; charset=utf-8');

        $outputFormat = strtolower(Common::getRequestVar('format', 'html', 'string'));
        $response = new ResponseBuilder($outputFormat);

        $record['message'] = $response->getResponseException(new \Exception($record['message']->getMessage()));

        return $record;
    }
}