mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-08 13:51:02 +01:00
44f18cfb12
Summary: Updates Projects to use handleRequest Test Plan: New Project, Edit Project, Archive, Watch, Create Workboards, Import Workboards, Edit Column, New Column, Change Icon, Add/Remove Members Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D13829
133 lines
3.5 KiB
PHP
133 lines
3.5 KiB
PHP
<?php
|
|
|
|
final class PhabricatorProjectColumnDetailController
|
|
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,
|
|
))
|
|
->withIDs(array($project_id))
|
|
->needImages(true)
|
|
->executeOne();
|
|
|
|
if (!$project) {
|
|
return new Aphront404Response();
|
|
}
|
|
$this->setProject($project);
|
|
|
|
$column = id(new PhabricatorProjectColumnQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
))
|
|
->executeOne();
|
|
if (!$column) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$timeline = $this->buildTransactionTimeline(
|
|
$column,
|
|
new PhabricatorProjectColumnTransactionQuery());
|
|
$timeline->setShouldTerminate(true);
|
|
|
|
$title = pht('%s', $column->getDisplayName());
|
|
|
|
$header = $this->buildHeaderView($column);
|
|
$actions = $this->buildActionView($column);
|
|
$properties = $this->buildPropertyView($column, $actions);
|
|
|
|
$box = id(new PHUIObjectBoxView())
|
|
->setHeader($header)
|
|
->addPropertyList($properties);
|
|
|
|
$nav = $this->buildIconNavView($project);
|
|
$nav->appendChild($box);
|
|
$nav->appendChild($timeline);
|
|
|
|
return $this->buildApplicationPage(
|
|
$nav,
|
|
array(
|
|
'title' => $title,
|
|
));
|
|
}
|
|
|
|
private function buildHeaderView(PhabricatorProjectColumn $column) {
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$header = id(new PHUIHeaderView())
|
|
->setUser($viewer)
|
|
->setHeader($column->getDisplayName())
|
|
->setPolicyObject($column);
|
|
|
|
if ($column->isHidden()) {
|
|
$header->setStatus('fa-ban', 'dark', pht('Hidden'));
|
|
}
|
|
|
|
return $header;
|
|
}
|
|
|
|
private function buildActionView(PhabricatorProjectColumn $column) {
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$id = $column->getID();
|
|
$project_id = $this->getProject()->getID();
|
|
$base_uri = '/board/'.$project_id.'/';
|
|
|
|
$actions = id(new PhabricatorActionListView())
|
|
->setObjectURI($this->getApplicationURI($base_uri.'column/'.$id.'/'))
|
|
->setUser($viewer);
|
|
|
|
$can_edit = PhabricatorPolicyFilter::hasCapability(
|
|
$viewer,
|
|
$column,
|
|
PhabricatorPolicyCapability::CAN_EDIT);
|
|
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Edit Column'))
|
|
->setIcon('fa-pencil')
|
|
->setHref($this->getApplicationURI($base_uri.'edit/'.$id.'/'))
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow(!$can_edit));
|
|
|
|
return $actions;
|
|
}
|
|
|
|
private function buildPropertyView(
|
|
PhabricatorProjectColumn $column,
|
|
PhabricatorActionListView $actions) {
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$properties = id(new PHUIPropertyListView())
|
|
->setUser($viewer)
|
|
->setObject($column)
|
|
->setActionList($actions);
|
|
|
|
$descriptions = PhabricatorPolicyQuery::renderPolicyDescriptions(
|
|
$viewer,
|
|
$column);
|
|
|
|
$properties->addProperty(
|
|
pht('Editable By'),
|
|
$descriptions[PhabricatorPolicyCapability::CAN_EDIT]);
|
|
|
|
|
|
$limit = $column->getPointLimit();
|
|
$properties->addProperty(
|
|
pht('Point Limit'),
|
|
$limit ? $limit : pht('No Limit'));
|
|
|
|
return $properties;
|
|
}
|
|
|
|
}
|