mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 12:00:55 +01:00
Implement an "Attachments" behavior for Conduit Search APIs
Summary: Ref T9964. We have various kinds of secondary data on objects (like subscribers, projects, paste content, Owners paths, file attachments, etc) which is somewhat slow, or somewhat large, or both. Some approaches to handling this in the API include: - Always return all of it (very easy, but slow). - Require users to make separate API calls to get each piece of data (very simple, but inefficient and really cumbersome to use). - Implement a hierarchical query language like GraphQL (powerful, but very complex). - Kind of mix-and-match a half-power query language and some extra calls? (fairly simple, not too terrible?) We currently mix-and-match internally, with `->needStuff(true)`. This is not a general-purpose, full-power graph query language like GraphQL, and it occasionally does limit us. For example, there is no way to do this sort of thing: $conpherence_thread_query = id(new ConpherenceThreadQuery()) ->setViewer($viewer) // ... ->setNeedMessages(true) ->setWhenYouLoadTheMessagesTheyNeedProfilePictures(true); However, we almost never actually need to do this and when we do want to do it we usually don't //really// want to do it, so I don't think this is a major limit to the practical power of the system for the kinds of things we really want to do with it. Put another way, we have a lot of 1-level hierarchical queries (get pictures or repositories or projects or files or content for these objects) but few-to-no 2+ level queries (get files for these objects, then get all the projects for those files). So even though 1-level hierarchies are not a beautiful, general-purpose, fully-abstract system, they've worked well so far in practice and I'm comfortable moving forward with them in the API. If we do need N-level queries in the future, there is no technical reason we can't put GraphQL (or something similar) on top of this eventually, and this would represent a solid step toward that. However, I suspect we'll never need them. Upshot: I'm pretty happy with "->needX()" for all practical purposes, so this is just adding a way to say "->needX()" to the API. Specifically, you say: ``` { "attachments": { "subscribers": true, } } ``` ...and get back subscriber data. In the future (or for certain attachments), `true` might become a dictionary of extra parameters, if necessary, and could do so without breaking the API. Test Plan: - Ran queries to get attachments. {F1025449} Reviewers: chad Reviewed By: chad Maniphest Tasks: T9964 Differential Revision: https://secure.phabricator.com/D14772
This commit is contained in:
parent
8ec413b972
commit
2160c45619
8 changed files with 308 additions and 19 deletions
|
@ -3004,6 +3004,7 @@ phutil_register_library_map(array(
|
||||||
'PhabricatorSearchEditController' => 'applications/search/controller/PhabricatorSearchEditController.php',
|
'PhabricatorSearchEditController' => 'applications/search/controller/PhabricatorSearchEditController.php',
|
||||||
'PhabricatorSearchEngine' => 'applications/search/engine/PhabricatorSearchEngine.php',
|
'PhabricatorSearchEngine' => 'applications/search/engine/PhabricatorSearchEngine.php',
|
||||||
'PhabricatorSearchEngineAPIMethod' => 'applications/search/engine/PhabricatorSearchEngineAPIMethod.php',
|
'PhabricatorSearchEngineAPIMethod' => 'applications/search/engine/PhabricatorSearchEngineAPIMethod.php',
|
||||||
|
'PhabricatorSearchEngineAttachment' => 'applications/search/engineextension/PhabricatorSearchEngineAttachment.php',
|
||||||
'PhabricatorSearchEngineExtension' => 'applications/search/engineextension/PhabricatorSearchEngineExtension.php',
|
'PhabricatorSearchEngineExtension' => 'applications/search/engineextension/PhabricatorSearchEngineExtension.php',
|
||||||
'PhabricatorSearchEngineExtensionModule' => 'applications/search/engineextension/PhabricatorSearchEngineExtensionModule.php',
|
'PhabricatorSearchEngineExtensionModule' => 'applications/search/engineextension/PhabricatorSearchEngineExtensionModule.php',
|
||||||
'PhabricatorSearchEngineTestCase' => 'applications/search/engine/__tests__/PhabricatorSearchEngineTestCase.php',
|
'PhabricatorSearchEngineTestCase' => 'applications/search/engine/__tests__/PhabricatorSearchEngineTestCase.php',
|
||||||
|
@ -3149,6 +3150,7 @@ phutil_register_library_map(array(
|
||||||
'PhabricatorSubscriptionsListController' => 'applications/subscriptions/controller/PhabricatorSubscriptionsListController.php',
|
'PhabricatorSubscriptionsListController' => 'applications/subscriptions/controller/PhabricatorSubscriptionsListController.php',
|
||||||
'PhabricatorSubscriptionsRemoveSelfHeraldAction' => 'applications/subscriptions/herald/PhabricatorSubscriptionsRemoveSelfHeraldAction.php',
|
'PhabricatorSubscriptionsRemoveSelfHeraldAction' => 'applications/subscriptions/herald/PhabricatorSubscriptionsRemoveSelfHeraldAction.php',
|
||||||
'PhabricatorSubscriptionsRemoveSubscribersHeraldAction' => 'applications/subscriptions/herald/PhabricatorSubscriptionsRemoveSubscribersHeraldAction.php',
|
'PhabricatorSubscriptionsRemoveSubscribersHeraldAction' => 'applications/subscriptions/herald/PhabricatorSubscriptionsRemoveSubscribersHeraldAction.php',
|
||||||
|
'PhabricatorSubscriptionsSearchEngineAttachment' => 'applications/subscriptions/engineextension/PhabricatorSubscriptionsSearchEngineAttachment.php',
|
||||||
'PhabricatorSubscriptionsSearchEngineExtension' => 'applications/subscriptions/engineextension/PhabricatorSubscriptionsSearchEngineExtension.php',
|
'PhabricatorSubscriptionsSearchEngineExtension' => 'applications/subscriptions/engineextension/PhabricatorSubscriptionsSearchEngineExtension.php',
|
||||||
'PhabricatorSubscriptionsSubscribeEmailCommand' => 'applications/subscriptions/command/PhabricatorSubscriptionsSubscribeEmailCommand.php',
|
'PhabricatorSubscriptionsSubscribeEmailCommand' => 'applications/subscriptions/command/PhabricatorSubscriptionsSubscribeEmailCommand.php',
|
||||||
'PhabricatorSubscriptionsSubscribersPolicyRule' => 'applications/subscriptions/policyrule/PhabricatorSubscriptionsSubscribersPolicyRule.php',
|
'PhabricatorSubscriptionsSubscribersPolicyRule' => 'applications/subscriptions/policyrule/PhabricatorSubscriptionsSubscribersPolicyRule.php',
|
||||||
|
@ -7321,6 +7323,7 @@ phutil_register_library_map(array(
|
||||||
'PhabricatorSearchEditController' => 'PhabricatorSearchBaseController',
|
'PhabricatorSearchEditController' => 'PhabricatorSearchBaseController',
|
||||||
'PhabricatorSearchEngine' => 'Phobject',
|
'PhabricatorSearchEngine' => 'Phobject',
|
||||||
'PhabricatorSearchEngineAPIMethod' => 'ConduitAPIMethod',
|
'PhabricatorSearchEngineAPIMethod' => 'ConduitAPIMethod',
|
||||||
|
'PhabricatorSearchEngineAttachment' => 'Phobject',
|
||||||
'PhabricatorSearchEngineExtension' => 'Phobject',
|
'PhabricatorSearchEngineExtension' => 'Phobject',
|
||||||
'PhabricatorSearchEngineExtensionModule' => 'PhabricatorConfigModule',
|
'PhabricatorSearchEngineExtensionModule' => 'PhabricatorConfigModule',
|
||||||
'PhabricatorSearchEngineTestCase' => 'PhabricatorTestCase',
|
'PhabricatorSearchEngineTestCase' => 'PhabricatorTestCase',
|
||||||
|
@ -7482,6 +7485,7 @@ phutil_register_library_map(array(
|
||||||
'PhabricatorSubscriptionsListController' => 'PhabricatorController',
|
'PhabricatorSubscriptionsListController' => 'PhabricatorController',
|
||||||
'PhabricatorSubscriptionsRemoveSelfHeraldAction' => 'PhabricatorSubscriptionsHeraldAction',
|
'PhabricatorSubscriptionsRemoveSelfHeraldAction' => 'PhabricatorSubscriptionsHeraldAction',
|
||||||
'PhabricatorSubscriptionsRemoveSubscribersHeraldAction' => 'PhabricatorSubscriptionsHeraldAction',
|
'PhabricatorSubscriptionsRemoveSubscribersHeraldAction' => 'PhabricatorSubscriptionsHeraldAction',
|
||||||
|
'PhabricatorSubscriptionsSearchEngineAttachment' => 'PhabricatorSearchEngineAttachment',
|
||||||
'PhabricatorSubscriptionsSearchEngineExtension' => 'PhabricatorSearchEngineExtension',
|
'PhabricatorSubscriptionsSearchEngineExtension' => 'PhabricatorSearchEngineExtension',
|
||||||
'PhabricatorSubscriptionsSubscribeEmailCommand' => 'MetaMTAEmailTransactionCommand',
|
'PhabricatorSubscriptionsSubscribeEmailCommand' => 'MetaMTAEmailTransactionCommand',
|
||||||
'PhabricatorSubscriptionsSubscribersPolicyRule' => 'PhabricatorPolicyRule',
|
'PhabricatorSubscriptionsSubscribersPolicyRule' => 'PhabricatorPolicyRule',
|
||||||
|
|
|
@ -1123,10 +1123,25 @@ abstract class PhabricatorApplicationSearchEngine extends Phobject {
|
||||||
|
|
||||||
$this->saveQuery($saved_query);
|
$this->saveQuery($saved_query);
|
||||||
|
|
||||||
|
|
||||||
$query = $this->buildQueryFromSavedQuery($saved_query);
|
$query = $this->buildQueryFromSavedQuery($saved_query);
|
||||||
$pager = $this->newPagerForSavedQuery($saved_query);
|
$pager = $this->newPagerForSavedQuery($saved_query);
|
||||||
|
|
||||||
|
$attachments = $this->getConduitSearchAttachments();
|
||||||
|
|
||||||
|
// TODO: Validate this better.
|
||||||
|
$attachment_specs = $request->getValue('attachments');
|
||||||
|
$attachments = array_select_keys(
|
||||||
|
$attachments,
|
||||||
|
array_keys($attachment_specs));
|
||||||
|
|
||||||
|
foreach ($attachments as $key => $attachment) {
|
||||||
|
$attachment->setViewer($viewer);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($attachments as $key => $attachment) {
|
||||||
|
$attachment->willLoadAttachmentData($query, $attachment_specs[$key]);
|
||||||
|
}
|
||||||
|
|
||||||
$this->setQueryOrderForConduit($query, $request);
|
$this->setQueryOrderForConduit($query, $request);
|
||||||
$this->setPagerLimitForConduit($pager, $request);
|
$this->setPagerLimitForConduit($pager, $request);
|
||||||
$this->setPagerOffsetsForConduit($pager, $request);
|
$this->setPagerOffsetsForConduit($pager, $request);
|
||||||
|
@ -1137,10 +1152,36 @@ abstract class PhabricatorApplicationSearchEngine extends Phobject {
|
||||||
if ($objects) {
|
if ($objects) {
|
||||||
$field_extensions = $this->getConduitFieldExtensions();
|
$field_extensions = $this->getConduitFieldExtensions();
|
||||||
|
|
||||||
|
$attachment_data = array();
|
||||||
|
foreach ($attachments as $key => $attachment) {
|
||||||
|
$attachment_data[$key] = $attachment->loadAttachmentData(
|
||||||
|
$objects,
|
||||||
|
$attachment_specs[$key]);
|
||||||
|
}
|
||||||
|
|
||||||
foreach ($objects as $object) {
|
foreach ($objects as $object) {
|
||||||
$data[] = $this->getObjectWireFormatForConduit(
|
$field_map = $this->getObjectWireFieldsForConduit(
|
||||||
$object,
|
$object,
|
||||||
$field_extensions);
|
$field_extensions);
|
||||||
|
|
||||||
|
$attachment_map = array();
|
||||||
|
foreach ($attachments as $key => $attachment) {
|
||||||
|
$attachment_map[$key] = $attachment->getAttachmentForObject(
|
||||||
|
$object,
|
||||||
|
$attachment_data[$key],
|
||||||
|
$attachment_specs[$key]);
|
||||||
|
}
|
||||||
|
|
||||||
|
$id = (int)$object->getID();
|
||||||
|
$phid = $object->getPHID();
|
||||||
|
|
||||||
|
$data[] = array(
|
||||||
|
'id' => $id,
|
||||||
|
'type' => phid_get_type($phid),
|
||||||
|
'phid' => $phid,
|
||||||
|
'fields' => $field_map,
|
||||||
|
'attachments' => $attachment_map,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1264,21 +1305,6 @@ abstract class PhabricatorApplicationSearchEngine extends Phobject {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function getObjectWireFormatForConduit(
|
|
||||||
$object,
|
|
||||||
array $field_extensions) {
|
|
||||||
$phid = $object->getPHID();
|
|
||||||
|
|
||||||
return array(
|
|
||||||
'id' => (int)$object->getID(),
|
|
||||||
'type' => phid_get_type($phid),
|
|
||||||
'phid' => $phid,
|
|
||||||
'fields' => $this->getObjectWireFieldsForConduit(
|
|
||||||
$object,
|
|
||||||
$field_extensions),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function getObjectWireFieldsForConduit(
|
protected function getObjectWireFieldsForConduit(
|
||||||
$object,
|
$object,
|
||||||
array $field_extensions) {
|
array $field_extensions) {
|
||||||
|
@ -1291,4 +1317,29 @@ abstract class PhabricatorApplicationSearchEngine extends Phobject {
|
||||||
return $fields;
|
return $fields;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getConduitSearchAttachments() {
|
||||||
|
$extensions = $this->getEngineExtensions();
|
||||||
|
|
||||||
|
$attachments = array();
|
||||||
|
foreach ($extensions as $extension) {
|
||||||
|
$extension_attachments = $extension->getSearchAttachments();
|
||||||
|
foreach ($extension_attachments as $attachment) {
|
||||||
|
$attachment_key = $attachment->getAttachmentKey();
|
||||||
|
if (isset($attachments[$attachment_key])) {
|
||||||
|
$other = $attachments[$attachment_key];
|
||||||
|
throw new Exception(
|
||||||
|
pht(
|
||||||
|
'Two search engine attachments (of classes "%s" and "%s") '.
|
||||||
|
'specify the same attachment key ("%s"); keys must be unique.',
|
||||||
|
get_class($attachment),
|
||||||
|
get_class($other),
|
||||||
|
$attachment_key));
|
||||||
|
}
|
||||||
|
$attachments[$attachment_key] = $attachment;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $attachments;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,6 +23,7 @@ abstract class PhabricatorSearchEngineAPIMethod
|
||||||
return array(
|
return array(
|
||||||
'queryKey' => 'optional string',
|
'queryKey' => 'optional string',
|
||||||
'constraints' => 'optional map<string, wild>',
|
'constraints' => 'optional map<string, wild>',
|
||||||
|
'attachments' => 'optional map<string, bool>',
|
||||||
'order' => 'optional order',
|
'order' => 'optional order',
|
||||||
) + $this->getPagerParamTypes();
|
) + $this->getPagerParamTypes();
|
||||||
}
|
}
|
||||||
|
@ -58,6 +59,7 @@ abstract class PhabricatorSearchEngineAPIMethod
|
||||||
$out[] = $this->buildConstraintsBox($engine);
|
$out[] = $this->buildConstraintsBox($engine);
|
||||||
$out[] = $this->buildOrderBox($engine, $query);
|
$out[] = $this->buildOrderBox($engine, $query);
|
||||||
$out[] = $this->buildFieldsBox($engine);
|
$out[] = $this->buildFieldsBox($engine);
|
||||||
|
$out[] = $this->buildAttachmentsBox($engine);
|
||||||
$out[] = $this->buildPagingBox($engine);
|
$out[] = $this->buildPagingBox($engine);
|
||||||
|
|
||||||
return $out;
|
return $out;
|
||||||
|
@ -401,6 +403,94 @@ EOTEXT
|
||||||
->appendChild($table);
|
->appendChild($table);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function buildAttachmentsBox(
|
||||||
|
PhabricatorApplicationSearchEngine $engine) {
|
||||||
|
|
||||||
|
$info = pht(<<<EOTEXT
|
||||||
|
By default, only basic information about objects is returned. If you want
|
||||||
|
more extensive information, you can use available `attachments` to get more
|
||||||
|
information in the results (like subscribers and projects).
|
||||||
|
|
||||||
|
Generally, requesting more information means the query executes more slowly
|
||||||
|
and returns more data (in some cases, much more data). You should normally
|
||||||
|
request only the data you need.
|
||||||
|
|
||||||
|
To request extra data, specify which attachments you want in the `attachments`
|
||||||
|
parameter:
|
||||||
|
|
||||||
|
```lang=json, name="Example Attachments Request"
|
||||||
|
{
|
||||||
|
...
|
||||||
|
"attachments": {
|
||||||
|
"subscribers": true
|
||||||
|
},
|
||||||
|
...
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
This example specifies that results should include information about
|
||||||
|
subscribers. In the return value, each object will now have this information
|
||||||
|
filled out in the corresponding `attachments` value:
|
||||||
|
|
||||||
|
```lang=json, name="Example Attachments Result"
|
||||||
|
{
|
||||||
|
...
|
||||||
|
"data": [
|
||||||
|
{
|
||||||
|
...
|
||||||
|
"attachments": {
|
||||||
|
"subscribers": {
|
||||||
|
"subscriberPHIDs": [
|
||||||
|
"PHID-WXYZ-2222",
|
||||||
|
],
|
||||||
|
"subscriberCount": 1,
|
||||||
|
"viewerIsSubscribed": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
...
|
||||||
|
},
|
||||||
|
...
|
||||||
|
],
|
||||||
|
...
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
These attachments are available:
|
||||||
|
EOTEXT
|
||||||
|
);
|
||||||
|
|
||||||
|
$attachments = $engine->getConduitSearchAttachments();
|
||||||
|
|
||||||
|
$rows = array();
|
||||||
|
foreach ($attachments as $key => $attachment) {
|
||||||
|
$rows[] = array(
|
||||||
|
$key,
|
||||||
|
$attachment->getAttachmentName(),
|
||||||
|
$attachment->getAttachmentDescription(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$table = id(new AphrontTableView($rows))
|
||||||
|
->setHeaders(
|
||||||
|
array(
|
||||||
|
pht('Key'),
|
||||||
|
pht('Name'),
|
||||||
|
pht('Description'),
|
||||||
|
))
|
||||||
|
->setColumnClasses(
|
||||||
|
array(
|
||||||
|
'prewrap',
|
||||||
|
'pri',
|
||||||
|
'wide',
|
||||||
|
));
|
||||||
|
|
||||||
|
return id(new PHUIObjectBoxView())
|
||||||
|
->setHeaderText(pht('Attachments'))
|
||||||
|
->setCollapsed(true)
|
||||||
|
->appendChild($this->buildRemarkup($info))
|
||||||
|
->appendChild($table);
|
||||||
|
}
|
||||||
|
|
||||||
private function buildPagingBox(
|
private function buildPagingBox(
|
||||||
PhabricatorApplicationSearchEngine $engine) {
|
PhabricatorApplicationSearchEngine $engine) {
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,50 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
abstract class PhabricatorSearchEngineAttachment extends Phobject {
|
||||||
|
|
||||||
|
private $attachmentKey;
|
||||||
|
private $viewer;
|
||||||
|
private $searchEngine;
|
||||||
|
|
||||||
|
final public function setViewer($viewer) {
|
||||||
|
$this->viewer = $viewer;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
final public function getViewer() {
|
||||||
|
return $this->viewer;
|
||||||
|
}
|
||||||
|
|
||||||
|
final public function setSearchEngine(
|
||||||
|
PhabricatorApplicationSearchEngine $engine) {
|
||||||
|
$this->searchEngine = $engine;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
final public function getSearchEngine() {
|
||||||
|
return $this->searchEngine;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setAttachmentKey($attachment_key) {
|
||||||
|
$this->attachmentKey = $attachment_key;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getAttachmentKey() {
|
||||||
|
return $this->attachmentKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract public function getAttachmentName();
|
||||||
|
abstract public function getAttachmentDescription();
|
||||||
|
|
||||||
|
public function willLoadAttachmentData($query, $spec) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function loadAttachmentData(array $objects, $spec) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract public function getAttachmentForObject($object, $data, $spec);
|
||||||
|
|
||||||
|
}
|
|
@ -40,6 +40,10 @@ abstract class PhabricatorSearchEngineExtension extends Phobject {
|
||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getSearchAttachments() {
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
|
||||||
public function applyConstraintsToQuery(
|
public function applyConstraintsToQuery(
|
||||||
$object,
|
$object,
|
||||||
$query,
|
$query,
|
||||||
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
final class PhabricatorSubscriptionsSearchEngineAttachment
|
||||||
|
extends PhabricatorSearchEngineAttachment {
|
||||||
|
|
||||||
|
public function getAttachmentName() {
|
||||||
|
return pht('Subscribers');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getAttachmentDescription() {
|
||||||
|
return pht('Get information about subscribers.');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function loadAttachmentData(array $objects, $spec) {
|
||||||
|
$object_phids = mpull($objects, 'getPHID');
|
||||||
|
$edge_type = PhabricatorObjectHasSubscriberEdgeType::EDGECONST;
|
||||||
|
|
||||||
|
|
||||||
|
$subscribers_query = id(new PhabricatorEdgeQuery())
|
||||||
|
->withSourcePHIDs($object_phids)
|
||||||
|
->withEdgeTypes(array($edge_type));
|
||||||
|
$subscribers_query->execute();
|
||||||
|
|
||||||
|
$viewer = $this->getViewer();
|
||||||
|
$viewer_phid = $viewer->getPHID();
|
||||||
|
if ($viewer) {
|
||||||
|
$edges = id(new PhabricatorEdgeQuery())
|
||||||
|
->withSourcePHIDs($object_phids)
|
||||||
|
->withEdgeTypes(array($edge_type))
|
||||||
|
->withDestinationPHIDs(array($viewer_phid))
|
||||||
|
->execute();
|
||||||
|
|
||||||
|
$viewer_map = array();
|
||||||
|
foreach ($edges as $object_phid => $types) {
|
||||||
|
if ($types[$edge_type]) {
|
||||||
|
$viewer_map[$object_phid] = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$viewer_map = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
return array(
|
||||||
|
'subscribers.query' => $subscribers_query,
|
||||||
|
'viewer.map' => $viewer_map,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getAttachmentForObject($object, $data, $spec) {
|
||||||
|
$subscribers_query = idx($data, 'subscribers.query');
|
||||||
|
$viewer_map = idx($data, 'viewer.map');
|
||||||
|
$object_phid = $object->getPHID();
|
||||||
|
|
||||||
|
$subscribed_phids = $subscribers_query->getDestinationPHIDs(
|
||||||
|
array($object_phid),
|
||||||
|
array(PhabricatorObjectHasSubscriberEdgeType::EDGECONST));
|
||||||
|
$subscribed_count = count($subscribed_phids);
|
||||||
|
if ($subscribed_count > 10) {
|
||||||
|
$subscribed_phids = array_slice($subscribed_phids, 0, 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
$subscribed_phids = array_values($subscribed_phids);
|
||||||
|
|
||||||
|
$viewer = $this->getViewer();
|
||||||
|
$viewer_phid = $viewer->getPHID();
|
||||||
|
|
||||||
|
if (!$viewer_phid) {
|
||||||
|
$self_subscribed = false;
|
||||||
|
} else if (isset($viewer_map[$object_phid])) {
|
||||||
|
$self_subscribed = true;
|
||||||
|
} else if ($object->isAutomaticallySubscribed($viewer_phid)) {
|
||||||
|
$self_subscribed = true;
|
||||||
|
} else {
|
||||||
|
$self_subscribed = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return array(
|
||||||
|
'subscriberPHIDs' => $subscribed_phids,
|
||||||
|
'subscriberCount' => $subscribed_count,
|
||||||
|
'viewerIsSubscribed' => $self_subscribed,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -50,5 +50,11 @@ final class PhabricatorSubscriptionsSearchEngineExtension
|
||||||
return $fields;
|
return $fields;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getSearchAttachments() {
|
||||||
|
return array(
|
||||||
|
id(new PhabricatorSubscriptionsSearchEngineAttachment())
|
||||||
|
->setAttachmentKey('subscribers'),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -516,7 +516,7 @@ abstract class PhabricatorEditField extends Phobject {
|
||||||
$edit_type = $this->getEditType();
|
$edit_type = $this->getEditType();
|
||||||
|
|
||||||
if ($edit_type === null) {
|
if ($edit_type === null) {
|
||||||
return null;
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
return array($edit_type);
|
return array($edit_type);
|
||||||
|
@ -526,7 +526,7 @@ abstract class PhabricatorEditField extends Phobject {
|
||||||
$edit_type = $this->getEditType();
|
$edit_type = $this->getEditType();
|
||||||
|
|
||||||
if ($edit_type === null) {
|
if ($edit_type === null) {
|
||||||
return null;
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
return array($edit_type);
|
return array($edit_type);
|
||||||
|
|
Loading…
Reference in a new issue