Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93065045
PhrictionSearchIndexer.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 25, 22:42
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 27, 22:42 (2 d)
Engine
blob
Format
Raw Data
Handle
22565542
Attached To
rPH Phabricator
PhrictionSearchIndexer.php
View Options
<?php
/**
* @group phriction
*/
final
class
PhrictionSearchIndexer
extends
PhabricatorSearchDocumentIndexer
{
public
function
getIndexableObject
()
{
return
new
PhrictionDocument
();
}
protected
function
buildAbstractDocumentByPHID
(
$phid
)
{
$document
=
$this
->
loadDocumentByPHID
(
$phid
);
$content
=
id
(
new
PhrictionContent
())->
load
(
$document
->
getContentID
());
$document
->
attachContent
(
$content
);
$content
=
$document
->
getContent
();
$doc
=
new
PhabricatorSearchAbstractDocument
();
$doc
->
setPHID
(
$document
->
getPHID
());
$doc
->
setDocumentType
(
PhrictionPHIDTypeDocument
::
TYPECONST
);
$doc
->
setDocumentTitle
(
$content
->
getTitle
());
// TODO: This isn't precisely correct, denormalize into the Document table?
$doc
->
setDocumentCreated
(
$content
->
getDateCreated
());
$doc
->
setDocumentModified
(
$content
->
getDateModified
());
$doc
->
addField
(
PhabricatorSearchField
::
FIELD_BODY
,
$content
->
getContent
());
$doc
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_AUTHOR
,
$content
->
getAuthorPHID
(),
PhabricatorPHIDConstants
::
PHID_TYPE_USER
,
$content
->
getDateCreated
());
if
(
$document
->
getStatus
()
==
PhrictionDocumentStatus
::
STATUS_EXISTS
)
{
$doc
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_OPEN
,
$document
->
getPHID
(),
PhrictionPHIDTypeDocument
::
TYPECONST
,
time
());
}
return
$doc
;
}
}
Event Timeline
Log In to Comment