mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 09:22:40 +01:00
86c399b657
Summary: Ref T5655. Some discussion in D9839. Generally speaking, `Phabricator{$name}Application` is clearer than `PhabricatorApplication{$name}`. Test Plan: # Pinned and uninstalled some applications. # Applied patch and performed migrations. # Verified that the pinned applications were still pinned and that the uninstalled applications were still uninstalled. # Performed a sanity check on the database contents. Reviewers: btrahan, epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: hach-que, epriestley, Korvin Maniphest Tasks: T5655 Differential Revision: https://secure.phabricator.com/D9982
114 lines
2.7 KiB
PHP
114 lines
2.7 KiB
PHP
<?php
|
|
|
|
final class HarbormasterBuildPlanSearchEngine
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
public function getResultTypeDescription() {
|
|
return pht('Harbormaster Build Plans');
|
|
}
|
|
|
|
public function getApplicationClassName() {
|
|
return 'PhabricatorHarbormasterApplication';
|
|
}
|
|
|
|
public function buildSavedQueryFromRequest(AphrontRequest $request) {
|
|
$saved = new PhabricatorSavedQuery();
|
|
|
|
$saved->setParameter(
|
|
'status',
|
|
$this->readListFromRequest($request, 'status'));
|
|
|
|
return $saved;
|
|
}
|
|
|
|
public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) {
|
|
$query = id(new HarbormasterBuildPlanQuery());
|
|
|
|
$status = $saved->getParameter('status', array());
|
|
if ($status) {
|
|
$query->withStatuses($status);
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
public function buildSearchForm(
|
|
AphrontFormView $form,
|
|
PhabricatorSavedQuery $saved_query) {
|
|
|
|
$status = $saved_query->getParameter('status', array());
|
|
|
|
$form
|
|
->appendChild(
|
|
id(new AphrontFormCheckboxControl())
|
|
->setLabel('Status')
|
|
->addCheckbox(
|
|
'status[]',
|
|
HarbormasterBuildPlan::STATUS_ACTIVE,
|
|
pht('Active'),
|
|
in_array(HarbormasterBuildPlan::STATUS_ACTIVE, $status))
|
|
->addCheckbox(
|
|
'status[]',
|
|
HarbormasterBuildPlan::STATUS_DISABLED,
|
|
pht('Disabled'),
|
|
in_array(HarbormasterBuildPlan::STATUS_DISABLED, $status)));
|
|
}
|
|
|
|
protected function getURI($path) {
|
|
return '/harbormaster/plan/'.$path;
|
|
}
|
|
|
|
public function getBuiltinQueryNames() {
|
|
return array(
|
|
'active' => pht('Active Plans'),
|
|
'all' => pht('All Plans'),
|
|
);
|
|
}
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
$query = $this->newSavedQuery();
|
|
$query->setQueryKey($query_key);
|
|
|
|
switch ($query_key) {
|
|
case 'active':
|
|
return $query->setParameter(
|
|
'status',
|
|
array(
|
|
HarbormasterBuildPlan::STATUS_ACTIVE,
|
|
));
|
|
case 'all':
|
|
return $query;
|
|
}
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
}
|
|
|
|
protected function renderResultList(
|
|
array $plans,
|
|
PhabricatorSavedQuery $query,
|
|
array $handles) {
|
|
assert_instances_of($plans, 'HarbormasterBuildPlan');
|
|
|
|
$viewer = $this->requireViewer();
|
|
|
|
$list = new PHUIObjectItemListView();
|
|
foreach ($plans as $plan) {
|
|
$id = $plan->getID();
|
|
|
|
$item = id(new PHUIObjectItemView())
|
|
->setObjectName(pht('Plan %d', $plan->getID()))
|
|
->setHeader($plan->getName());
|
|
|
|
if ($plan->isDisabled()) {
|
|
$item->setDisabled(true);
|
|
}
|
|
|
|
$item->setHref($this->getApplicationURI("plan/{$id}/"));
|
|
|
|
$list->addItem($item);
|
|
}
|
|
|
|
return $list;
|
|
}
|
|
|
|
}
|