Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112135810
PhabricatorBotWhatsNewHandler.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, May 8, 00:57
Size
1 KB
Mime Type
text/x-php
Expires
Sat, May 10, 00:57 (2 d)
Engine
blob
Format
Raw Data
Handle
26017914
Attached To
rPH Phabricator
PhabricatorBotWhatsNewHandler.php
View Options
<?php
/**
* Responds to "Whats new?" with some recent feed content
*/
final
class
PhabricatorBotWhatsNewHandler
extends
PhabricatorBotHandler
{
private
$floodblock
=
0
;
public
function
receiveMessage
(
PhabricatorBotMessage
$message
)
{
switch
(
$message
->
getCommand
())
{
case
'MESSAGE'
:
$message_body
=
$message
->
getBody
();
$now
=
time
();
$prompt
=
'~what( i|
\'
)?s new
\?
~i'
;
if
(
preg_match
(
$prompt
,
$message_body
))
{
if
(
$now
<
$this
->
floodblock
)
{
return
;
}
$this
->
floodblock
=
$now
+
60
;
$this
->
reportNew
(
$message
);
}
break
;
}
}
public
function
reportNew
(
PhabricatorBotMessage
$message
)
{
$latest
=
$this
->
getConduit
()->
callMethodSynchronous
(
'feed.query'
,
array
(
'limit'
=>
5
,
'view'
=>
'text'
,
));
foreach
(
$latest
as
$feed_item
)
{
if
(
isset
(
$feed_item
[
'text'
]))
{
$this
->
replyTo
(
$message
,
html_entity_decode
(
$feed_item
[
'text'
]));
}
}
}
}
Event Timeline
Log In to Comment