mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 02:02:41 +01:00
ecc3314a25
Summary: Ref T9979. This is currently hard-coded but can be done in a generic way. This has one minor behavioral changes: answer text is no longer included in the question text index in Ponder. I'm not planning to accommodate that for now since I don't want to dig this hole any deeper than I already have. This behavior should be different anyway (e.g., index the answer, then show the question in the results or something). Test Plan: - Put a unique word in a Maniphest comment. - Searched for the word. - Found the task. Reviewers: chad Reviewed By: chad Maniphest Tasks: T9979 Differential Revision: https://secure.phabricator.com/D14837
44 lines
1,022 B
PHP
44 lines
1,022 B
PHP
<?php
|
|
|
|
final class PhabricatorTransactionsFulltextEngineExtension
|
|
extends PhabricatorFulltextEngineExtension {
|
|
|
|
const EXTENSIONKEY = 'transactions';
|
|
|
|
public function getExtensionName() {
|
|
return pht('Comments');
|
|
}
|
|
|
|
public function shouldIndexFulltextObject($object) {
|
|
return ($object instanceof PhabricatorApplicationTransactionInterface);
|
|
}
|
|
|
|
public function indexFulltextObject(
|
|
$object,
|
|
PhabricatorSearchAbstractDocument $document) {
|
|
|
|
$query = PhabricatorApplicationTransactionQuery::newQueryForObject($object);
|
|
if (!$query) {
|
|
return;
|
|
}
|
|
|
|
$xactions = $query
|
|
->setViewer($this->getViewer())
|
|
->withObjectPHIDs(array($object->getPHID()))
|
|
->needComments(true)
|
|
->execute();
|
|
|
|
foreach ($xactions as $xaction) {
|
|
if (!$xaction->hasComment()) {
|
|
continue;
|
|
}
|
|
|
|
$comment = $xaction->getComment();
|
|
|
|
$document->addField(
|
|
PhabricatorSearchDocumentFieldType::FIELD_COMMENT,
|
|
$comment->getContent());
|
|
}
|
|
}
|
|
|
|
}
|