Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106183080
PhabricatorBotDifferentialNotificationHandler.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
Sun, Mar 23, 08:56
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Mar 25, 08:56 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25113839
Attached To
rPH Phabricator
PhabricatorBotDifferentialNotificationHandler.php
View Options
<?php
/**
* @group irc
*/
final
class
PhabricatorBotDifferentialNotificationHandler
extends
PhabricatorBotHandler
{
private
$skippedOldEvents
;
public
function
receiveMessage
(
PhabricatorBotMessage
$message
)
{
return
;
}
public
function
runBackgroundTasks
()
{
$iterator
=
new
PhabricatorTimelineIterator
(
'ircdiffx'
,
array
(
'difx'
));
$show
=
$this
->
getConfig
(
'notification.actions'
);
if
(!
$this
->
skippedOldEvents
)
{
// Since we only want to post notifications about new events, skip
// everything that's happened in the past when we start up so we'll
// only process real-time events.
foreach
(
$iterator
as
$event
)
{
// Ignore all old events.
}
$this
->
skippedOldEvents
=
true
;
return
;
}
foreach
(
$iterator
as
$event
)
{
$data
=
$event
->
getData
();
if
(!
$data
||
(
$show
!==
null
&&
!
in_array
(
$data
[
'action'
],
$show
)))
{
continue
;
}
$actor_phid
=
$data
[
'actor_phid'
];
$phids
=
array
(
$actor_phid
);
$handles
=
id
(
new
PhabricatorObjectHandleData
(
$phids
))->
loadHandles
();
$verb
=
DifferentialAction
::
getActionPastTenseVerb
(
$data
[
'action'
]);
$actor_name
=
$handles
[
$actor_phid
]->
getName
();
$message_body
=
"{$actor_name} {$verb} revision D"
.
$data
[
'revision_id'
].
"."
;
$channels
=
$this
->
getConfig
(
'notification.channels'
,
array
());
foreach
(
$channels
as
$channel
)
{
$this
->
writeMessage
(
id
(
new
PhabricatorBotMessage
())
->
setCommand
(
'MESSAGE'
)
->
setTarget
(
$channel
)
->
setBody
(
$message_body
));
}
}
}
}
Event Timeline
Log In to Comment