Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F454676
PhabricatorChatLogQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
;
}
protected
function
willFilterPage
(
array
$events
)
{
$channel_ids
=
mpull
(
$events
,
'getChannelID'
,
'getChannelID'
);
$channels
=
id
(
new
PhabricatorChatLogChannelQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withIDs
(
$channel_ids
)
->
execute
();
$channels
=
mpull
(
$channels
,
null
,
'getID'
);
foreach
(
$events
as
$key
=>
$event
)
{
$channel
=
idx
(
$channels
,
$event
->
getChannelID
());
if
(!
$channel
)
{
unset
(
$events
[
$key
]);
continue
;
}
$event
->
attachChannel
(
$channel
);
}
return
$events
;
}
protected
function
buildWhereClause
(
AphrontDatabaseConnection
$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
'PhabricatorChatLogApplication'
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 5:39 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
73082
Default Alt Text
PhabricatorChatLogQuery.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment