Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96312428
PhabricatorApplicationTransactionCommentRemoveController.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
Wed, Dec 25, 02:41
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Dec 27, 02:41 (1 d, 12 h)
Engine
blob
Format
Raw Data
Handle
23147013
Attached To
rPH Phabricator
PhabricatorApplicationTransactionCommentRemoveController.php
View Options
<?php
final
class
PhabricatorApplicationTransactionCommentRemoveController
extends
PhabricatorApplicationTransactionController
{
private
$phid
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
phid
=
$data
[
'phid'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$xaction
=
id
(
new
PhabricatorObjectQuery
())
->
withPHIDs
(
array
(
$this
->
phid
))
->
setViewer
(
$viewer
)
->
executeOne
();
if
(!
$xaction
)
{
return
new
Aphront404Response
();
}
if
(!
$xaction
->
getComment
())
{
return
new
Aphront404Response
();
}
if
(
$xaction
->
getComment
()->
getIsRemoved
())
{
// You can't remove an already-removed comment.
return
new
Aphront400Response
();
}
$obj_phid
=
$xaction
->
getObjectPHID
();
$obj_handle
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$obj_phid
))
->
executeOne
();
if
(
$request
->
isDialogFormPost
())
{
$comment
=
$xaction
->
getApplicationTransactionCommentObject
()
->
setContent
(
''
)
->
setIsRemoved
(
true
);
$editor
=
id
(
new
PhabricatorApplicationTransactionCommentEditor
())
->
setActor
(
$viewer
)
->
setContentSource
(
PhabricatorContentSource
::
newFromRequest
(
$request
))
->
applyEdit
(
$xaction
,
$comment
);
if
(
$request
->
isAjax
())
{
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
array
());
}
else
{
return
id
(
new
AphrontReloadResponse
())->
setURI
(
$obj_handle
->
getURI
());
}
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$viewer
);
$dialog
=
$this
->
newDialog
()
->
setTitle
(
pht
(
'Remove Comment'
));
$dialog
->
addHiddenInput
(
'anchor'
,
$request
->
getStr
(
'anchor'
))
->
appendParagraph
(
pht
(
"Removing a comment prevents anyone (including you) from reading "
.
"it. Removing a comment also hides the comment's edit history "
.
"and prevents it from being edited."
))
->
appendParagraph
(
pht
(
'Really remove this comment?'
));
$dialog
->
addSubmitButton
(
pht
(
'Remove Comment'
))
->
addCancelButton
(
$obj_handle
->
getURI
());
return
$dialog
;
}
}
Event Timeline
Log In to Comment