Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121869079
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
Mon, Jul 14, 11:58
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jul 16, 11:58 (2 d)
Engine
blob
Format
Raw Data
Handle
27404801
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