mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 20:22:46 +01:00
68374aa264
Summary: Fixes T12068. These are inbound messages, not outbound. Test Plan: Read carefully. Reviewers: chad Reviewed By: chad Maniphest Tasks: T12068 Differential Revision: https://secure.phabricator.com/D17144
83 lines
2.4 KiB
PHP
83 lines
2.4 KiB
PHP
<?php
|
|
|
|
final class PhabricatorApplicationTransactionCommentRawController
|
|
extends PhabricatorApplicationTransactionController {
|
|
|
|
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 a raw comment if there is no comment.
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
if ($xaction->getComment()->getIsRemoved()) {
|
|
// You can't view a raw comment if the comment is deleted.
|
|
return new Aphront400Response();
|
|
}
|
|
|
|
$obj_phid = $xaction->getObjectPHID();
|
|
$obj_handle = id(new PhabricatorHandleQuery())
|
|
->setViewer($viewer)
|
|
->withPHIDs(array($obj_phid))
|
|
->executeOne();
|
|
|
|
$title = pht('Raw Comment');
|
|
$body = $xaction->getComment()->getContent();
|
|
$addendum = null;
|
|
if ($request->getExists('email')) {
|
|
$content_source = $xaction->getContentSource();
|
|
$source_email = PhabricatorEmailContentSource::SOURCECONST;
|
|
if ($content_source->getSource() == $source_email) {
|
|
$source_id = $content_source->getContentSourceParameter('id');
|
|
if ($source_id) {
|
|
$message = id(new PhabricatorMetaMTAReceivedMail())->loadOneWhere(
|
|
'id = %d',
|
|
$source_id);
|
|
if ($message) {
|
|
$title = pht('Email Body Text');
|
|
$body = $message->getRawTextBody();
|
|
$details_text = pht(
|
|
'For full details, run `/bin/mail show-inbound --id %d`',
|
|
$source_id);
|
|
$addendum = new PHUIRemarkupView($viewer, $details_text);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$dialog = id(new AphrontDialogView())
|
|
->setUser($viewer)
|
|
->addCancelButton($obj_handle->getURI())
|
|
->setTitle($title);
|
|
|
|
$dialog
|
|
->addHiddenInput('anchor', $request->getStr('anchor'))
|
|
->appendChild(
|
|
id(new PHUIFormLayoutView())
|
|
->setFullWidth(true)
|
|
->appendChild(
|
|
id(new AphrontFormTextAreaControl())
|
|
->setReadOnly(true)
|
|
->setValue($body)));
|
|
if ($addendum) {
|
|
$dialog->appendParagraph($addendum);
|
|
}
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
}
|
|
|
|
public function shouldAllowPublic() {
|
|
return true;
|
|
}
|
|
|
|
}
|