Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102964744
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
Tue, Feb 25, 22:34
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 27, 22:34 (2 d)
Engine
blob
Format
Raw Data
Handle
24468779
Attached To
rPH Phabricator
PhabricatorBotWhatsNewHandler.php
View Options
<?php
/**
* Responds to "Whats new?" with some recent feed content
*
* @group irc
*/
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