Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97384430
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 4, 08:14
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 6, 08:14 (2 d)
Engine
blob
Format
Raw Data
Handle
23398572
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
(
phutil_tag
(
'pre'
,
array
(),
$out
));
return
$response
;
}
private
function
getDebugFilePath
()
{
$root
=
dirname
(
phutil_get_library_root
(
'phabricator'
));
return
$root
.
'/support/debug.php'
;
}
}
Event Timeline
Log In to Comment