Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97733096
PhabricatorRepositoryCommitSearchIndexer.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 6, 06:41
Size
2 KB
Mime Type
text/x-php
Expires
Wed, Jan 8, 06:41 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23445565
Attached To
rPH Phabricator
PhabricatorRepositoryCommitSearchIndexer.php
View Options
<?php
final
class
PhabricatorRepositoryCommitSearchIndexer
extends
PhabricatorSearchDocumentIndexer
{
public
function
getIndexableObject
()
{
return
new
PhabricatorRepositoryCommit
();
}
protected
function
buildAbstractDocumentByPHID
(
$phid
)
{
$commit
=
$this
->
loadDocumentByPHID
(
$phid
);
$commit_data
=
id
(
new
PhabricatorRepositoryCommitData
())->
loadOneWhere
(
'commitID = %d'
,
$commit
->
getID
());
$date_created
=
$commit
->
getEpoch
();
$commit_message
=
$commit_data
->
getCommitMessage
();
$author_phid
=
$commit_data
->
getCommitDetail
(
'authorPHID'
);
$repository
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withIDs
(
array
(
$commit
->
getRepositoryID
()))
->
executeOne
();
if
(!
$repository
)
{
throw
new
Exception
(
"No such repository!"
);
}
$title
=
'r'
.
$repository
->
getCallsign
().
$commit
->
getCommitIdentifier
().
" "
.
$commit_data
->
getSummary
();
$doc
=
new
PhabricatorSearchAbstractDocument
();
$doc
->
setPHID
(
$commit
->
getPHID
());
$doc
->
setDocumentType
(
PhabricatorRepositoryPHIDTypeCommit
::
TYPECONST
);
$doc
->
setDocumentCreated
(
$date_created
);
$doc
->
setDocumentModified
(
$date_created
);
$doc
->
setDocumentTitle
(
$title
);
$doc
->
addField
(
PhabricatorSearchField
::
FIELD_BODY
,
$commit_message
);
if
(
$author_phid
)
{
$doc
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_AUTHOR
,
$author_phid
,
PhabricatorPeoplePHIDTypeUser
::
TYPECONST
,
$date_created
);
}
$project_phids
=
PhabricatorEdgeQuery
::
loadDestinationPHIDs
(
$commit
->
getPHID
(),
PhabricatorEdgeConfig
::
TYPE_COMMIT_HAS_PROJECT
);
if
(
$project_phids
)
{
foreach
(
$project_phids
as
$project_phid
)
{
$doc
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_PROJECT
,
$project_phid
,
PhabricatorProjectPHIDTypeProject
::
TYPECONST
,
$date_created
);
}
}
$doc
->
addRelationship
(
PhabricatorSearchRelationship
::
RELATIONSHIP_REPOSITORY
,
$repository
->
getPHID
(),
PhabricatorRepositoryPHIDTypeRepository
::
TYPECONST
,
$date_created
);
$comments
=
id
(
new
PhabricatorAuditComment
())->
loadAllWhere
(
'targetPHID = %s'
,
$commit
->
getPHID
());
foreach
(
$comments
as
$comment
)
{
if
(
strlen
(
$comment
->
getContent
()))
{
$doc
->
addField
(
PhabricatorSearchField
::
FIELD_COMMENT
,
$comment
->
getContent
());
}
}
return
$doc
;
}
}
Event Timeline
Log In to Comment