Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122826663
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, Jul 22, 10:02
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Jul 24, 10:02 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27576097
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