Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98254453
PhabricatorDebugController.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
Sat, Jan 11, 12:13
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 13, 12:13 (2 d)
Engine
blob
Format
Raw Data
Handle
23503461
Attached To
rPH Phabricator
PhabricatorDebugController.php
View Options
<?php
/**
* This controller eases debugging of application problems that don't repro
* locally by allowing installs to add arbitrary debugging code easily. To use
* it:
*
* - Write some diagnostic script.
* - Instruct the user to install it in `/support/debug.php`.
* - Tell them to visit `/debug/`.
*/
final
class
PhabricatorDebugController
extends
PhabricatorController
{
public
function
shouldRequireLogin
()
{
return
false
;
}
public
function
processRequest
()
{
if
(!
Filesystem
::
pathExists
(
$this
->
getDebugFilePath
()))
{
return
new
Aphront404Response
();
}
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
ob_start
();
require_once
$this
->
getDebugFilePath
();
$out
=
ob_get_clean
();
$response
=
new
AphrontWebpageResponse
();
$response
->
setContent
(
hsprintf
(
'<pre>%s</pre>'
,
$out
));
return
$response
;
}
private
function
getDebugFilePath
()
{
$root
=
dirname
(
phutil_get_library_root
(
'phabricator'
));
return
$root
.
'/support/debug.php'
;
}
}
Event Timeline
Log In to Comment