mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-02 23:48:18 +02:00
Summary: Ref T9964. This just adds more structure to application fields, to make it harder to make typos and easier to validate them later. Test Plan: Viewed APIs, called some APIs, saw good documentation and correct results. Reviewers: chad Reviewed By: chad Maniphest Tasks: T9964 Differential Revision: https://secure.phabricator.com/D14776
72 lines
1.8 KiB
PHP
72 lines
1.8 KiB
PHP
<?php
|
|
|
|
final class PhabricatorSpacesSearchEngineExtension
|
|
extends PhabricatorSearchEngineExtension {
|
|
|
|
const EXTENSIONKEY = 'spaces';
|
|
|
|
public function isExtensionEnabled() {
|
|
return PhabricatorApplication::isClassInstalled(
|
|
'PhabricatorSpacesApplication');
|
|
}
|
|
|
|
public function getExtensionName() {
|
|
return pht('Support for Spaces');
|
|
}
|
|
|
|
public function getExtensionOrder() {
|
|
return 4000;
|
|
}
|
|
|
|
public function supportsObject($object) {
|
|
return ($object instanceof PhabricatorSpacesInterface);
|
|
}
|
|
|
|
public function getSearchFields($object) {
|
|
$fields = array();
|
|
|
|
if (PhabricatorSpacesNamespaceQuery::getSpacesExist()) {
|
|
$fields[] = id(new PhabricatorSpacesSearchField())
|
|
->setKey('spacePHIDs')
|
|
->setConduitKey('spaces')
|
|
->setAliases(array('space', 'spaces'))
|
|
->setLabel(pht('Spaces'))
|
|
->setDescription(
|
|
pht('Search for objects in certain spaces.'));
|
|
}
|
|
|
|
return $fields;
|
|
}
|
|
|
|
public function applyConstraintsToQuery(
|
|
$object,
|
|
$query,
|
|
PhabricatorSavedQuery $saved,
|
|
array $map) {
|
|
|
|
if (!empty($map['spacePHIDs'])) {
|
|
$query->withSpacePHIDs($map['spacePHIDs']);
|
|
} else {
|
|
// If the user doesn't search for objects in specific spaces, we
|
|
// default to "all active spaces you have permission to view".
|
|
$query->withSpaceIsArchived(false);
|
|
}
|
|
}
|
|
|
|
public function getFieldSpecificationsForConduit($object) {
|
|
return array(
|
|
id(new PhabricatorConduitSearchFieldSpecification())
|
|
->setKey('spacePHID')
|
|
->setType('phid?')
|
|
->setDescription(
|
|
pht('PHID of the policy space this object is part of.')),
|
|
);
|
|
}
|
|
|
|
public function getFieldValuesForConduit($object) {
|
|
return array(
|
|
'spacePHID' => $object->getSpacePHID(),
|
|
);
|
|
}
|
|
|
|
}
|