Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120900985
ConpherenceFulltextQuery.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, Jul 7, 18:14
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jul 9, 18:14 (2 d)
Engine
blob
Format
Raw Data
Handle
27196963
Attached To
rPH Phabricator
ConpherenceFulltextQuery.php
View Options
<?php
final
class
ConpherenceFulltextQuery
extends
PhabricatorOffsetPagedQuery
{
private
$threadPHIDs
;
private
$fulltext
;
public
function
withThreadPHIDs
(
array
$phids
)
{
$this
->
threadPHIDs
=
$phids
;
return
$this
;
}
public
function
withFulltext
(
$fulltext
)
{
$this
->
fulltext
=
$fulltext
;
return
$this
;
}
public
function
execute
()
{
$table
=
new
ConpherenceIndex
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$rows
=
queryfx_all
(
$conn_r
,
'SELECT threadPHID, transactionPHID, previousTransactionPHID
FROM %T i %Q %Q %Q'
,
$table
->
getTableName
(),
$this
->
buildWhereClause
(
$conn_r
),
$this
->
buildOrderByClause
(
$conn_r
),
$this
->
buildLimitClause
(
$conn_r
));
return
$rows
;
}
private
function
buildWhereClause
(
$conn_r
)
{
$where
=
array
();
if
(
$this
->
threadPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'i.threadPHID IN (%Ls)'
,
$this
->
threadPHIDs
);
}
if
(
strlen
(
$this
->
fulltext
))
{
$where
[]
=
qsprintf
(
$conn_r
,
'MATCH(i.corpus) AGAINST (%s IN BOOLEAN MODE)'
,
$this
->
fulltext
);
}
return
$this
->
formatWhereClause
(
$where
);
}
private
function
buildOrderByClause
(
AphrontDatabaseConnection
$conn_r
)
{
if
(
strlen
(
$this
->
fulltext
))
{
return
qsprintf
(
$conn_r
,
'ORDER BY MATCH(i.corpus) AGAINST (%s IN BOOLEAN MODE) DESC'
,
$this
->
fulltext
);
}
else
{
return
qsprintf
(
$conn_r
,
'ORDER BY id DESC'
);
}
}
}
Event Timeline
Log In to Comment