2014-02-03 19:52:15 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorDashboardViewController
|
|
|
|
extends PhabricatorDashboardController {
|
|
|
|
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = $data['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$viewer = $request->getUser();
|
|
|
|
|
|
|
|
$dashboard = id(new PhabricatorDashboardQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withIDs(array($this->id))
|
2014-04-30 23:28:55 +02:00
|
|
|
->needPanels(true)
|
2014-02-03 19:52:15 +01:00
|
|
|
->executeOne();
|
|
|
|
if (!$dashboard) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$title = $dashboard->getName();
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
|
|
$crumbs->addTextCrumb(pht('Dashboard %d', $dashboard->getID()));
|
|
|
|
|
|
|
|
$header = $this->buildHeaderView($dashboard);
|
|
|
|
$actions = $this->buildActionView($dashboard);
|
|
|
|
$properties = $this->buildPropertyView($dashboard);
|
|
|
|
$timeline = $this->buildTransactions($dashboard);
|
|
|
|
|
|
|
|
$properties->setActionList($actions);
|
|
|
|
$box = id(new PHUIObjectBoxView())
|
|
|
|
->setHeader($header)
|
|
|
|
->addPropertyList($properties);
|
|
|
|
|
2014-04-30 23:29:14 +02:00
|
|
|
$rendered_dashboard = id(new PhabricatorDashboardRenderingEngine())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->setDashboard($dashboard)
|
|
|
|
->renderDashboard();
|
|
|
|
|
2014-02-03 19:52:15 +01:00
|
|
|
return $this->buildApplicationPage(
|
|
|
|
array(
|
|
|
|
$crumbs,
|
|
|
|
$box,
|
|
|
|
$timeline,
|
2014-04-30 23:29:14 +02:00
|
|
|
$rendered_dashboard,
|
2014-02-03 19:52:15 +01:00
|
|
|
),
|
|
|
|
array(
|
|
|
|
'title' => $title,
|
|
|
|
'device' => true,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
private function buildHeaderView(PhabricatorDashboard $dashboard) {
|
|
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
|
|
|
|
return id(new PHUIHeaderView())
|
|
|
|
->setUser($viewer)
|
|
|
|
->setHeader($dashboard->getName())
|
|
|
|
->setPolicyObject($dashboard);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function buildActionView(PhabricatorDashboard $dashboard) {
|
|
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$id = $dashboard->getID();
|
|
|
|
|
|
|
|
$actions = id(new PhabricatorActionListView())
|
|
|
|
->setObjectURI($this->getApplicationURI('view/'.$dashboard->getID().'/'))
|
|
|
|
->setUser($viewer);
|
|
|
|
|
|
|
|
$can_edit = PhabricatorPolicyFilter::hasCapability(
|
|
|
|
$viewer,
|
|
|
|
$dashboard,
|
|
|
|
PhabricatorPolicyCapability::CAN_EDIT);
|
|
|
|
|
|
|
|
$actions->addAction(
|
|
|
|
id(new PhabricatorActionView())
|
|
|
|
->setName(pht('Edit Dashboard'))
|
2014-05-12 19:08:32 +02:00
|
|
|
->setIcon('fa-pencil')
|
2014-02-03 19:52:15 +01:00
|
|
|
->setHref($this->getApplicationURI("edit/{$id}/"))
|
|
|
|
->setDisabled(!$can_edit)
|
|
|
|
->setWorkflow(!$can_edit));
|
|
|
|
|
2014-05-16 04:12:40 +02:00
|
|
|
$actions->addAction(
|
|
|
|
id(new PhabricatorActionView())
|
|
|
|
->setName(pht('Arrange Dashboard'))
|
|
|
|
->setIcon('fa-arrows')
|
|
|
|
->setHref($this->getApplicationURI("arrange/{$id}/"))
|
|
|
|
->setDisabled(!$can_edit)
|
|
|
|
->setWorkflow(!$can_edit));
|
|
|
|
|
2014-05-20 01:09:31 +02:00
|
|
|
$installed_dashboard = id(new PhabricatorDashboardInstall())
|
|
|
|
->loadOneWhere(
|
|
|
|
'objectPHID = %s AND applicationClass = %s',
|
|
|
|
$viewer->getPHID(),
|
|
|
|
'PhabricatorApplicationHome');
|
|
|
|
if ($installed_dashboard &&
|
|
|
|
$installed_dashboard->getDashboardPHID() == $dashboard->getPHID()) {
|
|
|
|
$title_install = pht('Uninstall Dashboard');
|
|
|
|
$href_install = "uninstall/{$id}/";
|
|
|
|
} else {
|
|
|
|
$title_install = pht('Install Dashboard');
|
|
|
|
$href_install = "install/{$id}/";
|
|
|
|
}
|
|
|
|
$actions->addAction(
|
|
|
|
id(new PhabricatorActionView())
|
|
|
|
->setName($title_install)
|
|
|
|
->setIcon('fa-wrench')
|
|
|
|
->setHref($this->getApplicationURI($href_install))
|
|
|
|
->setWorkflow(true));
|
|
|
|
|
2014-04-30 23:28:55 +02:00
|
|
|
$actions->addAction(
|
|
|
|
id(new PhabricatorActionView())
|
|
|
|
->setName(pht('Add Panel'))
|
2014-05-12 19:08:32 +02:00
|
|
|
->setIcon('fa-plus')
|
2014-04-30 23:28:55 +02:00
|
|
|
->setHref($this->getApplicationURI("addpanel/{$id}/"))
|
|
|
|
->setDisabled(!$can_edit)
|
|
|
|
->setWorkflow(true));
|
|
|
|
|
2014-02-03 19:52:15 +01:00
|
|
|
return $actions;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function buildPropertyView(PhabricatorDashboard $dashboard) {
|
|
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
|
|
|
|
$properties = id(new PHUIPropertyListView())
|
|
|
|
->setUser($viewer)
|
|
|
|
->setObject($dashboard);
|
|
|
|
|
|
|
|
$descriptions = PhabricatorPolicyQuery::renderPolicyDescriptions(
|
|
|
|
$viewer,
|
|
|
|
$dashboard);
|
|
|
|
|
|
|
|
$properties->addProperty(
|
|
|
|
pht('Editable By'),
|
|
|
|
$descriptions[PhabricatorPolicyCapability::CAN_EDIT]);
|
|
|
|
|
2014-04-30 23:28:55 +02:00
|
|
|
$panel_phids = $dashboard->getPanelPHIDs();
|
|
|
|
$this->loadHandles($panel_phids);
|
|
|
|
|
|
|
|
$properties->addProperty(
|
|
|
|
pht('Panels'),
|
|
|
|
$this->renderHandlesForPHIDs($panel_phids));
|
|
|
|
|
2014-02-03 19:52:15 +01:00
|
|
|
return $properties;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function buildTransactions(PhabricatorDashboard $dashboard) {
|
|
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
|
|
|
|
$xactions = id(new PhabricatorDashboardTransactionQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withObjectPHIDs(array($dashboard->getPHID()))
|
|
|
|
->execute();
|
|
|
|
|
|
|
|
$engine = id(new PhabricatorMarkupEngine())
|
|
|
|
->setViewer($viewer);
|
|
|
|
|
|
|
|
$timeline = id(new PhabricatorApplicationTransactionView())
|
|
|
|
->setUser($viewer)
|
|
|
|
->setObjectPHID($dashboard->getPHID())
|
|
|
|
->setTransactions($xactions);
|
|
|
|
|
|
|
|
return $timeline;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|