Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98057400
PhabricatorChatLogQuery.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, Jan 9, 03:56
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jan 11, 03:56 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23490654
Attached To
rPH Phabricator
PhabricatorChatLogQuery.php
View Options
<?php
final
class
PhabricatorChatLogQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$channelIDs
;
private
$maximumEpoch
;
public
function
withChannelIDs
(
array
$channel_ids
)
{
$this
->
channelIDs
=
$channel_ids
;
return
$this
;
}
public
function
withMaximumEpoch
(
$epoch
)
{
$this
->
maximumEpoch
=
$epoch
;
return
$this
;
}
protected
function
loadPage
()
{
$table
=
new
PhabricatorChatLogEvent
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$data
=
queryfx_all
(
$conn_r
,
'SELECT * FROM %T e %Q %Q %Q'
,
$table
->
getTableName
(),
$this
->
buildWhereClause
(
$conn_r
),
$this
->
buildOrderClause
(
$conn_r
),
$this
->
buildLimitClause
(
$conn_r
));
$logs
=
$table
->
loadAllFromArray
(
$data
);
return
$logs
;
}
private
function
buildWhereClause
(
$conn_r
)
{
$where
=
array
();
$where
[]
=
$this
->
buildPagingClause
(
$conn_r
);
if
(
$this
->
maximumEpoch
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'epoch <= %d'
,
$this
->
maximumEpoch
);
}
if
(
$this
->
channelIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'channelID IN (%Ld)'
,
$this
->
channelIDs
);
}
return
$this
->
formatWhereClause
(
$where
);
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorApplicationChatLog'
;
}
}
Event Timeline
Log In to Comment