mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 12:12:43 +01:00
b5bd4c65c2
Summary: Updates Transactions for handleRequest Test Plan: Leave Comment, View Raw, Delete, Quote, etc. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T8628 Differential Revision: https://secure.phabricator.com/D14629
82 lines
2.3 KiB
PHP
82 lines
2.3 KiB
PHP
<?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);
|
|
}
|
|
|
|
}
|