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:
@@ -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,
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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,
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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(
|
||||
|
||||
@@ -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'),
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user