2014-01-13 21:24:36 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorProjectMoveController
|
|
|
|
extends PhabricatorProjectController {
|
|
|
|
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = $data['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$viewer = $request->getUser();
|
|
|
|
|
2014-01-13 21:24:50 +01:00
|
|
|
$column_phid = $request->getStr('columnPHID');
|
|
|
|
$object_phid = $request->getStr('objectPHID');
|
|
|
|
$after_phid = $request->getStr('afterPHID');
|
|
|
|
|
2014-01-13 21:24:36 +01:00
|
|
|
$project = id(new PhabricatorProjectQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->requireCapabilities(
|
|
|
|
array(
|
|
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
|
|
))
|
|
|
|
->withIDs(array($this->id))
|
|
|
|
->executeOne();
|
|
|
|
if (!$project) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
2014-01-13 21:24:50 +01:00
|
|
|
// NOTE: I'm not requiring EDIT on the object for now, since we require
|
|
|
|
// EDIT on the project anyway and this relationship is more owned by the
|
|
|
|
// project than the object. Maybe this is worth revisiting eventually.
|
|
|
|
|
|
|
|
$object = id(new PhabricatorObjectQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withPHIDs(array($object_phid))
|
|
|
|
->executeOne();
|
|
|
|
|
|
|
|
if (!$object) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$columns = id(new PhabricatorProjectColumnQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withProjectPHIDs(array($project->getPHID()))
|
|
|
|
->execute();
|
|
|
|
|
|
|
|
$columns = mpull($columns, null, 'getPHID');
|
2014-03-04 00:58:00 +01:00
|
|
|
$column = idx($columns, $column_phid);
|
|
|
|
if (!$column) {
|
2014-01-13 21:24:50 +01:00
|
|
|
// User is trying to drop this object into a nonexistent column, just kick
|
|
|
|
// them out.
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
2014-03-04 00:58:00 +01:00
|
|
|
$xactions = array();
|
|
|
|
|
2014-01-13 21:24:50 +01:00
|
|
|
$edge_type = PhabricatorEdgeConfig::TYPE_OBJECT_HAS_COLUMN;
|
|
|
|
|
|
|
|
$query = id(new PhabricatorEdgeQuery())
|
|
|
|
->withSourcePHIDs(array($object->getPHID()))
|
|
|
|
->withEdgeTypes(array($edge_type))
|
|
|
|
->withDestinationPHIDs(array_keys($columns));
|
|
|
|
|
|
|
|
$query->execute();
|
|
|
|
|
|
|
|
$edge_phids = $query->getDestinationPHIDs();
|
|
|
|
|
2014-03-04 00:58:00 +01:00
|
|
|
$xactions[] = id(new ManiphestTransaction())
|
|
|
|
->setTransactionType(ManiphestTransaction::TYPE_PROJECT_COLUMN)
|
|
|
|
->setNewValue(array(
|
|
|
|
'columnPHIDs' => array($column->getPHID()),
|
|
|
|
'projectPHID' => $column->getProjectPHID()))
|
|
|
|
->setOldValue(array(
|
|
|
|
'columnPHIDs' => $edge_phids,
|
|
|
|
'projectPHID' => $column->getProjectPHID()));
|
2014-01-13 21:24:50 +01:00
|
|
|
|
2014-02-27 18:39:59 +01:00
|
|
|
if ($after_phid) {
|
|
|
|
$after_task = id(new ManiphestTaskQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withPHIDs(array($after_phid))
|
|
|
|
->requireCapabilities(array(PhabricatorPolicyCapability::CAN_EDIT))
|
|
|
|
->executeOne();
|
|
|
|
if (!$after_task) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
$after_pri = $after_task->getPriority();
|
|
|
|
$after_sub = $after_task->getSubpriority();
|
|
|
|
|
2014-03-04 00:58:00 +01:00
|
|
|
$xactions[] = id(new ManiphestTransaction())
|
2014-02-27 18:39:59 +01:00
|
|
|
->setTransactionType(ManiphestTransaction::TYPE_SUBPRIORITY)
|
|
|
|
->setNewValue(array(
|
|
|
|
'newPriority' => $after_pri,
|
2014-03-04 00:58:00 +01:00
|
|
|
'newSubpriorityBase' => $after_sub));
|
2014-01-13 21:24:50 +01:00
|
|
|
}
|
|
|
|
|
2014-03-04 00:58:00 +01:00
|
|
|
$editor = id(new ManiphestTransactionEditor())
|
2014-01-13 21:24:50 +01:00
|
|
|
->setActor($viewer)
|
2014-03-04 00:58:00 +01:00
|
|
|
->setContinueOnMissingFields(true)
|
|
|
|
->setContinueOnNoEffect(true)
|
|
|
|
->setContentSourceFromRequest($request);
|
2014-01-13 21:24:50 +01:00
|
|
|
|
2014-03-04 00:58:00 +01:00
|
|
|
$editor->applyTransactions($object, $xactions);
|
2014-01-13 21:24:50 +01:00
|
|
|
|
2014-03-05 02:01:33 +01:00
|
|
|
$owner = null;
|
|
|
|
if ($object->getOwnerPHID()) {
|
|
|
|
$owner = id(new PhabricatorHandleQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withPHIDs(array($object->getOwnerPHID()))
|
|
|
|
->executeOne();
|
|
|
|
}
|
|
|
|
$card = id(new ProjectBoardTaskCard())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->setTask($object)
|
|
|
|
->setOwner($owner)
|
|
|
|
->setCanEdit(true)
|
|
|
|
->getItem();
|
|
|
|
|
|
|
|
return id(new AphrontAjaxResponse())->setContent(
|
|
|
|
array('task' => $card));
|
|
|
|
}
|
2014-01-13 21:24:50 +01:00
|
|
|
|
2014-01-13 21:24:36 +01:00
|
|
|
}
|