Path: blob/master/src/applications/paste/engine/PhabricatorPasteFulltextEngine.php
13402 views
<?php12final class PhabricatorPasteFulltextEngine3extends PhabricatorFulltextEngine {45protected function buildAbstractDocument(6PhabricatorSearchAbstractDocument $document,7$object) {89$paste = id(new PhabricatorPasteQuery())10->setViewer($this->getViewer())11->withPHIDs(array($object->getPHID()))12->needContent(true)13->executeOne();1415$document->setDocumentTitle($paste->getTitle());1617$document->addRelationship(18$paste->isArchived()19? PhabricatorSearchRelationship::RELATIONSHIP_CLOSED20: PhabricatorSearchRelationship::RELATIONSHIP_OPEN,21$paste->getPHID(),22PhabricatorPastePastePHIDType::TYPECONST,23PhabricatorTime::getNow());2425$document->addField(26PhabricatorSearchDocumentFieldType::FIELD_BODY,27$paste->getContent());2829$document->addRelationship(30PhabricatorSearchRelationship::RELATIONSHIP_AUTHOR,31$paste->getAuthorPHID(),32PhabricatorPeopleUserPHIDType::TYPECONST,33$paste->getDateCreated());34}3536}373839