Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
8b4d4a0b
Commit
8b4d4a0b
authored
Mar 29, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup web errorhandler
parent
bb290691
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
19 deletions
+44
-19
Application.php
framework/console/Application.php
+2
-2
Application.php
framework/web/Application.php
+3
-2
ErrorHandler.php
framework/web/ErrorHandler.php
+39
-15
No files found.
framework/console/Application.php
View file @
8b4d4a0b
...
...
@@ -197,9 +197,9 @@ class Application extends \yii\base\Application
*/
public
function
coreComponents
()
{
return
array_merge
([
return
array_merge
(
parent
::
coreComponents
(),
[
'request'
=>
[
'class'
=>
'yii\console\Request'
],
'response'
=>
[
'class'
=>
'yii\console\Response'
],
]
,
parent
::
coreComponents
()
);
]);
}
}
framework/web/Application.php
View file @
8b4d4a0b
...
...
@@ -164,11 +164,12 @@ class Application extends \yii\base\Application
*/
public
function
coreComponents
()
{
return
array_merge
([
return
array_merge
(
parent
::
coreComponents
(),
[
'errorHandler'
=>
[
'class'
=>
'yii\web\ErrorHandler'
],
'request'
=>
[
'class'
=>
'yii\web\Request'
],
'response'
=>
[
'class'
=>
'yii\web\Response'
],
'session'
=>
[
'class'
=>
'yii\web\Session'
],
'user'
=>
[
'class'
=>
'yii\web\User'
],
]
,
parent
::
coreComponents
()
);
]);
}
}
framework/web/ErrorHandler.php
View file @
8b4d4a0b
...
...
@@ -8,6 +8,7 @@
namespace
yii\web
;
use
Yii
;
use
yii\base\Exception
;
use
yii\base\ErrorException
;
use
yii\base\UserException
;
...
...
@@ -27,17 +28,17 @@ use yii\base\UserException;
class
ErrorHandler
extends
\yii\base\ErrorHandler
{
/**
* @var integer maximum number of source code lines to be displayed. Defaults to
25
.
* @var integer maximum number of source code lines to be displayed. Defaults to
19
.
*/
public
$maxSourceLines
=
25
;
public
$maxSourceLines
=
19
;
/**
* @var integer maximum number of trace source code lines to be displayed. Defaults to 1
0
.
* @var integer maximum number of trace source code lines to be displayed. Defaults to 1
3
.
*/
public
$maxTraceSourceLines
=
1
0
;
public
$maxTraceSourceLines
=
1
3
;
/**
* @var string the route (e.g. 'site/error') to the controller action that will be used
* to display external errors. Inside the action, it can retrieve the error information
*
by Yii::$app
->exception. This property defaults to null, meaning ErrorHandler
*
using `Yii::$app->errorHandler
->exception. This property defaults to null, meaning ErrorHandler
* will handle the error display.
*/
public
$errorAction
;
...
...
@@ -65,9 +66,6 @@ class ErrorHandler extends \yii\base\ErrorHandler
*/
protected
function
renderException
(
$exception
)
{
// TODO what to do different in test env?
// parent::renderException($exception); + <pre>
$response
=
Yii
::
$app
->
getResponse
();
$useErrorView
=
$response
->
format
===
\yii\web\Response
::
FORMAT_HTML
&&
(
!
YII_DEBUG
||
$exception
instanceof
UserException
);
...
...
@@ -80,9 +78,9 @@ class ErrorHandler extends \yii\base\ErrorHandler
$response
->
data
=
$result
;
}
}
elseif
(
$response
->
format
===
\yii\web\Response
::
FORMAT_HTML
)
{
if
(
isset
(
$_SERVER
[
'HTTP_X_REQUESTED_WITH'
])
&&
$_SERVER
[
'HTTP_X_REQUESTED_WITH'
]
===
'XMLHttpRequest'
)
{
if
(
isset
(
$_SERVER
[
'HTTP_X_REQUESTED_WITH'
])
&&
$_SERVER
[
'HTTP_X_REQUESTED_WITH'
]
===
'XMLHttpRequest'
||
YII_ENV_TEST
)
{
// AJAX request
$response
->
data
=
'<pre>'
.
htmlspecialchars
(
parent
::
renderException
(
$exception
),
ENT_QUOTES
,
$this
->
charset
)
.
'</pre>'
;
$response
->
data
=
'<pre>'
.
htmlspecialchars
(
$this
->
convertExceptionToString
(
$exception
),
ENT_QUOTES
,
Yii
::
$app
->
charset
)
.
'</pre>'
;
}
else
{
// if there is an error during error rendering it's useful to
// display PHP error in debug mode instead of a blank screen
...
...
@@ -116,16 +114,16 @@ class ErrorHandler extends \yii\base\ErrorHandler
{
$array
=
[
'type'
=>
get_class
(
$exception
),
'name'
=>
$exception
instanceof
\yii\base\Exception
||
$exception
instanceof
\yii\base\ErrorException
?
$exception
->
getName
()
:
'Exception'
,
'name'
=>
(
$exception
instanceof
Exception
||
$exception
instanceof
ErrorException
)
?
$exception
->
getName
()
:
'Exception'
,
'message'
=>
$exception
->
getMessage
(),
'code'
=>
$exception
->
getCode
(),
];
if
(
YII_DEBUG
)
{
$array
[
'stack-trace'
]
=
explode
(
"
\n
"
,
$exception
->
getTraceAsString
());
}
if
(
$exception
instanceof
HttpException
)
{
$array
[
'status'
]
=
$exception
->
statusCode
;
}
if
(
YII_DEBUG
)
{
$array
[
'stack-trace'
]
=
explode
(
"
\n
"
,
$exception
->
getTraceAsString
());
}
if
((
$prev
=
$exception
->
getPrevious
())
!==
null
)
{
$array
[
'previous'
]
=
$this
->
convertExceptionToArray
(
$prev
);
}
...
...
@@ -134,6 +132,32 @@ class ErrorHandler extends \yii\base\ErrorHandler
}
/**
* Converts an exception into a simple string.
* @param \Exception $exception the exception being converted
* @return string the string representation of the exception.
*/
protected
function
convertExceptionToString
(
$exception
)
{
if
(
$exception
instanceof
Exception
&&
(
$exception
instanceof
UserException
||
!
YII_DEBUG
))
{
$message
=
"
{
$exception
->
getName
()
}
:
{
$exception
->
getMessage
()
}
"
;
}
elseif
(
YII_DEBUG
)
{
if
(
$exception
instanceof
Exception
)
{
$message
=
"Exception (
{
$exception
->
getName
()
}
)"
;
}
elseif
(
$exception
instanceof
ErrorException
)
{
$message
=
"
{
$exception
->
getName
()
}
"
;
}
else
{
$message
=
'Exception'
;
}
$message
.=
" '"
.
get_class
(
$exception
)
.
"' with message '
{
$exception
->
getMessage
()
}
'
\n\n
in "
.
$exception
->
getFile
()
.
':'
.
$exception
->
getLine
()
.
"
\n\n
"
.
"Stack trace:
\n
"
.
$exception
->
getTraceAsString
();
}
else
{
$message
=
'Error: '
.
$exception
->
getMessage
();
}
return
$message
;
}
/**
* Converts special characters to HTML entities.
* @param string $text to encode.
* @return string encoded original text.
...
...
@@ -224,7 +248,7 @@ class ErrorHandler extends \yii\base\ErrorHandler
return
''
;
}
$half
=
(
int
)
((
$index
==
0
?
$this
->
maxSourceLines
:
$this
->
maxTraceSourceLines
)
/
2
);
$half
=
(
int
)
((
$index
==
1
?
$this
->
maxSourceLines
:
$this
->
maxTraceSourceLines
)
/
2
);
$begin
=
$line
-
$half
>
0
?
$line
-
$half
:
0
;
$end
=
$line
+
$half
<
$lineCount
?
$line
+
$half
:
$lineCount
-
1
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment