mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-24 15:52:41 +01:00
121 lines
3.2 KiB
PHP
121 lines
3.2 KiB
PHP
|
<?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))
|
||
|
->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);
|
||
|
|
||
|
return $this->buildApplicationPage(
|
||
|
array(
|
||
|
$crumbs,
|
||
|
$box,
|
||
|
$timeline,
|
||
|
),
|
||
|
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'))
|
||
|
->setIcon('edit')
|
||
|
->setHref($this->getApplicationURI("edit/{$id}/"))
|
||
|
->setDisabled(!$can_edit)
|
||
|
->setWorkflow(!$can_edit));
|
||
|
|
||
|
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]);
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
}
|