Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99165614
PhabricatorXHPASTViewRunController.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
Tue, Jan 21, 21:43
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Jan 23, 21:43 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23726339
Attached To
rPH Phabricator
PhabricatorXHPASTViewRunController.php
View Options
<?php
final
class
PhabricatorXHPASTViewRunController
extends
PhabricatorXHPASTViewController
{
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
if
(
$request
->
isFormPost
())
{
$source
=
$request
->
getStr
(
'source'
);
$future
=
xhpast_get_parser_future
(
$source
);
$resolved
=
$future
->
resolve
();
// This is just to let it throw exceptions if stuff is broken.
$parse_tree
=
XHPASTTree
::
newFromDataAndResolvedExecFuture
(
$source
,
$resolved
);
list
(
$err
,
$stdout
,
$stderr
)
=
$resolved
;
$storage_tree
=
new
PhabricatorXHPASTViewParseTree
();
$storage_tree
->
setInput
(
$source
);
$storage_tree
->
setStdout
(
$stdout
);
$storage_tree
->
setAuthorPHID
(
$user
->
getPHID
());
$storage_tree
->
save
();
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
'/xhpast/view/'
.
$storage_tree
->
getID
().
'/'
);
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$user
)
->
appendChild
(
id
(
new
AphrontFormTextAreaControl
())
->
setLabel
(
'Source'
)
->
setName
(
'source'
)
->
setValue
(
"<?php
\n\n
"
)
->
setHeight
(
AphrontFormTextAreaControl
::
HEIGHT_VERY_TALL
))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
'Parse'
));
$form_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Generate XHP AST'
))
->
setForm
(
$form
);
return
$this
->
buildApplicationPage
(
$form_box
,
array
(
'title'
=>
pht
(
'XHPAST View'
),
));
}
}
Event Timeline
Log In to Comment