Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F438054
PhabricatorIRCWhatsNewHandler.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
PhabricatorIRCWhatsNewHandler.php
View Options
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Responds to "Whats new?" using the feed.
*
* @group irc
*/
final
class
PhabricatorIRCWhatsNewHandler
extends
PhabricatorIRCHandler
{
private
$floodblock
=
0
;
public
function
receiveMessage
(
PhabricatorIRCMessage
$message
)
{
switch
(
$message
->
getCommand
())
{
case
'PRIVMSG'
:
$reply_to
=
$message
->
getReplyTo
();
if
(!
$reply_to
)
{
break
;
}
$message
=
$message
->
getMessageText
();
$prompt
=
'~what( i|
\'
)?s new
\?
~i'
;
if
(
preg_match
(
$prompt
,
$message
))
{
if
(
time
()
<
$this
->
floodblock
)
{
return
;
}
$this
->
floodblock
=
time
()
+
60
;
$this
->
getLatest
(
$reply_to
);
}
break
;
}
}
public
function
getLatest
(
$reply_to
)
{
$latest
=
$this
->
getConduit
()->
callMethodSynchronous
(
'feed.query'
,
array
(
'limit'
=>
5
));
$phids
=
array
();
foreach
(
$latest
as
$action
)
{
if
(
isset
(
$action
[
'data'
][
'actor_phid'
]))
{
$uid
=
$action
[
'data'
][
'actor_phid'
];
}
else
{
$uid
=
$action
[
'authorPHID'
];
}
switch
(
$action
[
'class'
])
{
case
'PhabricatorFeedStoryDifferential'
:
$phids
[]
=
$action
[
'data'
][
'revision_phid'
];
break
;
case
'PhabricatorFeedStoryAudit'
:
$phids
[]
=
$action
[
'data'
][
'commitPHID'
];
break
;
case
'PhabricatorFeedStoryManiphest'
:
$phids
[]
=
$action
[
'data'
][
'taskPHID'
];
break
;
default
:
$phids
[]
=
$uid
;
break
;
}
array_push
(
$phids
,
$uid
);
}
$infs
=
$this
->
getConduit
()->
callMethodSynchronous
(
'phid.query'
,
array
(
'phids'
=>
$phids
));
$cphid
=
0
;
foreach
(
$latest
as
$action
)
{
if
(
isset
(
$action
[
'data'
][
'actor_phid'
]))
{
$uid
=
$action
[
'data'
][
'actor_phid'
];
}
else
{
$uid
=
$action
[
'authorPHID'
];
}
switch
(
$action
[
'class'
])
{
case
'PhabricatorFeedStoryDifferential'
:
$rinf
=
$infs
[
$action
[
'data'
][
'revision_phid'
]];
break
;
case
'PhabricatorFeedStoryAudit'
:
$rinf
=
$infs
[
$action
[
'data'
][
'commitPHID'
]];
break
;
case
'PhabricatorFeedStoryManiphest'
:
$rinf
=
$infs
[
$action
[
'data'
][
'taskPHID'
]];
break
;
default
:
$rinf
=
array
(
'name'
=>
$action
[
'class'
]);
break
;
}
$uinf
=
$infs
[
$uid
];
$action
=
$this
->
getRhetoric
(
$action
[
'data'
][
'action'
]);
$user
=
$uinf
[
'name'
];
$title
=
$rinf
[
'fullName'
];
$uri
=
$rinf
[
'uri'
];
$color
=
chr
(
3
);
$blue
=
$color
.
'12'
;
$gray
=
$color
.
'15'
;
$bold
=
chr
(
2
);
$reset
=
chr
(
15
);
$content
=
"{$bold}{$user}{$reset} {$gray}{$action} {$blue}{$bold}"
.
"{$title}{$reset} - {$gray}{$uri}{$reset}"
;
$this
->
write
(
'PRIVMSG'
,
"{$reply_to} :{$content}"
);
}
return
;
}
public
function
getRhetoric
(
$input
)
{
switch
(
$input
)
{
case
'comment'
:
case
'none'
:
return
'commented on'
;
break
;
case
'update'
:
return
'updated'
;
break
;
case
'commit'
:
return
'closed'
;
break
;
case
'create'
:
return
'created'
;
break
;
case
'concern'
:
return
'raised concern for'
;
break
;
case
'abandon'
:
return
'abandonned'
;
break
;
case
'accept'
:
return
'accepted'
;
break
;
default
:
return
$input
;
break
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 2:07 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
62877
Default Alt Text
PhabricatorIRCWhatsNewHandler.php (4 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment