mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
953ff197bf
Summary: Ref T603. Ref T1279. Further improves transaction and policy support for Herald. - Instead of deleting rules (which wipes out history and can't be undone) allow them to be disabled. - Track disables with transactions. - Gate disables with policy controls. - Show policy and status information in the headers. - Show transaction history on rule detail screens. - Remove the delete controller. - Support disabled queries in the ApplicationSearch. Test Plan: - Enabled and disabled rules. - Searched for enabled/disabled rules. - Verified disabled rules don't activate. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T1279, T603 Differential Revision: https://secure.phabricator.com/D7247
77 lines
2.1 KiB
PHP
77 lines
2.1 KiB
PHP
<?php
|
|
|
|
final class HeraldRuleListController extends HeraldController
|
|
implements PhabricatorApplicationSearchResultsControllerInterface {
|
|
|
|
private $queryKey;
|
|
|
|
public function shouldAllowPublic() {
|
|
return true;
|
|
}
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->queryKey = idx($data, 'queryKey');
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$controller = id(new PhabricatorApplicationSearchController($request))
|
|
->setQueryKey($this->queryKey)
|
|
->setSearchEngine(new HeraldRuleSearchEngine())
|
|
->setNavigation($this->buildSideNavView());
|
|
|
|
return $this->delegateToController($controller);
|
|
}
|
|
|
|
public function renderResultsList(
|
|
array $rules,
|
|
PhabricatorSavedQuery $query) {
|
|
assert_instances_of($rules, 'HeraldRule');
|
|
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$phids = mpull($rules, 'getAuthorPHID');
|
|
$this->loadHandles($phids);
|
|
|
|
$content_type_map = HeraldAdapter::getEnabledAdapterMap($viewer);
|
|
|
|
$list = id(new PHUIObjectItemListView())
|
|
->setUser($viewer);
|
|
foreach ($rules as $rule) {
|
|
$id = $rule->getID();
|
|
|
|
$item = id(new PHUIObjectItemView())
|
|
->setObjectName(pht('Rule %s', $rule->getID()))
|
|
->setHeader($rule->getName())
|
|
->setHref($this->getApplicationURI("rule/{$id}/"));
|
|
|
|
if ($rule->isPersonalRule()) {
|
|
$item->addByline(
|
|
pht(
|
|
'Authored by %s',
|
|
$this->getHandle($rule->getAuthorPHID())->renderLink()));
|
|
} else {
|
|
$item->addIcon('world', pht('Global Rule'));
|
|
}
|
|
|
|
if ($rule->getIsDisabled()) {
|
|
$item->setDisabled(true);
|
|
$item->addIcon('disable-grey', pht('Disabled'));
|
|
}
|
|
|
|
$item->addAction(
|
|
id(new PHUIListItemView())
|
|
->setHref($this->getApplicationURI("history/{$id}/"))
|
|
->setIcon('transcript')
|
|
->setName(pht('Edit Log')));
|
|
|
|
$content_type_name = idx($content_type_map, $rule->getContentType());
|
|
$item->addAttribute(pht('Affects: %s', $content_type_name));
|
|
|
|
$list->addItem($item);
|
|
}
|
|
|
|
return $list;
|
|
}
|
|
|
|
}
|