mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 20:52:43 +01:00
05bd6a1682
Summary: Ref T8320. Use modern/standard UI elements to render package details. Test Plan: {F437131} Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T8320 Differential Revision: https://secure.phabricator.com/D13025
265 lines
7.3 KiB
PHP
265 lines
7.3 KiB
PHP
<?php
|
|
|
|
final class PhabricatorOwnersDetailController
|
|
extends PhabricatorOwnersController {
|
|
|
|
public function shouldAllowPublic() {
|
|
return true;
|
|
}
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$package = id(new PhabricatorOwnersPackageQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($request->getURIData('id')))
|
|
->executeOne();
|
|
if (!$package) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$paths = $package->loadPaths();
|
|
|
|
$repository_phids = array();
|
|
foreach ($paths as $path) {
|
|
$repository_phids[$path->getRepositoryPHID()] = true;
|
|
}
|
|
|
|
if ($repository_phids) {
|
|
$repositories = id(new PhabricatorRepositoryQuery())
|
|
->setViewer($viewer)
|
|
->withPHIDs(array_keys($repository_phids))
|
|
->execute();
|
|
$repositories = mpull($repositories, null, 'getPHID');
|
|
} else {
|
|
$repositories = array();
|
|
}
|
|
|
|
$actions = $this->buildPackageActionView($package);
|
|
$properties = $this->buildPackagePropertyView($package);
|
|
$properties->setActionList($actions);
|
|
|
|
$header = id(new PHUIHeaderView())
|
|
->setUser($viewer)
|
|
->setHeader($package->getName())
|
|
->setPolicyObject($package);
|
|
|
|
$panel = id(new PHUIObjectBoxView())
|
|
->setHeader($header)
|
|
->addPropertyList($properties);
|
|
|
|
$commit_views = array();
|
|
|
|
$commit_uri = id(new PhutilURI('/audit/'))
|
|
->setQueryParams(
|
|
array(
|
|
'auditorPHIDs' => $package->getPHID(),
|
|
));
|
|
|
|
$attention_commits = id(new DiffusionCommitQuery())
|
|
->setViewer($request->getUser())
|
|
->withAuditorPHIDs(array($package->getPHID()))
|
|
->withAuditStatus(DiffusionCommitQuery::AUDIT_STATUS_CONCERN)
|
|
->needCommitData(true)
|
|
->setLimit(10)
|
|
->execute();
|
|
if ($attention_commits) {
|
|
$view = id(new PhabricatorAuditListView())
|
|
->setUser($viewer)
|
|
->setCommits($attention_commits);
|
|
|
|
$commit_views[] = array(
|
|
'view' => $view,
|
|
'header' => pht('Commits in this Package that Need Attention'),
|
|
'button' => id(new PHUIButtonView())
|
|
->setTag('a')
|
|
->setHref($commit_uri->alter('status', 'open'))
|
|
->setText(pht('View All Problem Commits')),
|
|
);
|
|
}
|
|
|
|
$all_commits = id(new DiffusionCommitQuery())
|
|
->setViewer($request->getUser())
|
|
->withAuditorPHIDs(array($package->getPHID()))
|
|
->needCommitData(true)
|
|
->setLimit(100)
|
|
->execute();
|
|
|
|
$view = id(new PhabricatorAuditListView())
|
|
->setUser($viewer)
|
|
->setCommits($all_commits)
|
|
->setNoDataString(pht('No commits in this package.'));
|
|
|
|
$commit_views[] = array(
|
|
'view' => $view,
|
|
'header' => pht('Recent Commits in Package'),
|
|
'button' => id(new PHUIButtonView())
|
|
->setTag('a')
|
|
->setHref($commit_uri)
|
|
->setText(pht('View All Package Commits')),
|
|
);
|
|
|
|
$phids = array();
|
|
foreach ($commit_views as $commit_view) {
|
|
$phids[] = $commit_view['view']->getRequiredHandlePHIDs();
|
|
}
|
|
$phids = array_mergev($phids);
|
|
$handles = $this->loadViewerHandles($phids);
|
|
|
|
$commit_panels = array();
|
|
foreach ($commit_views as $commit_view) {
|
|
$commit_panel = new PHUIObjectBoxView();
|
|
$header = new PHUIHeaderView();
|
|
$header->setHeader($commit_view['header']);
|
|
if (isset($commit_view['button'])) {
|
|
$header->addActionLink($commit_view['button']);
|
|
}
|
|
$commit_view['view']->setHandles($handles);
|
|
$commit_panel->setHeader($header);
|
|
$commit_panel->appendChild($commit_view['view']);
|
|
|
|
$commit_panels[] = $commit_panel;
|
|
}
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addTextCrumb($package->getName());
|
|
|
|
return $this->buildApplicationPage(
|
|
array(
|
|
$crumbs,
|
|
$panel,
|
|
$this->renderPathsTable($paths, $repositories),
|
|
$commit_panels,
|
|
),
|
|
array(
|
|
'title' => $package->getName(),
|
|
));
|
|
}
|
|
|
|
|
|
private function buildPackagePropertyView(PhabricatorOwnersPackage $package) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$view = id(new PHUIPropertyListView())
|
|
->setUser($viewer);
|
|
|
|
$primary_phid = $package->getPrimaryOwnerPHID();
|
|
if ($primary_phid) {
|
|
$primary_owner = $viewer->renderHandle($primary_phid);
|
|
} else {
|
|
$primary_owner = phutil_tag('em', array(), pht('None'));
|
|
}
|
|
$view->addProperty(pht('Primary Owner'), $primary_owner);
|
|
|
|
// TODO: needOwners() this on the Query.
|
|
$owners = $package->loadOwners();
|
|
if ($owners) {
|
|
$owner_list = $viewer->renderHandleList(mpull($owners, 'getUserPHID'));
|
|
} else {
|
|
$owner_list = phutil_tag('em', array(), pht('None'));
|
|
}
|
|
$view->addProperty(pht('Owners'), $owner_list);
|
|
|
|
if ($package->getAuditingEnabled()) {
|
|
$auditing = pht('Enabled');
|
|
} else {
|
|
$auditing = pht('Disabled');
|
|
}
|
|
$view->addProperty(pht('Auditing'), $auditing);
|
|
|
|
$description = $package->getDescription();
|
|
if (strlen($description)) {
|
|
$view->addSectionHeader(pht('Description'));
|
|
$view->addTextContent(
|
|
$output = PhabricatorMarkupEngine::renderOneObject(
|
|
id(new PhabricatorMarkupOneOff())->setContent($description),
|
|
'default',
|
|
$viewer));
|
|
}
|
|
|
|
return $view;
|
|
}
|
|
|
|
private function buildPackageActionView(PhabricatorOwnersPackage $package) {
|
|
$viewer = $this->getViewer();
|
|
|
|
// TODO: Implement this capability.
|
|
$can_edit = true;
|
|
|
|
$id = $package->getID();
|
|
$edit_uri = $this->getApplicationURI("/edit/{$id}/");
|
|
$delete_uri = $this->getApplicationURI("/delete/{$id}/");
|
|
|
|
$view = id(new PhabricatorActionListView())
|
|
->setUser($viewer)
|
|
->setObject($package)
|
|
->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Edit Package'))
|
|
->setIcon('fa-pencil')
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow(!$can_edit)
|
|
->setHref($edit_uri))
|
|
->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Delete Package'))
|
|
->setIcon('fa-times')
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow(true)
|
|
->setHref($delete_uri));
|
|
|
|
return $view;
|
|
}
|
|
|
|
private function renderPathsTable(array $paths, array $repositories) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$rows = array();
|
|
foreach ($paths as $path) {
|
|
$repo = idx($repositories, $path->getRepositoryPHID());
|
|
if (!$repo) {
|
|
continue;
|
|
}
|
|
$href = DiffusionRequest::generateDiffusionURI(
|
|
array(
|
|
'callsign' => $repo->getCallsign(),
|
|
'branch' => $repo->getDefaultBranch(),
|
|
'path' => $path->getPath(),
|
|
'action' => 'browse',
|
|
));
|
|
|
|
$path_link = phutil_tag(
|
|
'a',
|
|
array(
|
|
'href' => (string)$href,
|
|
),
|
|
$path->getPath());
|
|
|
|
$rows[] = array(
|
|
($path->getExcluded() ? '-' : '+'),
|
|
$repo->getName(),
|
|
$path_link,
|
|
);
|
|
}
|
|
|
|
$table = id(new AphrontTableView($rows))
|
|
->setHeaders(
|
|
array(
|
|
null,
|
|
pht('Repository'),
|
|
pht('Path'),
|
|
))
|
|
->setColumnClasses(
|
|
array(
|
|
null,
|
|
null,
|
|
'wide',
|
|
));
|
|
|
|
return id(new PHUIObjectBoxView())
|
|
->setHeaderText(pht('Paths'))
|
|
->appendChild($table);
|
|
|
|
}
|
|
|
|
}
|