mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-28 23:48:19 +01:00
e3daf598fb
Summary: Swap over to modern components, `newPage` and `handleRequest`. Test Plan: `arc lint` :( Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, hach-que Differential Revision: https://secure.phabricator.com/D15571
145 lines
4.1 KiB
PHP
145 lines
4.1 KiB
PHP
<?php
|
|
|
|
final class PhragmentSnapshotViewController extends PhragmentController {
|
|
|
|
public function shouldAllowPublic() {
|
|
return true;
|
|
}
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
$id = $request->getURIData('id');
|
|
|
|
$snapshot = id(new PhragmentSnapshotQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->executeOne();
|
|
if ($snapshot === null) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$box = $this->createSnapshotView($snapshot);
|
|
|
|
$fragment = id(new PhragmentFragmentQuery())
|
|
->setViewer($viewer)
|
|
->withPHIDs(array($snapshot->getPrimaryFragmentPHID()))
|
|
->executeOne();
|
|
if ($fragment === null) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$parents = $this->loadParentFragments($fragment->getPath());
|
|
if ($parents === null) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$crumbs = $this->buildApplicationCrumbsWithPath($parents);
|
|
$crumbs->addTextCrumb(pht('"%s" Snapshot', $snapshot->getName()));
|
|
|
|
$children = id(new PhragmentSnapshotChildQuery())
|
|
->setViewer($viewer)
|
|
->needFragments(true)
|
|
->needFragmentVersions(true)
|
|
->withSnapshotPHIDs(array($snapshot->getPHID()))
|
|
->execute();
|
|
|
|
$list = id(new PHUIObjectItemListView())
|
|
->setUser($viewer);
|
|
|
|
foreach ($children as $child) {
|
|
$item = id(new PHUIObjectItemView())
|
|
->setHeader($child->getFragment()->getPath());
|
|
|
|
if ($child->getFragmentVersion() !== null) {
|
|
$item
|
|
->setHref($child->getFragmentVersion()->getURI())
|
|
->addAttribute(pht(
|
|
'Version %s',
|
|
$child->getFragmentVersion()->getSequence()));
|
|
} else {
|
|
$item
|
|
->setHref($child->getFragment()->getURI())
|
|
->addAttribute(pht('Directory'));
|
|
}
|
|
|
|
$list->addItem($item);
|
|
}
|
|
|
|
$title = pht('View Snapshot');
|
|
|
|
$view = array(
|
|
$this->renderConfigurationWarningIfRequired(),
|
|
$box,
|
|
$list,
|
|
);
|
|
|
|
return $this->newPage()
|
|
->setTitle($title)
|
|
->setCrumbs($crumbs)
|
|
->appendChild($view);
|
|
}
|
|
|
|
protected function createSnapshotView($snapshot) {
|
|
if ($snapshot === null) {
|
|
return null;
|
|
}
|
|
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$header = id(new PHUIHeaderView())
|
|
->setHeader(pht('"%s" Snapshot', $snapshot->getName()))
|
|
->setPolicyObject($snapshot)
|
|
->setUser($viewer);
|
|
|
|
$zip_uri = $this->getApplicationURI(
|
|
'zip@'.$snapshot->getName().
|
|
'/'.$snapshot->getPrimaryFragment()->getPath());
|
|
|
|
$can_edit = PhabricatorPolicyFilter::hasCapability(
|
|
$viewer,
|
|
$snapshot,
|
|
PhabricatorPolicyCapability::CAN_EDIT);
|
|
|
|
$actions = id(new PhabricatorActionListView())
|
|
->setUser($viewer)
|
|
->setObject($snapshot);
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Download Snapshot as ZIP'))
|
|
->setHref($this->isCorrectlyConfigured() ? $zip_uri : null)
|
|
->setDisabled(!$this->isCorrectlyConfigured())
|
|
->setIcon('fa-floppy-o'));
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Delete Snapshot'))
|
|
->setHref($this->getApplicationURI(
|
|
'snapshot/delete/'.$snapshot->getID().'/'))
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow(true)
|
|
->setIcon('fa-times'));
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Promote Another Snapshot to Here'))
|
|
->setHref($this->getApplicationURI(
|
|
'snapshot/promote/'.$snapshot->getID().'/'))
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow(true)
|
|
->setIcon('fa-arrow-up'));
|
|
|
|
$properties = id(new PHUIPropertyListView())
|
|
->setUser($viewer)
|
|
->setObject($snapshot)
|
|
->setActionList($actions);
|
|
|
|
$properties->addProperty(
|
|
pht('Name'),
|
|
$snapshot->getName());
|
|
$properties->addProperty(
|
|
pht('Fragment'),
|
|
$viewer->renderHandle($snapshot->getPrimaryFragmentPHID()));
|
|
|
|
return id(new PHUIObjectBoxView())
|
|
->setHeader($header)
|
|
->addPropertyList($properties);
|
|
}
|
|
}
|