Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107932770
PhabricatorBotSymbolHandler.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
Sat, Apr 12, 02:58
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Apr 14, 02:58 (2 d)
Engine
blob
Format
Raw Data
Handle
25501444
Attached To
rPH Phabricator
PhabricatorBotSymbolHandler.php
View Options
<?php
/**
* Watches for "where is <symbol>?"
*
* @group irc
*/
final
class
PhabricatorBotSymbolHandler
extends
PhabricatorBotHandler
{
public
function
receiveMessage
(
PhabricatorBotMessage
$message
)
{
switch
(
$message
->
getCommand
())
{
case
'MESSAGE'
:
$text
=
$message
->
getBody
();
$matches
=
null
;
if
(!
preg_match
(
'/where(?: in the world)? is (
\S
+?)
\?
/i'
,
$text
,
$matches
))
{
break
;
}
$symbol
=
$matches
[
1
];
$results
=
$this
->
getConduit
()->
callMethodSynchronous
(
'diffusion.findsymbols'
,
array
(
'name'
=>
$symbol
,
));
$default_uri
=
$this
->
getURI
(
'/diffusion/symbol/'
.
$symbol
.
'/'
);
if
(
count
(
$results
)
>
1
)
{
$response
=
"Multiple symbols named '{$symbol}': {$default_uri}"
;
}
else
if
(
count
(
$results
)
==
1
)
{
$result
=
head
(
$results
);
$response
=
$result
[
'type'
].
' '
.
$result
[
'name'
].
' '
.
'('
.
$result
[
'language'
].
'): '
.
nonempty
(
$result
[
'uri'
],
$default_uri
);
}
else
{
$response
=
"No symbol '{$symbol}' found anywhere."
;
}
$this
->
replyTo
(
$message
,
$response
);
break
;
}
}
}
Event Timeline
Log In to Comment