mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
a751073d11
Summary: Ref T1344. Autogenerates a "Backlog" column if one does not exist. Assigns all tasks to the backlog column. For now, this column is always called "Backlog", but we could let it be called other things later. Test Plan: Loaded a project, got a backlog column, created some columns. Reviewers: btrahan, chad Reviewed By: chad CC: aran Maniphest Tasks: T1344 Differential Revision: https://secure.phabricator.com/D7938
138 lines
3.6 KiB
PHP
138 lines
3.6 KiB
PHP
<?php
|
|
|
|
final class PhabricatorProjectBoardEditController
|
|
extends PhabricatorProjectController {
|
|
|
|
private $id;
|
|
private $projectID;
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->projectID = $data['projectID'];
|
|
$this->id = idx($data, 'id');
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$viewer = $request->getUser();
|
|
|
|
$project = id(new PhabricatorProjectQuery())
|
|
->setViewer($viewer)
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
))
|
|
->withIDs(array($this->projectID))
|
|
->executeOne();
|
|
|
|
if (!$project) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$is_new = ($this->id ? false : true);
|
|
|
|
if (!$is_new) {
|
|
$column = id(new PhabricatorProjectColumnQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($this->id))
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
))
|
|
->executeOne();
|
|
if (!$column) {
|
|
return new Aphront404Response();
|
|
}
|
|
} else {
|
|
$column = PhabricatorProjectColumn::initializeNewColumn($viewer);
|
|
}
|
|
|
|
$errors = array();
|
|
$e_name = true;
|
|
$error_view = null;
|
|
$view_uri = $this->getApplicationURI('/board/'.$this->projectID.'/');
|
|
|
|
if ($request->isFormPost()) {
|
|
$new_name = $request->getStr('name');
|
|
$column->setName($new_name);
|
|
|
|
if (!strlen($column->getName())) {
|
|
$errors[] = pht('Column name is required.');
|
|
$e_name = pht('Required');
|
|
} else {
|
|
$e_name = null;
|
|
}
|
|
|
|
if ($is_new) {
|
|
$column->setProjectPHID($project->getPHID());
|
|
$column->attachProject($project);
|
|
|
|
$columns = id(new PhabricatorProjectColumnQuery())
|
|
->setViewer($viewer)
|
|
->withProjectPHIDs(array($project->getPHID()))
|
|
->execute();
|
|
|
|
$new_sequence = 1;
|
|
if ($columns) {
|
|
$values = mpull($columns, 'getSequence');
|
|
$new_sequence = max($values) + 1;
|
|
}
|
|
$column->setSequence($new_sequence);
|
|
}
|
|
|
|
if (!$errors) {
|
|
$column->save();
|
|
return id(new AphrontRedirectResponse())->setURI($view_uri);
|
|
}
|
|
}
|
|
|
|
$form = new AphrontFormView();
|
|
$form->setUser($request->getUser())
|
|
->appendChild(
|
|
id(new AphrontFormTextControl())
|
|
->setValue($column->getName())
|
|
->setLabel(pht('Name'))
|
|
->setName('name')
|
|
->setError($e_name)
|
|
->setCaption(
|
|
pht('This will be displayed as the header of the column.')));
|
|
|
|
if ($is_new) {
|
|
$title = pht('Create Column');
|
|
$submit = pht('Create Column');
|
|
} else {
|
|
$title = pht('Edit %s', $column->getName());
|
|
$submit = pht('Save Column');
|
|
}
|
|
|
|
$form->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->setValue($submit)
|
|
->addCancelButton($view_uri));
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addTextCrumb(
|
|
$project->getName(),
|
|
$this->getApplicationURI('view/'.$project->getID().'/'));
|
|
$crumbs->addTextCrumb(
|
|
pht('Board'),
|
|
$this->getApplicationURI('board/'.$project->getID().'/'));
|
|
$crumbs->addTextCrumb($title);
|
|
|
|
$form_box = id(new PHUIObjectBoxView())
|
|
->setHeaderText($title)
|
|
->setFormErrors($errors)
|
|
->setForm($form);
|
|
|
|
return $this->buildApplicationPage(
|
|
array(
|
|
$crumbs,
|
|
$form_box,
|
|
),
|
|
array(
|
|
'title' => $title,
|
|
'device' => true,
|
|
));
|
|
}
|
|
}
|