Add more information (colors, members, watchers) to project.search

Summary: Fixes T6501. This adds more API information to the newish `project.search` API method.

Test Plan: Called `project.search`, used attachments.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T6501

Differential Revision: https://secure.phabricator.com/D15105
This commit is contained in:
epriestley
2016-01-24 07:19:54 -08:00
parent 8efaaa188f
commit 9c28ae9ba7
5 changed files with 88 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
<?php
final class PhabricatorProjectsMembersSearchEngineAttachment
extends PhabricatorSearchEngineAttachment {
public function getAttachmentName() {
return pht('Project Members');
}
public function getAttachmentDescription() {
return pht('Get the member list for the project.');
}
public function willLoadAttachmentData($query, $spec) {
$query->needMembers(true);
}
public function getAttachmentForObject($object, $data, $spec) {
$members = array();
foreach ($object->getMemberPHIDs() as $member_phid) {
$members[] = array(
'phid' => $member_phid,
);
}
return array(
'members' => $members,
);
}
}

View File

@@ -0,0 +1,31 @@
<?php
final class PhabricatorProjectsWatchersSearchEngineAttachment
extends PhabricatorSearchEngineAttachment {
public function getAttachmentName() {
return pht('Project Watchers');
}
public function getAttachmentDescription() {
return pht('Get the watcher list for the project.');
}
public function willLoadAttachmentData($query, $spec) {
$query->needWatchers(true);
}
public function getAttachmentForObject($object, $data, $spec) {
$watchers = array();
foreach ($object->getWatcherPHIDs() as $watcher_phid) {
$watchers[] = array(
'phid' => $watcher_phid,
);
}
return array(
'watchers' => $watchers,
);
}
}

View File

@@ -336,6 +336,11 @@ final class PhabricatorProjectIconSet
return $list;
}
public static function getColorName($color_key) {
$map = self::getColorMap();
return idx($map, $color_key);
}
public static function getDefaultColorMap() {
return array(
array(

View File

@@ -628,10 +628,17 @@ final class PhabricatorProject extends PhabricatorProjectDAO
->setKey('icon')
->setType('map<string, wild>')
->setDescription(pht('Information about the project icon.')),
id(new PhabricatorConduitSearchFieldSpecification())
->setKey('color')
->setType('map<string, wild>')
->setDescription(pht('Information about the project color.')),
);
}
public function getFieldValuesForConduit() {
$color_key = $this->getColor();
$color_name = PhabricatorProjectIconSet::getColorName($color_key);
return array(
'name' => $this->getName(),
'slug' => $this->getPrimarySlug(),
@@ -640,11 +647,20 @@ final class PhabricatorProject extends PhabricatorProjectDAO
'name' => $this->getDisplayIconName(),
'icon' => $this->getDisplayIconIcon(),
),
'color' => array(
'key' => $color_key,
'name' => $color_name,
),
);
}
public function getConduitSearchAttachments() {
return array();
return array(
id(new PhabricatorProjectsMembersSearchEngineAttachment())
->setAttachmentKey('members'),
id(new PhabricatorProjectsWatchersSearchEngineAttachment())
->setAttachmentKey('watchers'),
);
}
}