Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98196557
PhabricatorMacroCommentController.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, Jan 10, 22:56
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 12, 22:56 (2 d)
Engine
blob
Format
Raw Data
Handle
23529177
Attached To
rPH Phabricator
PhabricatorMacroCommentController.php
View Options
<?php
final
class
PhabricatorMacroCommentController
extends
PhabricatorMacroController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
idx
(
$data
,
'id'
);
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
if
(!
$request
->
isFormPost
())
{
return
new
Aphront400Response
();
}
$macro
=
id
(
new
PhabricatorFileImageMacro
())->
load
(
$this
->
id
);
if
(!
$macro
)
{
return
new
Aphront404Response
();
}
$view_uri
=
$this
->
getApplicationURI
(
'/view/'
.
$macro
->
getID
().
'/'
);
$xactions
=
array
();
$xactions
[]
=
id
(
new
PhabricatorMacroTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_COMMENT
)
->
attachComment
(
id
(
new
PhabricatorMacroTransactionComment
())
->
setContent
(
$request
->
getStr
(
'comment'
)));
$editor
=
id
(
new
PhabricatorMacroEditor
())
->
setActor
(
$user
)
->
setContentSource
(
PhabricatorContentSource
::
newForSource
(
PhabricatorContentSource
::
SOURCE_WEB
,
array
(
'ip'
=>
$request
->
getRemoteAddr
(),
)))
->
applyTransactions
(
$macro
,
$xactions
);
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
$view_uri
);
}
}
Event Timeline
Log In to Comment