Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106989064
PhabricatorUserSearchIndexer.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
Thu, Apr 3, 06:24
Size
978 B
Mime Type
text/x-php
Expires
Sat, Apr 5, 06:24 (2 d)
Engine
blob
Format
Raw Data
Handle
25274929
Attached To
rPH Phabricator
PhabricatorUserSearchIndexer.php
View Options
<?php
final
class
PhabricatorUserSearchIndexer
extends
PhabricatorSearchDocumentIndexer
{
public
function
getIndexableObject
()
{
return
new
PhabricatorUser
();
}
protected
function
buildAbstractDocumentByPHID
(
$phid
)
{
$user
=
$this
->
loadDocumentByPHID
(
$phid
);
$doc
=
new
PhabricatorSearchAbstractDocument
();
$doc
->
setPHID
(
$user
->
getPHID
());
$doc
->
setDocumentType
(
PhabricatorPHIDConstants
::
PHID_TYPE_USER
);
$doc
->
setDocumentTitle
(
$user
->
getUserName
().
' ('
.
$user
->
getRealName
().
')'
);
$doc
->
setDocumentCreated
(
$user
->
getDateCreated
());
$doc
->
setDocumentModified
(
$user
->
getDateModified
());
// TODO: Index the blurbs from their profile or something? Probably not
// actually useful...
if
(!
$user
->
getIsDisabled
())
{
$doc
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_OPEN
,
$user
->
getPHID
(),
PhabricatorPHIDConstants
::
PHID_TYPE_USER
,
time
());
}
return
$doc
;
}
}
Event Timeline
Log In to Comment