2013-09-05 22:11:02 +02:00
|
|
|
<?php
|
|
|
|
|
2014-07-10 00:12:48 +02:00
|
|
|
final class PhabricatorFileCommentController extends PhabricatorFileController {
|
2013-09-05 22:11:02 +02:00
|
|
|
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = idx($data, 'id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
if (!$request->isFormPost()) {
|
|
|
|
return new Aphront400Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$file = id(new PhabricatorFileQuery())
|
|
|
|
->setViewer($user)
|
|
|
|
->withIDs(array($this->id))
|
|
|
|
->executeOne();
|
|
|
|
if (!$file) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$is_preview = $request->isPreviewRequest();
|
|
|
|
$draft = PhabricatorDraft::buildFromRequest($request);
|
|
|
|
|
|
|
|
$view_uri = $file->getInfoURI();
|
|
|
|
|
|
|
|
$xactions = array();
|
|
|
|
$xactions[] = id(new PhabricatorFileTransaction())
|
|
|
|
->setTransactionType(PhabricatorTransactions::TYPE_COMMENT)
|
|
|
|
->attachComment(
|
|
|
|
id(new PhabricatorFileTransactionComment())
|
|
|
|
->setContent($request->getStr('comment')));
|
|
|
|
|
|
|
|
$editor = id(new PhabricatorFileEditor())
|
|
|
|
->setActor($user)
|
|
|
|
->setContinueOnNoEffect($request->isContinueRequest())
|
|
|
|
->setContentSourceFromRequest($request)
|
|
|
|
->setIsPreview($is_preview);
|
|
|
|
|
|
|
|
try {
|
|
|
|
$xactions = $editor->applyTransactions($file, $xactions);
|
|
|
|
} catch (PhabricatorApplicationTransactionNoEffectException $ex) {
|
|
|
|
return id(new PhabricatorApplicationTransactionNoEffectResponse())
|
|
|
|
->setCancelURI($view_uri)
|
|
|
|
->setException($ex);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($draft) {
|
|
|
|
$draft->replaceOrDelete();
|
|
|
|
}
|
|
|
|
|
2014-06-21 21:50:40 +02:00
|
|
|
if ($request->isAjax() && $is_preview) {
|
2013-09-05 22:11:02 +02:00
|
|
|
return id(new PhabricatorApplicationTransactionResponse())
|
|
|
|
->setViewer($user)
|
|
|
|
->setTransactions($xactions)
|
2014-09-16 21:12:35 +02:00
|
|
|
->setIsPreview($is_preview);
|
2013-09-05 22:11:02 +02:00
|
|
|
} else {
|
|
|
|
return id(new AphrontRedirectResponse())
|
|
|
|
->setURI($view_uri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|