Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F490789
ConpherenceThreadIndexEngineExtension.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
ConpherenceThreadIndexEngineExtension.php
View Options
<?php
final
class
ConpherenceThreadIndexEngineExtension
extends
PhabricatorIndexEngineExtension
{
const
EXTENSIONKEY
=
'conpherence.thread'
;
public
function
getExtensionName
()
{
return
pht
(
'Conpherence Threads'
);
}
public
function
shouldIndexObject
(
$object
)
{
return
(
$object
instanceof
ConpherenceThread
);
}
public
function
indexObject
(
PhabricatorIndexEngine
$engine
,
$object
)
{
$force
=
$this
->
shouldForceFullReindex
();
if
(!
$force
)
{
$xaction_phids
=
$this
->
getParameter
(
'transactionPHIDs'
);
if
(!
$xaction_phids
)
{
return
;
}
}
$query
=
id
(
new
ConpherenceTransactionQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withObjectPHIDs
(
array
(
$object
->
getPHID
()))
->
withTransactionTypes
(
array
(
PhabricatorTransactions
::
TYPE_COMMENT
))
->
needComments
(
true
);
if
(!
$force
)
{
$query
->
withPHIDs
(
$xaction_phids
);
}
$xactions
=
$query
->
execute
();
if
(!
$xactions
)
{
return
;
}
foreach
(
$xactions
as
$xaction
)
{
$this
->
indexComment
(
$object
,
$xaction
);
}
}
private
function
indexComment
(
ConpherenceThread
$thread
,
ConpherenceTransaction
$xaction
)
{
$pager
=
id
(
new
AphrontCursorPagerView
())
->
setPageSize
(
1
)
->
setAfterID
(
$xaction
->
getID
());
$previous_xactions
=
id
(
new
ConpherenceTransactionQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withObjectPHIDs
(
array
(
$thread
->
getPHID
()))
->
withTransactionTypes
(
array
(
PhabricatorTransactions
::
TYPE_COMMENT
))
->
executeWithCursorPager
(
$pager
);
$previous
=
head
(
$previous_xactions
);
$index
=
id
(
new
ConpherenceIndex
())
->
setThreadPHID
(
$thread
->
getPHID
())
->
setTransactionPHID
(
$xaction
->
getPHID
())
->
setPreviousTransactionPHID
(
$previous
?
$previous
->
getPHID
()
:
null
)
->
setCorpus
(
$xaction
->
getComment
()->
getContent
());
queryfx
(
$index
->
establishConnection
(
'w'
),
'INSERT INTO %T
(threadPHID, transactionPHID, previousTransactionPHID, corpus)
VALUES (%s, %s, %ns, %s)
ON DUPLICATE KEY UPDATE corpus = VALUES(corpus)'
,
$index
->
getTableName
(),
$index
->
getThreadPHID
(),
$index
->
getTransactionPHID
(),
$index
->
getPreviousTransactionPHID
(),
$index
->
getCorpus
());
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, May 7, 9:02 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
94016
Default Alt Text
ConpherenceThreadIndexEngineExtension.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment