Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90450990
PhabricatorApplicationTransactionCommentHistoryController.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, Nov 1, 19:31
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Nov 3, 19:31 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22078016
Attached To
rPH Phabricator
PhabricatorApplicationTransactionCommentHistoryController.php
View Options
<?php
final
class
PhabricatorApplicationTransactionCommentHistoryController
extends
PhabricatorApplicationTransactionController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$phid
=
$request
->
getURIData
(
'phid'
);
$xaction
=
id
(
new
PhabricatorObjectQuery
())
->
withPHIDs
(
array
(
$phid
))
->
setViewer
(
$viewer
)
->
executeOne
();
if
(!
$xaction
)
{
return
new
Aphront404Response
();
}
if
(!
$xaction
->
getComment
())
{
// You can't view history of a transaction with no comments.
return
new
Aphront404Response
();
}
if
(
$xaction
->
getComment
()->
getIsRemoved
())
{
// You can't view history of a transaction with a removed comment.
return
new
Aphront400Response
();
}
$comments
=
id
(
new
PhabricatorApplicationTransactionTemplatedCommentQuery
())
->
setViewer
(
$viewer
)
->
setTemplate
(
$xaction
->
getApplicationTransactionCommentObject
())
->
withTransactionPHIDs
(
array
(
$xaction
->
getPHID
()))
->
execute
();
if
(!
$comments
)
{
return
new
Aphront404Response
();
}
$comments
=
msort
(
$comments
,
'getCommentVersion'
);
$xactions
=
array
();
foreach
(
$comments
as
$comment
)
{
$xactions
[]
=
id
(
clone
$xaction
)
->
makeEphemeral
()
->
setCommentVersion
(
$comment
->
getCommentVersion
())
->
setContentSource
(
$comment
->
getContentSource
())
->
setDateCreated
(
$comment
->
getDateCreated
())
->
attachComment
(
$comment
);
}
$obj_phid
=
$xaction
->
getObjectPHID
();
$obj_handle
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$obj_phid
))
->
executeOne
();
$view
=
id
(
new
PhabricatorApplicationTransactionView
())
->
setUser
(
$viewer
)
->
setObjectPHID
(
$obj_phid
)
->
setTransactions
(
$xactions
)
->
setShowEditActions
(
false
)
->
setHideCommentOptions
(
true
);
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$viewer
)
->
setWidth
(
AphrontDialogView
::
WIDTH_FULL
)
->
setFlush
(
true
)
->
setTitle
(
pht
(
'Comment History'
));
$dialog
->
appendChild
(
$view
);
$dialog
->
addCancelButton
(
$obj_handle
->
getURI
());
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment