blob: dca7bb74ad71ab1af1570568766cf170993c579c (
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
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
74
75
76
77
78
79
80
81
|
<?php
/**
* PHPTAL templating engine
*
* PHP Version 5
*
* @category HTML
* @package PHPTAL
* @author Kornel Lesiński <kornel@aardvarkmedia.co.uk>
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @version SVN: $Id: $
* @link http://phptal.org/
*/
class PHPTAL_ExceptionHandler
{
private $encoding;
function __construct($encoding)
{
$this->encoding = $encoding;
}
/**
* PHP's default exception handler allows error pages to be indexed and can reveal too much information,
* so if possible PHPTAL sets up its own handler to fix this.
*
* Doesn't change exception handler if non-default one is set.
*
* @param Exception e exception to re-throw and display
*
* @return void
* @throws Exception
*/
public static function handleException(Exception $e, $encoding)
{
// PHPTAL's handler is only useful on fresh HTTP response
if (PHP_SAPI !== 'cli' && !headers_sent()) {
$old_exception_handler = set_exception_handler(array(new PHPTAL_ExceptionHandler($encoding), '_defaultExceptionHandler'));
if ($old_exception_handler !== NULL) {
restore_exception_handler(); // if there's user's exception handler, let it work
}
}
throw $e; // throws instead of outputting immediately to support user's try/catch
}
/**
* Generates simple error page. Sets appropriate HTTP status to prevent page being indexed.
*
* @param Exception e exception to display
*/
public function _defaultExceptionHandler($e)
{
if (!headers_sent()) {
header('HTTP/1.1 500 PHPTAL Exception');
header('Content-Type:text/html;charset='.$this->encoding);
}
$line = $e->getFile();
if ($e->getLine()) {
$line .= ' line '.$e->getLine();
}
if (ini_get('display_errors')) {
$title = get_class($e).': '.htmlspecialchars($e->getMessage());
$body = "<p><strong>\n".htmlspecialchars($e->getMessage()).'</strong></p>' .
'<p>In '.htmlspecialchars($line)."</p><pre>\n".htmlspecialchars($e->getTraceAsString()).'</pre>';
} else {
$title = "PHPTAL Exception";
$body = "<p>This page cannot be displayed.</p><hr/>" .
"<p><small>Enable <code>display_errors</code> to see detailed message.</small></p>";
}
echo "<!DOCTYPE html><html xmlns='http://www.w3.org/1999/xhtml'><head><style>body{font-family:sans-serif}</style><title>\n";
echo $title.'</title></head><body><h1>PHPTAL Exception</h1>'.$body;
error_log($e->getMessage().' in '.$line);
echo '</body></html>'.str_repeat(' ', 100)."\n"; // IE won't display error pages < 512b
exit(1);
}
}
|