Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100699891
ManiphestSearchIndexer.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
Sun, Feb 2, 00:14
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Feb 4, 00:14 (2 d)
Engine
blob
Format
Raw Data
Handle
24016697
Attached To
rPH Phabricator
ManiphestSearchIndexer.php
View Options
<?php
final
class
ManiphestSearchIndexer
extends
PhabricatorSearchDocumentIndexer
{
public
function
getIndexableObject
()
{
return
new
ManiphestTask
();
}
protected
function
buildAbstractDocumentByPHID
(
$phid
)
{
$task
=
$this
->
loadDocumentByPHID
(
$phid
);
$doc
=
new
PhabricatorSearchAbstractDocument
();
$doc
->
setPHID
(
$task
->
getPHID
());
$doc
->
setDocumentType
(
ManiphestTaskPHIDType
::
TYPECONST
);
$doc
->
setDocumentTitle
(
$task
->
getTitle
());
$doc
->
setDocumentCreated
(
$task
->
getDateCreated
());
$doc
->
setDocumentModified
(
$task
->
getDateModified
());
$doc
->
addField
(
PhabricatorSearchField
::
FIELD_BODY
,
$task
->
getDescription
());
$doc
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_AUTHOR
,
$task
->
getAuthorPHID
(),
PhabricatorPeopleUserPHIDType
::
TYPECONST
,
$task
->
getDateCreated
());
$doc
->
addRelationship
(
$task
->
isClosed
()
?
PhabricatorSearchRelationship
::
RELATIONSHIP_CLOSED
:
PhabricatorSearchRelationship
::
RELATIONSHIP_OPEN
,
$task
->
getPHID
(),
ManiphestTaskPHIDType
::
TYPECONST
,
time
());
$this
->
indexTransactions
(
$doc
,
new
ManiphestTransactionQuery
(),
array
(
$phid
));
foreach
(
$task
->
getProjectPHIDs
()
as
$phid
)
{
$doc
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_PROJECT
,
$phid
,
PhabricatorProjectProjectPHIDType
::
TYPECONST
,
$task
->
getDateModified
());
// Bogus.
}
$owner
=
$task
->
getOwnerPHID
();
if
(
$owner
)
{
$doc
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_OWNER
,
$owner
,
PhabricatorPeopleUserPHIDType
::
TYPECONST
,
time
());
}
else
{
$doc
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_UNOWNED
,
$task
->
getPHID
(),
PhabricatorPHIDConstants
::
PHID_TYPE_VOID
,
$task
->
getDateCreated
());
}
// We need to load handles here since non-users may subscribe (mailing
// lists, e.g.)
$ccs
=
$task
->
getCCPHIDs
();
$handles
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withPHIDs
(
$ccs
)
->
execute
();
foreach
(
$ccs
as
$cc
)
{
$doc
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_SUBSCRIBER
,
$handles
[
$cc
]->
getPHID
(),
$handles
[
$cc
]->
getType
(),
time
());
}
return
$doc
;
}
}
Event Timeline
Log In to Comment