Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116357894
AphrontUnhandledExceptionResponse.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jun 6, 09:57
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Jun 8, 09:57 (2 d)
Engine
blob
Format
Raw Data
Handle
26626213
Attached To
rPH Phabricator
AphrontUnhandledExceptionResponse.php
View Options
<?php
final
class
AphrontUnhandledExceptionResponse
extends
AphrontStandaloneHTMLResponse
{
private
$exception
;
private
$showStackTraces
;
public
function
setShowStackTraces
(
$show_stack_traces
)
{
$this
->
showStackTraces
=
$show_stack_traces
;
return
$this
;
}
public
function
getShowStackTraces
()
{
return
$this
->
showStackTraces
;
}
public
function
setException
(
$exception
)
{
// NOTE: We accept an Exception or a Throwable.
// Log the exception unless it's specifically a silent malformed request
// exception.
$should_log
=
true
;
if
(
$exception
instanceof
AphrontMalformedRequestException
)
{
if
(
$exception
->
getIsUnlogged
())
{
$should_log
=
false
;
}
}
if
(
$should_log
)
{
phlog
(
$exception
);
}
$this
->
exception
=
$exception
;
return
$this
;
}
public
function
getHTTPResponseCode
()
{
return
500
;
}
protected
function
getResources
()
{
return
array
(
'css/application/config/config-template.css'
,
'css/application/config/unhandled-exception.css'
,
);
}
protected
function
getResponseTitle
()
{
$ex
=
$this
->
exception
;
if
(
$ex
instanceof
AphrontMalformedRequestException
)
{
return
$ex
->
getTitle
();
}
else
{
return
pht
(
'Unhandled Exception'
);
}
}
protected
function
getResponseBodyClass
()
{
return
'unhandled-exception'
;
}
protected
function
getResponseBody
()
{
$ex
=
$this
->
exception
;
if
(
$ex
instanceof
AphrontMalformedRequestException
)
{
$title
=
$ex
->
getTitle
();
}
else
{
$title
=
get_class
(
$ex
);
}
$body
=
$ex
->
getMessage
();
$body
=
phutil_escape_html_newlines
(
$body
);
$classes
=
array
();
$classes
[]
=
'unhandled-exception-detail'
;
$stack
=
null
;
if
(
$this
->
getShowStackTraces
())
{
try
{
$stack
=
id
(
new
AphrontStackTraceView
())
->
setTrace
(
$ex
->
getTrace
());
$stack
=
hsprintf
(
'%s'
,
$stack
);
$stack
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'unhandled-exception-stack'
,
),
$stack
);
$classes
[]
=
'unhandled-exception-with-stack'
;
}
catch
(
Exception
$trace_exception
)
{
$stack
=
null
;
}
catch
(
Throwable
$trace_exception
)
{
$stack
=
null
;
}
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
implode
(
' '
,
$classes
),
),
array
(
phutil_tag
(
'h1'
,
array
(
'class'
=>
'unhandled-exception-title'
,
),
$title
),
phutil_tag
(
'div'
,
array
(
'class'
=>
'unhandled-exception-body'
,
),
$body
),
$stack
,
));
}
protected
function
buildPlainTextResponseString
()
{
$ex
=
$this
->
exception
;
return
pht
(
'%s: %s'
,
get_class
(
$ex
),
$ex
->
getMessage
());
}
}
Event Timeline
Log In to Comment