mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 11:12:42 +01:00
2cf9ded878
Summary: Self explanatory. Test Plan: `arc lint` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D13863
107 lines
3.1 KiB
PHP
107 lines
3.1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorProjectColumnHideController
|
|
extends PhabricatorProjectBoardController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
$id = $request->getURIData('id');
|
|
$project_id = $request->getURIData('projectID');
|
|
|
|
$project = id(new PhabricatorProjectQuery())
|
|
->setViewer($viewer)
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
))
|
|
->withIDs(array($project_id))
|
|
->executeOne();
|
|
|
|
if (!$project) {
|
|
return new Aphront404Response();
|
|
}
|
|
$this->setProject($project);
|
|
|
|
$column = id(new PhabricatorProjectColumnQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
))
|
|
->executeOne();
|
|
if (!$column) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$column_phid = $column->getPHID();
|
|
|
|
$view_uri = $this->getApplicationURI('/board/'.$project_id.'/');
|
|
$view_uri = new PhutilURI($view_uri);
|
|
foreach ($request->getPassthroughRequestData() as $key => $value) {
|
|
$view_uri->setQueryParam($key, $value);
|
|
}
|
|
|
|
if ($column->isDefaultColumn()) {
|
|
return $this->newDialog()
|
|
->setTitle(pht('Can Not Hide Default Column'))
|
|
->appendParagraph(
|
|
pht('You can not hide the default/backlog column on a board.'))
|
|
->addCancelButton($view_uri, pht('Okay'));
|
|
}
|
|
|
|
if ($request->isFormPost()) {
|
|
if ($column->isHidden()) {
|
|
$new_status = PhabricatorProjectColumn::STATUS_ACTIVE;
|
|
} else {
|
|
$new_status = PhabricatorProjectColumn::STATUS_HIDDEN;
|
|
}
|
|
|
|
$type_status = PhabricatorProjectColumnTransaction::TYPE_STATUS;
|
|
$xactions = array(
|
|
id(new PhabricatorProjectColumnTransaction())
|
|
->setTransactionType($type_status)
|
|
->setNewValue($new_status),
|
|
);
|
|
|
|
$editor = id(new PhabricatorProjectColumnTransactionEditor())
|
|
->setActor($viewer)
|
|
->setContinueOnNoEffect(true)
|
|
->setContentSourceFromRequest($request)
|
|
->applyTransactions($column, $xactions);
|
|
|
|
return id(new AphrontRedirectResponse())->setURI($view_uri);
|
|
}
|
|
|
|
if ($column->isHidden()) {
|
|
$title = pht('Show Column');
|
|
} else {
|
|
$title = pht('Hide Column');
|
|
}
|
|
|
|
if ($column->isHidden()) {
|
|
$body = pht(
|
|
'Are you sure you want to show this column?');
|
|
} else {
|
|
$body = pht(
|
|
'Are you sure you want to hide this column? It will no longer '.
|
|
'appear on the workboard.');
|
|
}
|
|
|
|
$dialog = $this->newDialog()
|
|
->setWidth(AphrontDialogView::WIDTH_FORM)
|
|
->setTitle($title)
|
|
->appendChild($body)
|
|
->setDisableWorkflowOnCancel(true)
|
|
->addCancelButton($view_uri)
|
|
->addSubmitButton($title);
|
|
|
|
foreach ($request->getPassthroughRequestData() as $key => $value) {
|
|
$dialog->addHiddenInput($key, $value);
|
|
}
|
|
|
|
return $dialog;
|
|
}
|
|
}
|