mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
e5bf2ac373
Summary: Run through and update Pholio Test Plan: New Mock, Edit Mock, Inline Comment, Normal Comment, replace mock, view lists. Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13774
84 lines
2.4 KiB
PHP
84 lines
2.4 KiB
PHP
<?php
|
|
|
|
final class PholioMockCommentController extends PholioController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
$id = $request->getURIData('id');
|
|
|
|
if (!$request->isFormPost()) {
|
|
return new Aphront400Response();
|
|
}
|
|
|
|
$mock = id(new PholioMockQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->needImages(true)
|
|
->executeOne();
|
|
|
|
if (!$mock) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$is_preview = $request->isPreviewRequest();
|
|
|
|
$draft = PhabricatorDraft::buildFromRequest($request);
|
|
|
|
$mock_uri = '/M'.$mock->getID();
|
|
|
|
$comment = $request->getStr('comment');
|
|
|
|
$xactions = array();
|
|
|
|
$inline_comments = id(new PholioTransactionComment())->loadAllWhere(
|
|
'authorphid = %s AND transactionphid IS NULL AND imageid IN (%Ld)',
|
|
$viewer->getPHID(),
|
|
mpull($mock->getImages(), 'getID'));
|
|
|
|
if (!$inline_comments || strlen($comment)) {
|
|
$xactions[] = id(new PholioTransaction())
|
|
->setTransactionType(PhabricatorTransactions::TYPE_COMMENT)
|
|
->attachComment(
|
|
id(new PholioTransactionComment())
|
|
->setContent($comment));
|
|
}
|
|
|
|
foreach ($inline_comments as $inline_comment) {
|
|
$xactions[] = id(new PholioTransaction())
|
|
->setTransactionType(PholioTransaction::TYPE_INLINE)
|
|
->attachComment($inline_comment);
|
|
}
|
|
|
|
$editor = id(new PholioMockEditor())
|
|
->setActor($viewer)
|
|
->setContentSourceFromRequest($request)
|
|
->setContinueOnNoEffect($request->isContinueRequest())
|
|
->setIsPreview($is_preview);
|
|
|
|
try {
|
|
$xactions = $editor->applyTransactions($mock, $xactions);
|
|
} catch (PhabricatorApplicationTransactionNoEffectException $ex) {
|
|
return id(new PhabricatorApplicationTransactionNoEffectResponse())
|
|
->setCancelURI($mock_uri)
|
|
->setException($ex);
|
|
}
|
|
|
|
if ($draft) {
|
|
$draft->replaceOrDelete();
|
|
}
|
|
|
|
if ($request->isAjax() && $is_preview) {
|
|
$xaction_view = id(new PholioTransactionView())
|
|
->setMock($mock);
|
|
|
|
return id(new PhabricatorApplicationTransactionResponse())
|
|
->setViewer($viewer)
|
|
->setTransactions($xactions)
|
|
->setTransactionView($xaction_view)
|
|
->setIsPreview($is_preview);
|
|
} else {
|
|
return id(new AphrontRedirectResponse())->setURI($mock_uri);
|
|
}
|
|
}
|
|
|
|
}
|