mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-06 17:38:29 +02:00
Summary: Ref T8434. Minor cleanup/modernization. I made type selection modal (like Herald, Auth, etc) so we can render the form on the next screen based on the type. {F472519} Test Plan: Created a new source, edited an existing source. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T8434 Differential Revision: https://secure.phabricator.com/D13161
108 lines
2.8 KiB
PHP
108 lines
2.8 KiB
PHP
<?php
|
|
|
|
final class NuanceSourceViewController extends NuanceController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$source = id(new NuanceSourceQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($request->getURIData('id')))
|
|
->executeOne();
|
|
if (!$source) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$source_phid = $source->getPHID();
|
|
|
|
$timeline = $this->buildTransactionTimeline(
|
|
$source,
|
|
new NuanceSourceTransactionQuery());
|
|
$timeline->setShouldTerminate(true);
|
|
|
|
$header = $this->buildHeaderView($source);
|
|
$actions = $this->buildActionView($source);
|
|
$properties = $this->buildPropertyView($source, $actions);
|
|
|
|
$box = id(new PHUIObjectBoxView())
|
|
->setHeader($header)
|
|
->addPropertyList($properties);
|
|
|
|
$title = $source->getName();
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addTextCrumb(pht('Sources'), $this->getApplicationURI('source/'));
|
|
|
|
$crumbs->addTextCrumb($title);
|
|
|
|
return $this->buildApplicationPage(
|
|
array(
|
|
$crumbs,
|
|
$box,
|
|
$timeline,
|
|
),
|
|
array(
|
|
'title' => $title,
|
|
));
|
|
}
|
|
|
|
private function buildHeaderView(NuanceSource $source) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$header = id(new PHUIHeaderView())
|
|
->setUser($viewer)
|
|
->setHeader($source->getName())
|
|
->setPolicyObject($source);
|
|
|
|
return $header;
|
|
}
|
|
|
|
private function buildActionView(NuanceSource $source) {
|
|
$viewer = $this->getViewer();
|
|
$id = $source->getID();
|
|
|
|
$actions = id(new PhabricatorActionListView())
|
|
->setObjectURI($source->getURI())
|
|
->setUser($viewer);
|
|
|
|
$can_edit = PhabricatorPolicyFilter::hasCapability(
|
|
$viewer,
|
|
$source,
|
|
PhabricatorPolicyCapability::CAN_EDIT);
|
|
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Edit Source'))
|
|
->setIcon('fa-pencil')
|
|
->setHref($this->getApplicationURI("source/edit/{$id}/"))
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow(!$can_edit));
|
|
|
|
return $actions;
|
|
}
|
|
|
|
private function buildPropertyView(
|
|
NuanceSource $source,
|
|
PhabricatorActionListView $actions) {
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$properties = id(new PHUIPropertyListView())
|
|
->setUser($viewer)
|
|
->setObject($source)
|
|
->setActionList($actions);
|
|
|
|
$definition = NuanceSourceDefinition::getDefinitionForSource($source);
|
|
$properties->addProperty(
|
|
pht('Source Type'),
|
|
$definition->getName());
|
|
|
|
$descriptions = PhabricatorPolicyQuery::renderPolicyDescriptions(
|
|
$viewer,
|
|
$source);
|
|
|
|
$properties->addProperty(
|
|
pht('Editable By'),
|
|
$descriptions[PhabricatorPolicyCapability::CAN_EDIT]);
|
|
|
|
return $properties;
|
|
}
|
|
}
|