2013-07-28 03:37:17 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PonderQuestionStatusController
|
|
|
|
extends PonderController {
|
|
|
|
|
|
|
|
private $status;
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->status = idx($data, 'status');
|
|
|
|
$this->id = idx($data, 'id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
2013-07-29 02:40:11 +02:00
|
|
|
$viewer = $request->getUser();
|
|
|
|
|
|
|
|
$question = id(new PonderQuestionQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withIDs(array($this->id))
|
|
|
|
->requireCapabilities(
|
|
|
|
array(
|
|
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
|
|
))
|
|
|
|
->executeOne();
|
2013-07-28 03:37:17 +02:00
|
|
|
if (!$question) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ($this->status) {
|
|
|
|
case 'open':
|
2013-07-29 02:52:35 +02:00
|
|
|
$status = PonderQuestionStatus::STATUS_OPEN;
|
2013-07-28 03:37:17 +02:00
|
|
|
break;
|
|
|
|
case 'close':
|
2013-07-29 02:52:35 +02:00
|
|
|
$status = PonderQuestionStatus::STATUS_CLOSED;
|
2013-07-28 03:37:17 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return new Aphront400Response();
|
|
|
|
}
|
|
|
|
|
2013-07-29 02:52:35 +02:00
|
|
|
$xactions = array();
|
|
|
|
$xactions[] = id(new PonderQuestionTransaction())
|
|
|
|
->setTransactionType(PonderQuestionTransaction::TYPE_STATUS)
|
|
|
|
->setNewValue($status);
|
|
|
|
|
|
|
|
$editor = id(new PonderQuestionEditor())
|
|
|
|
->setActor($viewer)
|
|
|
|
->setContentSourceFromRequest($request);
|
|
|
|
|
|
|
|
$editor->applyTransactions($question, $xactions);
|
2013-07-28 03:37:17 +02:00
|
|
|
|
|
|
|
return id(new AphrontRedirectResponse())->setURI('/Q'.$question->getID());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|