2014-02-03 19:52:15 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorDashboardEditController
|
|
|
|
extends PhabricatorDashboardController {
|
|
|
|
|
2015-07-22 22:27:30 +02:00
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
|
|
$viewer = $request->getViewer();
|
|
|
|
$id = $request->getURIData('id');
|
2014-02-03 19:52:15 +01:00
|
|
|
|
2015-07-22 22:27:30 +02:00
|
|
|
if ($id) {
|
2014-02-03 19:52:15 +01:00
|
|
|
$dashboard = id(new PhabricatorDashboardQuery())
|
|
|
|
->setViewer($viewer)
|
2015-07-22 22:27:30 +02:00
|
|
|
->withIDs(array($id))
|
2014-05-16 04:12:40 +02:00
|
|
|
->needPanels(true)
|
2014-02-03 19:52:15 +01:00
|
|
|
->requireCapabilities(
|
|
|
|
array(
|
|
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
|
|
))
|
|
|
|
->executeOne();
|
|
|
|
if (!$dashboard) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
2015-07-21 21:01:19 +02:00
|
|
|
$v_projects = PhabricatorEdgeQuery::loadDestinationPHIDs(
|
|
|
|
$dashboard->getPHID(),
|
|
|
|
PhabricatorProjectObjectHasProjectEdgeType::EDGECONST);
|
|
|
|
$v_projects = array_reverse($v_projects);
|
2014-02-03 19:52:15 +01:00
|
|
|
$is_new = false;
|
|
|
|
} else {
|
2014-06-22 17:05:27 +02:00
|
|
|
if (!$request->getStr('edit')) {
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
switch ($request->getStr('template')) {
|
|
|
|
case 'empty':
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return $this->processBuildTemplateRequest($request);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return $this->processTemplateRequest($request);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-03 19:52:15 +01:00
|
|
|
$dashboard = PhabricatorDashboard::initializeNewDashboard($viewer);
|
2015-07-21 21:01:19 +02:00
|
|
|
$v_projects = array();
|
2014-02-03 19:52:15 +01:00
|
|
|
$is_new = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
|
|
|
|
|
|
if ($is_new) {
|
|
|
|
$title = pht('Create Dashboard');
|
|
|
|
$header = pht('Create Dashboard');
|
|
|
|
$button = pht('Create Dashboard');
|
|
|
|
$cancel_uri = $this->getApplicationURI();
|
|
|
|
|
2015-05-22 09:27:56 +02:00
|
|
|
$crumbs->addTextCrumb(pht('Create Dashboard'));
|
2014-02-03 19:52:15 +01:00
|
|
|
} else {
|
|
|
|
$id = $dashboard->getID();
|
Make the default view of dashboards be just the dashboard
Summary: Fixes T4985, add manage page, change view page to show only panels. Arguably, PhabricatorDashboardArrangeController is no longer necessary. Also, still trying to figure out if I updated all flows that involve "arrange/{id}". Probably missed some. Also not sure of the Manage Dashboard icon. Please advise.
Test Plan: Create dashboard, add panels, "view/{id}" should show just panels, Manage Dashboard should show timeline and edit links.
Reviewers: #blessed_reviewers, epriestley, chad
Reviewed By: #blessed_reviewers, epriestley
Subscribers: epriestley, Korvin
Maniphest Tasks: T4985
Differential Revision: https://secure.phabricator.com/D9258
2014-05-22 19:59:46 +02:00
|
|
|
$cancel_uri = $this->getApplicationURI('manage/'.$id.'/');
|
2014-02-03 19:52:15 +01:00
|
|
|
|
|
|
|
$title = pht('Edit Dashboard %d', $dashboard->getID());
|
|
|
|
$header = pht('Edit Dashboard "%s"', $dashboard->getName());
|
|
|
|
$button = pht('Save Changes');
|
|
|
|
|
|
|
|
$crumbs->addTextCrumb(pht('Dashboard %d', $id), $cancel_uri);
|
|
|
|
$crumbs->addTextCrumb(pht('Edit'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$v_name = $dashboard->getName();
|
2014-05-16 04:12:40 +02:00
|
|
|
$v_layout_mode = $dashboard->getLayoutConfigObject()->getLayoutMode();
|
2014-02-03 19:52:15 +01:00
|
|
|
$e_name = true;
|
|
|
|
|
|
|
|
$validation_exception = null;
|
2014-06-22 17:05:27 +02:00
|
|
|
if ($request->isFormPost() && $request->getStr('edit')) {
|
2014-02-03 19:52:15 +01:00
|
|
|
$v_name = $request->getStr('name');
|
2014-05-16 04:12:40 +02:00
|
|
|
$v_layout_mode = $request->getStr('layout_mode');
|
2014-05-21 21:23:14 +02:00
|
|
|
$v_view_policy = $request->getStr('viewPolicy');
|
|
|
|
$v_edit_policy = $request->getStr('editPolicy');
|
2015-07-21 21:01:19 +02:00
|
|
|
$v_projects = $request->getArr('projects');
|
2014-02-03 19:52:15 +01:00
|
|
|
|
|
|
|
$xactions = array();
|
|
|
|
|
|
|
|
$type_name = PhabricatorDashboardTransaction::TYPE_NAME;
|
2014-05-16 04:12:40 +02:00
|
|
|
$type_layout_mode = PhabricatorDashboardTransaction::TYPE_LAYOUT_MODE;
|
2014-05-21 21:23:14 +02:00
|
|
|
$type_view_policy = PhabricatorTransactions::TYPE_VIEW_POLICY;
|
|
|
|
$type_edit_policy = PhabricatorTransactions::TYPE_EDIT_POLICY;
|
2014-02-03 19:52:15 +01:00
|
|
|
|
|
|
|
$xactions[] = id(new PhabricatorDashboardTransaction())
|
|
|
|
->setTransactionType($type_name)
|
|
|
|
->setNewValue($v_name);
|
2014-05-16 04:12:40 +02:00
|
|
|
$xactions[] = id(new PhabricatorDashboardTransaction())
|
|
|
|
->setTransactionType($type_layout_mode)
|
|
|
|
->setNewValue($v_layout_mode);
|
2014-05-21 21:23:14 +02:00
|
|
|
$xactions[] = id(new PhabricatorDashboardTransaction())
|
|
|
|
->setTransactionType($type_view_policy)
|
|
|
|
->setNewValue($v_view_policy);
|
|
|
|
$xactions[] = id(new PhabricatorDashboardTransaction())
|
|
|
|
->setTransactionType($type_edit_policy)
|
|
|
|
->setNewValue($v_edit_policy);
|
2014-02-03 19:52:15 +01:00
|
|
|
|
2015-07-21 21:01:19 +02:00
|
|
|
$proj_edge_type = PhabricatorProjectObjectHasProjectEdgeType::EDGECONST;
|
|
|
|
$xactions[] = id(new PhabricatorDashboardTransaction())
|
|
|
|
->setTransactionType(PhabricatorTransactions::TYPE_EDGE)
|
|
|
|
->setMetadataValue('edge:type', $proj_edge_type)
|
|
|
|
->setNewValue(array('=' => array_fuse($v_projects)));
|
|
|
|
|
2014-02-03 19:52:15 +01:00
|
|
|
try {
|
|
|
|
$editor = id(new PhabricatorDashboardTransactionEditor())
|
|
|
|
->setActor($viewer)
|
|
|
|
->setContinueOnNoEffect(true)
|
|
|
|
->setContentSourceFromRequest($request)
|
|
|
|
->applyTransactions($dashboard, $xactions);
|
|
|
|
|
Make the default view of dashboards be just the dashboard
Summary: Fixes T4985, add manage page, change view page to show only panels. Arguably, PhabricatorDashboardArrangeController is no longer necessary. Also, still trying to figure out if I updated all flows that involve "arrange/{id}". Probably missed some. Also not sure of the Manage Dashboard icon. Please advise.
Test Plan: Create dashboard, add panels, "view/{id}" should show just panels, Manage Dashboard should show timeline and edit links.
Reviewers: #blessed_reviewers, epriestley, chad
Reviewed By: #blessed_reviewers, epriestley
Subscribers: epriestley, Korvin
Maniphest Tasks: T4985
Differential Revision: https://secure.phabricator.com/D9258
2014-05-22 19:59:46 +02:00
|
|
|
$uri = $this->getApplicationURI('manage/'.$dashboard->getID().'/');
|
|
|
|
|
2014-05-16 04:12:40 +02:00
|
|
|
return id(new AphrontRedirectResponse())->setURI($uri);
|
2014-02-03 19:52:15 +01:00
|
|
|
} catch (PhabricatorApplicationTransactionValidationException $ex) {
|
|
|
|
$validation_exception = $ex;
|
|
|
|
|
|
|
|
$e_name = $validation_exception->getShortMessage($type_name);
|
2014-05-21 21:23:14 +02:00
|
|
|
|
|
|
|
$dashboard->setViewPolicy($v_view_policy);
|
|
|
|
$dashboard->setEditPolicy($v_edit_policy);
|
2014-02-03 19:52:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-21 21:23:14 +02:00
|
|
|
$policies = id(new PhabricatorPolicyQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->setObject($dashboard)
|
|
|
|
->execute();
|
|
|
|
|
2014-05-16 04:12:40 +02:00
|
|
|
$layout_mode_options =
|
|
|
|
PhabricatorDashboardLayoutConfig::getLayoutModeSelectOptions();
|
2014-02-03 19:52:15 +01:00
|
|
|
$form = id(new AphrontFormView())
|
|
|
|
->setUser($viewer)
|
2014-06-22 17:05:27 +02:00
|
|
|
->addHiddenInput('edit', true)
|
2014-02-03 19:52:15 +01:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
|
|
|
->setLabel(pht('Name'))
|
|
|
|
->setName('name')
|
|
|
|
->setValue($v_name)
|
|
|
|
->setError($e_name))
|
2014-05-21 21:23:14 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormPolicyControl())
|
|
|
|
->setName('viewPolicy')
|
|
|
|
->setPolicyObject($dashboard)
|
|
|
|
->setCapability(PhabricatorPolicyCapability::CAN_VIEW)
|
|
|
|
->setPolicies($policies))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormPolicyControl())
|
|
|
|
->setName('editPolicy')
|
|
|
|
->setPolicyObject($dashboard)
|
|
|
|
->setCapability(PhabricatorPolicyCapability::CAN_EDIT)
|
|
|
|
->setPolicies($policies))
|
2014-05-16 04:12:40 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSelectControl())
|
|
|
|
->setLabel(pht('Layout Mode'))
|
|
|
|
->setName('layout_mode')
|
|
|
|
->setValue($v_layout_mode)
|
2015-07-21 21:01:19 +02:00
|
|
|
->setOptions($layout_mode_options));
|
|
|
|
|
|
|
|
$form->appendControl(
|
|
|
|
id(new AphrontFormTokenizerControl())
|
|
|
|
->setLabel(pht('Projects'))
|
|
|
|
->setName('projects')
|
|
|
|
->setValue($v_projects)
|
|
|
|
->setDatasource(new PhabricatorProjectDatasource()));
|
|
|
|
|
|
|
|
$form->appendChild(
|
2014-02-03 19:52:15 +01:00
|
|
|
id(new AphrontFormSubmitControl())
|
|
|
|
->setValue($button)
|
|
|
|
->addCancelButton($cancel_uri));
|
|
|
|
|
|
|
|
$box = id(new PHUIObjectBoxView())
|
|
|
|
->setHeaderText($header)
|
|
|
|
->setForm($form)
|
|
|
|
->setValidationException($validation_exception);
|
|
|
|
|
|
|
|
return $this->buildApplicationPage(
|
|
|
|
array(
|
|
|
|
$crumbs,
|
|
|
|
$box,
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'title' => $title,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2014-06-22 17:05:27 +02:00
|
|
|
private function processTemplateRequest(AphrontRequest $request) {
|
|
|
|
$viewer = $request->getUser();
|
|
|
|
|
|
|
|
$template_control = id(new AphrontFormRadioButtonControl())
|
|
|
|
->setName(pht('template'))
|
|
|
|
->setValue($request->getStr('template', 'empty'))
|
|
|
|
->addButton(
|
|
|
|
'empty',
|
|
|
|
pht('Empty'),
|
|
|
|
pht('Start with a blank canvas.'))
|
|
|
|
->addButton(
|
|
|
|
'simple',
|
|
|
|
pht('Simple Template'),
|
|
|
|
pht(
|
|
|
|
'Start with a simple dashboard with a welcome message, a feed of '.
|
|
|
|
'recent events, and a few starter panels.'));
|
|
|
|
|
|
|
|
$form = id(new AphrontFormView())
|
|
|
|
->setUser($viewer)
|
|
|
|
->appendRemarkupInstructions(
|
|
|
|
pht('Choose a dashboard template to start with.'))
|
|
|
|
->appendChild($template_control);
|
|
|
|
|
|
|
|
return $this->newDialog()
|
|
|
|
->setTitle(pht('Create Dashboard'))
|
|
|
|
->setWidth(AphrontDialogView::WIDTH_FORM)
|
|
|
|
->appendChild($form->buildLayoutView())
|
|
|
|
->addCancelButton('/dashboard/')
|
|
|
|
->addSubmitButton(pht('Continue'));
|
|
|
|
}
|
|
|
|
|
|
|
|
private function processBuildTemplateRequest(AphrontRequest $request) {
|
|
|
|
$viewer = $request->getUser();
|
|
|
|
$template = $request->getStr('template');
|
|
|
|
|
|
|
|
$bare_panel = PhabricatorDashboardPanel::initializeNewPanel($viewer);
|
|
|
|
$panel_phids = array();
|
|
|
|
|
|
|
|
switch ($template) {
|
|
|
|
case 'simple':
|
|
|
|
$v_name = pht('New Simple Dashboard');
|
|
|
|
|
|
|
|
$welcome_panel = $this->newPanel(
|
|
|
|
$request,
|
|
|
|
$viewer,
|
|
|
|
'text',
|
|
|
|
pht('Welcome'),
|
|
|
|
array(
|
|
|
|
'text' => pht(
|
|
|
|
"This is a simple template dashboard. You can edit this panel ".
|
|
|
|
"to change this text and replace it with a welcome message, or ".
|
|
|
|
"leave this placeholder text as-is to give your dashboard a ".
|
2015-05-22 09:27:56 +02:00
|
|
|
"rustic, authentic feel.\n\n".
|
2014-06-22 17:05:27 +02:00
|
|
|
"You can drag, remove, add, and edit panels to customize the ".
|
2015-05-22 09:27:56 +02:00
|
|
|
"rest of this dashboard to show the information you want.\n\n".
|
2014-06-22 17:05:27 +02:00
|
|
|
"To install this dashboard on the home page, use the ".
|
|
|
|
"**Install Dashboard** action link above."),
|
|
|
|
));
|
|
|
|
$panel_phids[] = $welcome_panel->getPHID();
|
|
|
|
|
|
|
|
$feed_panel = $this->newPanel(
|
|
|
|
$request,
|
|
|
|
$viewer,
|
|
|
|
'query',
|
|
|
|
pht('Recent Activity'),
|
|
|
|
array(
|
|
|
|
'class' => 'PhabricatorFeedSearchEngine',
|
|
|
|
'key' => 'all',
|
|
|
|
));
|
|
|
|
$panel_phids[] = $feed_panel->getPHID();
|
|
|
|
|
|
|
|
$task_panel = $this->newPanel(
|
|
|
|
$request,
|
|
|
|
$viewer,
|
|
|
|
'query',
|
|
|
|
pht('Recent Tasks'),
|
|
|
|
array(
|
|
|
|
'class' => 'ManiphestTaskSearchEngine',
|
|
|
|
'key' => 'all',
|
|
|
|
));
|
|
|
|
$panel_phids[] = $task_panel->getPHID();
|
|
|
|
|
|
|
|
$commit_panel = $this->newPanel(
|
|
|
|
$request,
|
|
|
|
$viewer,
|
|
|
|
'query',
|
|
|
|
pht('Recent Commits'),
|
|
|
|
array(
|
|
|
|
'class' => 'PhabricatorCommitSearchEngine',
|
|
|
|
'key' => 'all',
|
|
|
|
));
|
|
|
|
$panel_phids[] = $commit_panel->getPHID();
|
|
|
|
|
|
|
|
$mode_2_and_1 = PhabricatorDashboardLayoutConfig::MODE_THIRDS_AND_THIRD;
|
|
|
|
$layout = id(new PhabricatorDashboardLayoutConfig())
|
|
|
|
->setLayoutMode($mode_2_and_1)
|
|
|
|
->setPanelLocation(0, $welcome_panel->getPHID())
|
|
|
|
->setPanelLocation(0, $task_panel->getPHID())
|
|
|
|
->setPanelLocation(0, $commit_panel->getPHID())
|
|
|
|
->setPanelLocation(1, $feed_panel->getPHID());
|
|
|
|
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Exception(pht('Unknown dashboard template %s!', $template));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the dashboard.
|
|
|
|
|
|
|
|
$dashboard = PhabricatorDashboard::initializeNewDashboard($viewer)
|
|
|
|
->setLayoutConfigFromObject($layout);
|
|
|
|
|
|
|
|
$xactions = array();
|
|
|
|
|
|
|
|
$xactions[] = id(new PhabricatorDashboardTransaction())
|
|
|
|
->setTransactionType(PhabricatorDashboardTransaction::TYPE_NAME)
|
|
|
|
->setNewValue($v_name);
|
|
|
|
|
|
|
|
$xactions[] = id(new PhabricatorDashboardTransaction())
|
|
|
|
->setTransactionType(PhabricatorTransactions::TYPE_EDGE)
|
|
|
|
->setMetadataValue(
|
|
|
|
'edge:type',
|
2015-01-02 00:11:59 +01:00
|
|
|
PhabricatorDashboardDashboardHasPanelEdgeType::EDGECONST)
|
2014-06-22 17:05:27 +02:00
|
|
|
->setNewValue(
|
|
|
|
array(
|
|
|
|
'+' => array_fuse($panel_phids),
|
|
|
|
));
|
|
|
|
|
|
|
|
$editor = id(new PhabricatorDashboardTransactionEditor())
|
|
|
|
->setActor($viewer)
|
|
|
|
->setContinueOnNoEffect(true)
|
|
|
|
->setContentSourceFromRequest($request)
|
|
|
|
->applyTransactions($dashboard, $xactions);
|
|
|
|
|
|
|
|
$manage_uri = $this->getApplicationURI('manage/'.$dashboard->getID().'/');
|
|
|
|
|
|
|
|
return id(new AphrontRedirectResponse())
|
|
|
|
->setURI($manage_uri);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function newPanel(
|
|
|
|
AphrontRequest $request,
|
|
|
|
PhabricatorUser $viewer,
|
|
|
|
$type,
|
|
|
|
$name,
|
|
|
|
array $properties) {
|
|
|
|
|
|
|
|
$panel = PhabricatorDashboardPanel::initializeNewPanel($viewer)
|
|
|
|
->setPanelType($type)
|
|
|
|
->setProperties($properties);
|
|
|
|
|
|
|
|
$xactions = array();
|
|
|
|
|
|
|
|
$xactions[] = id(new PhabricatorDashboardPanelTransaction())
|
|
|
|
->setTransactionType(PhabricatorDashboardPanelTransaction::TYPE_NAME)
|
|
|
|
->setNewValue($name);
|
|
|
|
|
|
|
|
$editor = id(new PhabricatorDashboardPanelTransactionEditor())
|
|
|
|
->setActor($viewer)
|
|
|
|
->setContinueOnNoEffect(true)
|
|
|
|
->setContentSourceFromRequest($request)
|
|
|
|
->applyTransactions($panel, $xactions);
|
|
|
|
|
|
|
|
return $panel;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-03 19:52:15 +01:00
|
|
|
}
|