Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F465959
ChatLogQueryConduitAPIMethod.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
ChatLogQueryConduitAPIMethod.php
View Options
<?php
final
class
ChatLogQueryConduitAPIMethod
extends
ChatLogConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'chatlog.query'
;
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_UNSTABLE
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Retrieve chatter.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'channels'
=>
'optional list<string>'
,
'limit'
=>
'optional int (default = 100)'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty list<dict>'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$query
=
new
PhabricatorChatLogQuery
();
$channel_ids
=
$request
->
getValue
(
'channelIDs'
);
if
(
$channel_ids
)
{
$query
->
withChannelIDs
(
$channel_ids
);
}
$limit
=
$request
->
getValue
(
'limit'
);
if
(!
$limit
)
{
$limit
=
100
;
}
$query
->
setLimit
(
$limit
);
$logs
=
$query
->
execute
();
$results
=
array
();
foreach
(
$logs
as
$log
)
{
$results
[]
=
array
(
'channelID'
=>
$log
->
getChannelID
(),
'epoch'
=>
$log
->
getEpoch
(),
'author'
=>
$log
->
getAuthor
(),
'type'
=>
$log
->
getType
(),
'message'
=>
$log
->
getMessage
(),
'loggedByPHID'
=>
$log
->
getLoggedByPHID
(),
);
}
return
$results
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 11:50 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
78592
Default Alt Text
ChatLogQueryConduitAPIMethod.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment