-
Notifications
You must be signed in to change notification settings - Fork 2
/
ircMsg.php
95 lines (79 loc) · 1.99 KB
/
ircMsg.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
class ircMsg
{
private $raw;
private $nick;
private $name;
private $host;
private $server;
private $command;
private $parameters = array();
public function __construct($message)
{
$this->parse($message);
}
public function getRaw()
{
return $this->raw;
}
public function getNick()
{
return $this->nick;
}
public function getName()
{
return $this->name;
}
public function getHost()
{
return $this->host;
}
public function getServer()
{
return $this->server;
}
public function getCommand()
{
return $this->command;
}
public function getParameters()
{
return $this->parameters;
}
private function parse($message)
{
$this->raw = $message;
list($lval, $message) = explode(' ', $message, 2);
if ($lval[0] = ':')
{
$lval = explode('!', $lval, 2);
if (count($lval) === 1)
{
$this->message = substr($lval, 1);
}
else
{
list($this->nick, $sub) = $lval;
$this->nick = substr($this->nick, 1);
list($this->name, $this->host) = explode('@', $sub, 2);
}
list($lval, $message) = explode(' ', $message, 2);
}
$this->command = $lval;
$lval = explode(' ', $message);
foreach ($lval as $key => $value)
{
if ($value[0] == ':')
{
$lval[$key] = substr($value, 1);
$lval = array_merge(
array_slice($lval, 0, $key),
array(implode(' ', array_slice($lval, $key)))
);
$this->parameters = $lval;
return;
}
}
$this->parameters = $lval;
}
}