mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-03 07:59:15 +01:00
Summary: Depends on D19429. Depends on D19423. Ref T12164. This creates new columns `authorIdentityPHID` and `committerIdentityPHID` on commit objects and starts populating them. Also adds the ability to explicitly set an Identity's assignee to "unassigned()" to null out an incorrect auto-assign. Adds more search functionality to identities. Also creates a daemon task for handling users adding new email address and attempts to associate unclaimed identities. Test Plan: Imported some repos, watched new columns get populated. Added a new email address for a previous commit, saw daemon job run and assign the identity to the new user. Searched for identities in various and sundry ways. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, PHID-OPKG-gm6ozazyms6q6i22gyam Maniphest Tasks: T12164 Differential Revision: https://secure.phabricator.com/D19443
108 lines
2.7 KiB
PHP
108 lines
2.7 KiB
PHP
<?php
|
|
|
|
final class DiffusionRepositoryIdentitySearchEngine
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
public function getResultTypeDescription() {
|
|
return pht('Repository Identities');
|
|
}
|
|
|
|
public function getApplicationClassName() {
|
|
return 'PhabricatorDiffusionApplication';
|
|
}
|
|
|
|
public function newQuery() {
|
|
return new PhabricatorRepositoryIdentityQuery();
|
|
}
|
|
|
|
protected function buildCustomSearchFields() {
|
|
return array(
|
|
id(new DiffusionIdentityAssigneeSearchField())
|
|
->setLabel(pht('Assigned To'))
|
|
->setKey('assignee')
|
|
->setDescription(pht('Search for identities by assignee.')),
|
|
id(new PhabricatorSearchTextField())
|
|
->setLabel(pht('Identity Contains'))
|
|
->setKey('match')
|
|
->setDescription(pht('Search for identities by substring.')),
|
|
id(new PhabricatorSearchThreeStateField())
|
|
->setLabel(pht('Is Assigned'))
|
|
->setKey('hasEffectivePHID')
|
|
->setOptions(
|
|
pht('(Show All)'),
|
|
pht('Show Only Assigned Identities'),
|
|
pht('Show Only Unassigned Identities')),
|
|
);
|
|
}
|
|
|
|
protected function buildQueryFromParameters(array $map) {
|
|
$query = $this->newQuery();
|
|
|
|
if ($map['hasEffectivePHID'] !== null) {
|
|
$query->withHasEffectivePHID($map['hasEffectivePHID']);
|
|
}
|
|
|
|
if ($map['match'] !== null) {
|
|
$query->withIdentityNameLike($map['match']);
|
|
}
|
|
|
|
if ($map['assignee']) {
|
|
$query->withAssigneePHIDs($map['assignee']);
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
protected function getURI($path) {
|
|
return '/diffusion/identity/'.$path;
|
|
}
|
|
|
|
protected function getBuiltinQueryNames() {
|
|
$names = array(
|
|
'all' => pht('All Identities'),
|
|
);
|
|
|
|
return $names;
|
|
}
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
|
|
$query = $this->newSavedQuery();
|
|
$query->setQueryKey($query_key);
|
|
|
|
switch ($query_key) {
|
|
case 'all':
|
|
return $query;
|
|
}
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
}
|
|
|
|
protected function renderResultList(
|
|
array $identities,
|
|
PhabricatorSavedQuery $query,
|
|
array $handles) {
|
|
assert_instances_of($identities, 'PhabricatorRepositoryIdentity');
|
|
|
|
$viewer = $this->requireViewer();
|
|
|
|
$list = new PHUIObjectItemListView();
|
|
$list->setUser($viewer);
|
|
foreach ($identities as $identity) {
|
|
$item = id(new PHUIObjectItemView())
|
|
->setObjectName(pht('Identity %d', $identity->getID()))
|
|
->setHeader($identity->getIdentityShortName())
|
|
->setHref($identity->getURI())
|
|
->setObject($identity);
|
|
|
|
$list->addItem($item);
|
|
}
|
|
|
|
$result = new PhabricatorApplicationSearchResultView();
|
|
$result->setObjectList($list);
|
|
$result->setNoDataString(pht('No Identities found.'));
|
|
|
|
return $result;
|
|
}
|
|
|
|
}
|