Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99920483
PhabricatorSubscriptionsFulltextEngineExtension.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, Jan 27, 07:10
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jan 29, 07:10 (2 d)
Engine
blob
Format
Raw Data
Handle
23810359
Attached To
rPH Phabricator
PhabricatorSubscriptionsFulltextEngineExtension.php
View Options
<?php
final
class
PhabricatorSubscriptionsFulltextEngineExtension
extends
PhabricatorFulltextEngineExtension
{
const
EXTENSIONKEY
=
'subscriptions'
;
public
function
getExtensionName
()
{
return
pht
(
'Subscribers'
);
}
public
function
shouldEnrichFulltextObject
(
$object
)
{
return
(
$object
instanceof
PhabricatorSubscribableInterface
);
}
public
function
enrichFulltextObject
(
$object
,
PhabricatorSearchAbstractDocument
$document
)
{
$subscriber_phids
=
PhabricatorSubscribersQuery
::
loadSubscribersForPHID
(
$object
->
getPHID
());
if
(!
$subscriber_phids
)
{
return
;
}
$handles
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$subscriber_phids
)
->
execute
();
foreach
(
$handles
as
$phid
=>
$handle
)
{
$document
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_SUBSCRIBER
,
$phid
,
$handle
->
getType
(),
$document
->
getDocumentModified
());
// Bogus timestamp.
}
}
}
Event Timeline
Log In to Comment