mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
69523d30cc
Summary: Ref T2217. All the reads route through new code already, start swapping writes over. This is the simplest writer, used when the user drag-and-drops stuff on the task list. Test Plan: Dragged and dropped stuff across priorities. Got a transaction and some email. Verified the email and transaction looked OK, threaded properly, etc. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2217 Differential Revision: https://secure.phabricator.com/D7080
61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group maniphest
|
|
*/
|
|
final class ManiphestSubpriorityController extends ManiphestController {
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
|
|
if (!$request->validateCSRF()) {
|
|
return new Aphront403Response();
|
|
}
|
|
|
|
$task = id(new ManiphestTask())->load($request->getInt('task'));
|
|
if (!$task) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
if ($request->getInt('after')) {
|
|
$after_task = id(new ManiphestTask())->load($request->getInt('after'));
|
|
if (!$after_task) {
|
|
return new Aphront404Response();
|
|
}
|
|
$after_pri = $after_task->getPriority();
|
|
$after_sub = $after_task->getSubpriority();
|
|
} else {
|
|
$after_pri = $request->getInt('priority');
|
|
$after_sub = null;
|
|
}
|
|
|
|
$new_sub = ManiphestTransactionEditor::getNextSubpriority(
|
|
$after_pri,
|
|
$after_sub);
|
|
|
|
$task->setSubpriority($new_sub);
|
|
|
|
if ($after_pri != $task->getPriority()) {
|
|
$xactions = array();
|
|
$xactions[] = id(new ManiphestTransactionPro())
|
|
->setTransactionType(ManiphestTransactionPro::TYPE_PRIORITY)
|
|
->setNewValue($after_pri);
|
|
|
|
$editor = id(new ManiphestTransactionEditorPro())
|
|
->setActor($user)
|
|
->setContinueOnNoEffect($request->isContinueRequest())
|
|
->setContentSourceFromRequest($request);
|
|
|
|
$editor->applyTransactions($task, $xactions);
|
|
} else {
|
|
$task->save();
|
|
}
|
|
|
|
return id(new AphrontAjaxResponse())->setContent(
|
|
array(
|
|
'tasks' => $this->renderSingleTask($task),
|
|
));
|
|
}
|
|
|
|
}
|