Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107067680
PhabricatorIRCMessage.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
Fri, Apr 4, 05:05
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Apr 6, 05:05 (2 d)
Engine
blob
Format
Raw Data
Handle
25328952
Attached To
rPH Phabricator
PhabricatorIRCMessage.php
View Options
<?php
final
class
PhabricatorIRCMessage
{
private
$sender
;
private
$command
;
private
$data
;
public
function
__construct
(
$sender
,
$command
,
$data
)
{
$this
->
sender
=
$sender
;
$this
->
command
=
$command
;
$this
->
data
=
$data
;
}
public
function
getRawSender
()
{
return
$this
->
sender
;
}
public
function
getRawData
()
{
return
$this
->
data
;
}
public
function
getCommand
()
{
return
$this
->
command
;
}
public
function
getReplyTo
()
{
switch
(
$this
->
getCommand
())
{
case
'PRIVMSG'
:
$target
=
$this
->
getTarget
();
if
(
$target
[
0
]
==
'#'
)
{
return
$target
;
}
break
;
}
return
null
;
}
public
function
getSenderNickname
()
{
$nick
=
$this
->
getRawSender
();
$nick
=
ltrim
(
$nick
,
':'
);
$nick
=
head
(
explode
(
'!'
,
$nick
));
return
$nick
;
}
public
function
getTarget
()
{
switch
(
$this
->
getCommand
())
{
case
'PRIVMSG'
:
$matches
=
null
;
$raw
=
$this
->
getRawData
();
if
(
preg_match
(
'/^(
\S
+)
\s
/'
,
$raw
,
$matches
))
{
return
$matches
[
1
];
}
break
;
}
return
null
;
}
public
function
getMessageText
()
{
switch
(
$this
->
getCommand
())
{
case
'PRIVMSG'
:
$matches
=
null
;
$raw
=
$this
->
getRawData
();
if
(
preg_match
(
'/^
\S
+
\s
+:?(.*)$/'
,
$raw
,
$matches
))
{
return
rtrim
(
$matches
[
1
],
"
\r\n
"
);
}
break
;
}
return
null
;
}
}
Event Timeline
Log In to Comment