fixed small burst parsing bug
[PHP-P10.git] / Uplink / Uplink.class.php
1 <?php
2 /******************************* PHP-P10 v2 *****************************
3  * Copyright (C) 2011  Philipp Kreil (pk910)                            *
4  *                                                                      *
5  * This program is free software: you can redistribute it and/or modify *
6  * it under the terms of the GNU General Public License as published by *
7  * the Free Software Foundation, either version 3 of the License, or    *
8  * (at your option) any later version.                                  *
9  *                                                                      * 
10  * This program is distributed in the hope that it will be useful,      *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
13  * GNU General Public License for more details.                         *
14  *                                                                      *
15  * You should have received a copy of the GNU General Public License    *
16  * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17  *                                                                      *
18  ************************************************************************
19  * 
20  *  Uplink/Uplink.class.php
21  *
22  * This file contains the basic P10 Protocol handler.
23  *
24  */
25 require_once("Client.class.php");
26 require_once("Numerics.class.php");
27 require_once("P10Formatter.class.php");
28 require_once("P10_Server.class.php");
29 require_once("P10_User.class.php");
30 require_once("P10_Channel.class.php");
31 require_once("P10_ModeSets.class.php");
32 require_once("EventHandler.interface.php");
33 require_once("IPAddr.class.php");
34
35 $e=1;
36 define("ERR_NICK_IN_USE", $e++);
37 define("ERR_INVALID_USER", $e++);
38 define("ERR_INVALID_CHANNAME", $e++);
39 define("ERR_NOT_CONNECTED", $e++);
40 define("ERR_NOT_ON_CHANNEL", $e++);
41
42 class Uplink {
43         private $client;
44         private $settings = array();
45         private $server;
46         private $eventHandler = null;
47         private $last_local_numeric = 0;
48         
49         const FLAG_P10SESSION      = 0x0001; //connection is in P10 mode (server is connected)
50         const FLAG_SECURITY_QUIT   = 0x0002; //local connection abort because of security issues
51         const FLAG_NOT_CONNECTABLE = 0x0004; //remote server is not connectable
52         const FLAG_BURST_PENDING   = 0x0008; //we still have to burst
53         const FLAG_CONNECTED       = 0x0010; //connected and synced (ready)
54         const FLAG_GOT_PASS        = 0x0020; //got PASS from the remote Server
55         private $flags = 0;
56         
57         public function __construct() {
58                 $this->client = new Client();
59                 $this->setSetting("recv_timeout", 1000);
60                 $this->setSetting("his_usermask", "user.NoMask");
61         }
62         
63         public function initialize() {
64                 if($this->server) {
65                         trigger_error("Uplink already initialized.", E_USER_ERROR);
66                         return;
67                 }
68                 $self_numeric = $this->getSetting("numeric");
69                 $self_name = $this->getSetting("name");
70                 $self_description = $this->getSetting("description");
71                 if(!$self_numeric || !$self_name) {
72                         trigger_error("Server Settings missing.", E_USER_ERROR);
73                         return;
74                 }
75                 $this->server = new P10_Server($self_name, $self_numeric, null, time(), time(), $self_description);
76         }
77         
78         public function loop() {
79                 if($this->server == null) {
80                         trigger_error("Uplink not initialized.", E_USER_ERROR);
81                         return;
82                 }
83                 if(!$this->client->connected()) {
84                         if(($this->flags & self::FLAG_P10SESSION)) {
85                                 //Server got disconnected
86                                 $this->server->disconnectServer($this->eventHandler, true);
87                                 $this->flags &= ~self::FLAG_P10SESSION;
88                         }
89                         $host = $this->getSetting("host");
90                         $port = $this->getSetting("port");
91                         if($host == null || $port == null) {
92                                 trigger_error("Uplink Settings missing.", E_USER_ERROR);
93                                 return;
94                         }
95                         if(($this->flags & self::FLAG_SECURITY_QUIT) || ($this->flags & self::FLAG_NOT_CONNECTABLE)) {
96                                 sleep(1);
97                         }
98                         $state = $this->client->connect($host, $port, $this->getSetting("bind"), $this->getSetting("ssl"), $this->getSetting("recv_timeout"));
99                         if(!$state) {
100                                 usleep($this->getSetting("recv_timeout") / 1000);
101                                 $this->flags |= self::FLAG_NOT_CONNECTABLE;
102                                 return;
103                         }
104                         $this->flags = 0;
105                         $this->loginServer();
106                 }
107                 //try to receive new data from the Uplink
108                 $lines = $this->client->recv();
109                 if($lines == null) return;
110                 foreach($lines as $line) {
111                         $this->parseLine($line);
112                 }
113         }
114         
115         public function shutdown() {
116                 if($this->client->connected()) {
117                         if(($this->flags & self::FLAG_P10SESSION)) {
118                                 $this->send("SQ", "Shutdown requested.");
119                         }
120                         $this->client->disconnect();
121                 }
122         }
123         
124         public function setUplinkHost($host, $port, $ssl = false, $bind = null) {
125                 $this->setSetting("host", $host);
126                 $this->setSetting("port", $port);
127                 $this->setSetting("ssl", $ssl);
128                 $this->setSetting("bind", $bind);
129         }
130         
131         public function setLoopTimeout($timeout) {
132                 $this->setSetting("recv_timeout", $timeout);
133         }
134         
135         public function setUplinkServer($numeric, $name, $password, $description) {
136                 $this->setSetting("numeric", Numerics::intToNum($numeric, 2));
137                 $this->setSetting("name", $name);
138                 $this->setSetting("password", $password);
139                 $this->setSetting("description", $description);
140         }
141         
142         public function setValidateServer($name, $password) {
143                 $this->setSetting("their_name", $name);
144                 $this->setSetting("their_password", $password);
145         }
146         
147         public function setHISOptions($servername, $serverdesc, $usermask) {
148                 $this->setSetting("his_name", $servername);
149                 $this->setSetting("his_desc", $serverdesc);
150                 $this->setSetting("his_usermask", $usermask);
151         }
152         
153         public function setEventHandler($event_handler) {
154                 if(!is_a($event_handler, "EventHandler")) {
155                         trigger_error((is_object($event_handler) ? get_class($event_handler) : gettype($event_handler))." is NOT a valid EventHandler.", E_USER_ERROR);
156                         return;
157                 }
158                 $this->eventHandler = $event_handler;
159         }
160         
161         private function setSetting($setting, $value) {
162                 $this->settings[$setting] = $value;
163         }
164         
165         private function getSetting($setting) {
166                 if(array_key_exists($setting, $this->settings)) {
167                         return $this->settings[$setting];
168                 } else {
169                         return null;
170                 }
171         }
172         
173         private function loginServer() {
174                 $password = $this->getSetting("password");
175                 $this->send("PASS", $password);
176                 $this->send("SERVER", $this->server->getName(), $this->server->getStartTime(), $this->server->getLinkTime(), $this->server->getNumeric(), $this->server->getDescription());
177         }
178         
179         private function parseLine($line) {
180                 $highExplode = explode(" :", $line, 2);
181                 $tokens = explode(" ", $highExplode[0]);
182                 if(count($highExplode) > 1)
183                         $tokens[] = $highExplode[1];
184                 $cmdPos = (($this->flags & self::FLAG_P10SESSION) ? 1 : 0);
185                 if($cmdPos == 1) $from = $tokens[0];
186                 else $from = null;
187                 $arguments = array_slice($tokens, $cmdPos + 1);
188                 if(($this->flags & self::FLAG_P10SESSION) && $this->eventHandler) {
189                         $this->eventHandler->event_preparse($from, strtoupper($tokens[$cmdPos]), $arguments);
190                 }
191                 switch(strtoupper($tokens[$cmdPos])) {
192                 //pre P10 Session
193                         case "PASS":
194                                 $this->recv_pass($from, $arguments);
195                                 break;
196                         case "SERVER":
197                                 $this->recv_server($from, $arguments);
198                                 break;
199                         case "ERROR":
200                                 $this->recv_error($from, $arguments);
201                                 break;
202                 //P10 Session
203                         case "S":
204                                 $this->recv_server($from, $arguments);
205                                 break;
206                         case "G":
207                                 $this->recv_ping($from, $arguments);
208                                 break;
209                         case "N":
210                                 $this->recv_nick($from, $arguments);
211                                 break;
212                         case "EB":
213                                 $this->recv_end_of_burst($from, $arguments);
214                                 break;
215                         case "EA":
216                                 $this->recv_end_of_burst_ack($from, $arguments);
217                                 break;
218                         case "SQ":
219                                 $this->recv_server_quit($from, $arguments);
220                                 break;
221                         case "Q":
222                                 $this->recv_quit($from, $arguments);
223                                 break;
224                         case "B":
225                                 $this->recv_burst($from, $arguments);
226                                 break;
227                         case "J":
228                         case "C":
229                                 $this->recv_join($from, $arguments);
230                                 break;
231                         case "L":
232                                 $this->recv_part($from, $arguments);
233                                 break;
234                         case "K":
235                                 $this->recv_kick($from, $arguments);
236                                 break;
237                         case "D":
238                                 $this->recv_kill($from, $arguments);
239                                 break;
240                         case "P":
241                                 $this->recv_privmsg($from, $arguments);
242                                 break;
243                         case "O":
244                                 $this->recv_notice($from, $arguments);
245                                 break;
246                         case "W":
247                                 $this->recv_whois($from, $arguments);
248                                 break;
249                         case "A":
250                                 $this->recv_away($from, $arguments);
251                                 break;
252                         case "M":
253                         case "OM":
254                                 $this->recv_mode($from, $arguments);
255                                 break;
256                 //default
257                         default:
258                                 //unknown cmd
259                                 if($this->eventHandler)
260                                         $this->eventHandler->event_unknown_cmd($from, strtoupper($tokens[$cmdPos]), $arguments);
261                                 break;
262                 }
263         }
264         
265         private function send($command) {
266                 if(func_num_args() > 1) {
267                         $args = array_slice(func_get_args(), 1);
268                         $command = P10Formatter::formatCMD($this->getSetting("numeric"), $command, $args);
269                 } else {
270                         $command = P10Formatter::formatCMD($this->getSetting("numeric"), $command, array());
271                 }
272                 $this->client->send($command);
273         }
274         
275         /********************************************************************************************
276          *                                     INCOMING COMMANDS                                    *
277          ********************************************************************************************/
278         
279         private function recv_pass($from, $args) {
280                 $their_pass = $this->getSetting("their_password");
281                 if($their_pass) {
282                         if($args[0] != $their_pass) {
283                                 //security QUIT
284                                 $this->flags |= self::FLAG_SECURITY_QUIT;
285                                 $this->send("ERROR", "Incorrect password received.");
286                                 $this->client->disconnect();
287                                 return;
288                         }
289                         $this->flags |= self::FLAG_GOT_PASS;
290                 }
291         }
292         
293         private function recv_error($from, $args) {
294                 //we received an error - the socket is dead for us, now
295                 //maybe we want to log this, later
296                 $this->client->disconnect();
297         }
298         
299         private function recv_server($from, $args) {
300                 if($from == null) {
301                         //our uplink Server
302                         $their_name = $this->getSetting("their_name");
303                         if($their_name && $args[0] != $their_name) {
304                                 $this->flags |= self::FLAG_SECURITY_QUIT;
305                                 $this->send("ERROR", "Invalid Server name");
306                                 $this->client->disconnect();
307                                 return;
308                         }
309                         if($this->getSetting("their_password") && !($this->flags & self::FLAG_GOT_PASS)) {
310                                 $this->flags |= self::FLAG_SECURITY_QUIT;
311                                 $this->send("ERROR", "PASS missing.");
312                                 $this->client->disconnect();
313                                 return;
314                         }
315                         $new_server = new P10_Server($args[0], substr($args[5],0,2), $this->server, $args[2], $args[3], $args[7]);
316                         $this->server->addServer($new_server);
317                         $this->flags |= self::FLAG_P10SESSION | self::FLAG_BURST_PENDING;
318                         if($this->eventHandler)
319                                 $this->eventHandler->event_newserver($new_server, !($this->flags & self::FLAG_CONNECTED));
320                 } else {
321                         //another server got a new slave server ^^
322                         $server = P10_Server::getServerByNum($from);
323                         if($server == null) {
324                                 trigger_error("Parent Server (".$from.") does not exist or was not found on recv_server.", E_USER_ERROR);
325                                 return;
326                         }
327                         $new_server = new P10_Server($args[0], substr($args[5],0,2), $server, $args[2], $args[3], $args[7]);
328                         $server->addServer($new_server);
329                         if($this->eventHandler)
330                                 $this->eventHandler->event_newserver($new_server, !($this->flags & self::FLAG_CONNECTED));
331                 }
332         }
333         
334         private function recv_ping($from, $args) {
335                 $this->send("Z", $args[0]); //simply PONG
336                 P10_Channel::recheckAllChannels();
337         }
338         
339         private function recv_nick($from, $args) {
340                 if(count($args) <= 2) {
341                         //Nick change
342                         $user = P10_User::getUserByNum($from);
343                         if($user == null) {
344                                 trigger_error("Server tries to change the nick of an user that does not exist or was not found on recv_nick.", E_USER_ERROR);
345                                 return;
346                         }
347                         if($this->eventHandler)
348                                 $this->eventHandler->event_nick($user, $args[0]);
349                         $user->setNick($args[0]);
350                 } else {
351                         //New User
352                         $numeric = $args[count($args)-2];
353                         $nick = $args[0];
354                         $server = P10_Server::getServerByNum($from);
355                         if($server == null) {
356                                 trigger_error("Server (".$from.") the User (".$nick.") is coming from does not exist or was not found on recv_nick.", E_USER_ERROR);
357                                 return;
358                         }
359                         if(substr($numeric,0,2) != $from) {
360                                 trigger_error("A Server (".$from.") tries to connect a User with an invalid User numeric ('".$numeric."' does not belong to the Server)", E_USER_WARNING);
361                         }
362                         $connect_time = $args[2];
363                         $ident = $args[3];
364                         $host = $args[4];
365                         $modes = implode(" ",array_slice($args, 5, count($args)-8));
366                         $modes = new P10_UserModeSet($modes);
367                         $ip = new IPAddr($args[count($args)-3]);
368                         $realname = $args[count($args)-1];
369                         $user = new P10_User($nick, $numeric, $server, $connect_time, $ident, $host, $ip, $realname, $modes);
370                         if($this->eventHandler)
371                                 $this->eventHandler->event_connect($user, !($this->flags & self::FLAG_CONNECTED));
372                 }
373         }
374         
375         private function recv_end_of_burst($from, $args) {
376                 if(($this->flags & self::FLAG_BURST_PENDING)) {
377                         $this->burst();
378                         $this->send("EA");
379                         $this->flags &= ~self::FLAG_BURST_PENDING;
380                 }
381         }
382         
383         private function recv_end_of_burst_ack($from, $args) {
384                 $this->flags |= self::FLAG_CONNECTED;
385         }
386         
387         private function recv_server_quit($from, $args) {
388                 $server = P10_Server::getServerByName($args[0]);
389                 if($server == null) {
390                         trigger_error("Server (".$args[0].") not found.", E_USER_ERROR);
391                         return;
392                 }
393                 $server->disconnectServer($this->eventHandler);
394         }
395         
396         private function recv_quit($from, $args) {
397                 $user = P10_User::getUserByNum($from);
398                 if($user == null) {
399                         trigger_error("Server tries to quit an user that does not exist or was not found on recv_quit.", E_USER_ERROR);
400                         return;
401                 }
402                 if($this->eventHandler)
403                         $this->eventHandler->event_quit($user, $args[0]);
404                 $user->quit($args[0]);
405         }
406         
407         private function recv_burst($from, $args) {
408                 $name = $args[0];
409                 $create_time = $args[1];
410         if(count($args) == 2) {
411             //we've got an empty channel without any modes set???  dead channel!
412             return;
413         }
414                 $channel = P10_Channel::getChannelByName($name);
415                 if($channel == null)
416                         $channel = new P10_Channel($name);
417                 $channel->setCreateTime($create_time);
418                 $modes = $channel->getModes();
419                 $userstr = $args[count($args)-1];
420                 $modeparamcount = count($args)-3;
421                 if($userstr[0] == "%") {
422                         //ban list
423                         $banlist = explode(" ", substr($userstr, 1));
424                         foreach($banlist as $ban) {
425                                 //TODO: save bans
426                         }
427                         $userstr = $args[count($args)-2];
428                         $modeparamcount--;
429                 }
430                 if($userstr[0] == "+") { //MODE String
431                         $modeparamcount++;
432                         $userstr = "";
433                 }
434                 $users = explode(",",$userstr);
435                 $isop = false; $isvoice = false;
436                 foreach($users as $user) {
437                         if($user == "") continue;
438                         $uexp = explode(":", $user);
439                         if(strlen($uexp[0]) != 5) {
440                                 trigger_error("burst parse error: '".$uexp[0]."' is not an user numeric.", E_USER_ERROR);
441                                 return;
442                         }
443                         if(count($uexp) > 1) {
444                                 $isop = false;
445                                 $isvoice = false;
446                                 for($i = 0; $i < strlen($uexp[1]); $i++) {
447                                         if($uexp[1][0] == "@") $isop = true;
448                                         if($uexp[1][0] == "+") $isvoice = true;
449                                 }
450                         }
451                         $user = P10_User::getUserByNum($uexp[0]);
452                         if($user == null) {
453                                 trigger_error("burst parse error: cant find User '".$uexp[0]."'.", E_USER_ERROR);
454                                 return;
455                         }
456                         $channel->burstUser($user, $isop, $isvoice);
457                         if($this->eventHandler)
458                                 $this->eventHandler->event_join($user, $channel, true);
459                 }
460                 $modes->parseModes(implode(" ", array_slice($args, 2, $modeparamcount)));
461         }
462         
463         private function recv_join($from, $args) {
464                 $user = P10_User::getUserByNum($from);
465                 if($user == null) {
466                         trigger_error("Server tries to join an user that does not exist or was not found on recv_join.", E_USER_ERROR);
467                         return;
468                 }
469                 $channel = P10_Channel::getChannelByName($args[0]);
470                 if($channel == null)
471                         $channel = new P10_Channel($args[0]);
472                 $channel->joinUser($user);
473                 if($this->eventHandler)
474                         $this->eventHandler->event_join($user, $channel, false);
475         }
476         
477         private function recv_part($from, $args) {
478                 $user = P10_User::getUserByNum($from);
479                 if($user == null) {
480                         trigger_error("Server tries to part an user that does not exist or was not found on recv_join.", E_USER_ERROR);
481                         return;
482                 }
483                 $channel = P10_Channel::getChannelByName($args[0]);
484                 if($channel == null)
485                         $channel = new P10_Channel($args[0]);
486                 if($this->eventHandler)
487                         $this->eventHandler->event_part($user, $channel, $args[1]);
488                 $channel->partUser($user);
489         }
490         
491         private function recv_kick($from, $args) {
492                 $user = P10_User::getUserByNum($from);
493                 if($user == null) {
494                         trigger_error("An unknown user tries to kick another user on recv_kick.", E_USER_ERROR);
495                         return;
496                 }
497                 $channel = P10_Channel::getChannelByName($args[0]);
498                 if($channel == null)
499                         $channel = new P10_Channel($args[0]);
500                 $target = P10_User::getUserByNum($args[1]);
501                 if($target == null) {
502                         trigger_error("Someone tries to kick an user that does not exist or was not found on recv_kick.", E_USER_ERROR);
503                         return;
504                 }
505                 if($this->eventHandler)
506                         $this->eventHandler->event_kick($user, $target, $channel, $args[1]);
507                 $channel->partUser($user);
508         }
509         
510         private function recv_kill($from, $args) {
511                 $user = P10_User::getUserByNum($args[0]);
512                 if($user == null) {
513                         trigger_error("Server tries to kill an user that does not exist or was not found on recv_quit.", E_USER_ERROR);
514                         return;
515                 }
516                 if($this->eventHandler)
517                         $this->eventHandler->event_quit($user, "Killed (".$args[1].")");
518                 $user->quit($args[1]);
519         }
520         
521         private function recv_privmsg($from, $args) {
522                 $user = P10_User::getUserByNum($from);
523                 if($user == null) {
524                         trigger_error("Server tries to send a privmsg from an user that does not exist or was not found on recv_privmsg.", E_USER_ERROR);
525                         return;
526                 }
527                 if($this->eventHandler) {
528                         if($args[0][0] == "#") {
529                                 $channel = P10_Channel::getChannelByName($args[0]);
530                                 if($channel == null)
531                                         $channel = new P10_Channel($args[0]);
532                                 if(strlen($args[1]) > 0 && $args[1][0] == "\001") {
533                                         //ctcp
534                                         $args[1] = substr($args[1],1);
535                                         if($args[1][strlen($args[1])-1] == "\001")
536                                                 $args[1] = substr($args[1],0,-1);
537                                         $ctcpexp = explode(" ",$args[1],2);
538                                         $this->eventHandler->event_chanctcp($user, $channel, strtoupper($ctcpexp[0]), (count($ctcpexp) > 1 ? $ctcpexp[1] : null));
539                                 } else
540                                         $this->eventHandler->event_chanmessage($user, $channel, $args[1]);
541                         } else {
542                                 $targetUser = P10_User::getUserByNum($args[0]);
543                                 if($targetUser == null) {
544                                         trigger_error("Server tries to send a privmsg to an user that does not exist or was not found on recv_privmsg.", E_USER_ERROR);
545                                         return;
546                                 }
547                                 if(strlen($args[1]) > 0 && $args[1][0] == "\001") {
548                                         //ctcp
549                                         $args[1] = substr($args[1],1);
550                                         if($args[1][strlen($args[1])-1] == "\001")
551                                                 $args[1] = substr($args[1],0,-1);
552                                         $ctcpexp = explode(" ",$args[1],2);
553                                         $this->eventHandler->event_privctcp($user, $targetUser, strtoupper($ctcpexp[0]), (count($ctcpexp) > 1 ? $ctcpexp[1] : null));
554                                 } else
555                                         $this->eventHandler->event_privmessage($user, $targetUser, $args[1]);
556                         }
557                 }
558         }
559         
560         private function recv_notice($from, $args) {
561                 $user = P10_User::getUserByNum($from);
562                 if($user == null) {
563                         trigger_error("Server tries to send a notice from an user that does not exist or was not found on recv_notice.", E_USER_ERROR);
564                         return;
565                 }
566                 if($this->eventHandler) {
567                         if($args[0][0] == "#") {
568                                 $channel = P10_Channel::getChannelByName($args[0]);
569                                 if($channel == null)
570                                         $channel = new P10_Channel($args[0]);
571                                 if(strlen($args[1]) > 0 && $args[1][0] == "\001") {
572                                         //ctcp
573                                         $args[1] = substr($args[1],1);
574                                         if($args[1][strlen($args[1])-1] == "\001")
575                                                 $args[1] = substr($args[1],0,-1);
576                                         $ctcpexp = explode(" ",$args[1],2);
577                                         $this->eventHandler->event_chanctcpreply($user, $channel, strtoupper($ctcpexp[0]), (count($ctcpexp) > 1 ? $ctcpexp[1] : null));
578                                 } else
579                                         $this->eventHandler->event_channotice($user, $channel, $args[1]);
580                         } else {
581                                 $targetUser = P10_User::getUserByNum($args[0]);
582                                 if($targetUser == null) {
583                                         trigger_error("Server tries to send a notice to an user that does not exist or was not found on recv_notice.", E_USER_ERROR);
584                                         return;
585                                 }
586                                 if(strlen($args[1]) > 0 && $args[1][0] == "\001") {
587                                         //ctcp
588                                         $args[1] = substr($args[1],1);
589                                         if($args[1][strlen($args[1])-1] == "\001")
590                                                 $args[1] = substr($args[1],0,-1);
591                                         $ctcpexp = explode(" ",$args[1],2);
592                                         $this->eventHandler->event_privctcpreply($user, $targetUser, strtoupper($ctcpexp[0]), (count($ctcpexp) > 1 ? $ctcpexp[1] : null));
593                                 } else
594                                         $this->eventHandler->event_privnotice($user, $targetUser, $args[1]);
595                         }
596                 }
597         }
598         
599         private function recv_whois($from, $args) {
600                 /* [get] ACAAF W AX :NetworkServ */
601                 $fromUser = P10_User::getUserByNum($from);
602                 if($fromUser == null) {
603                         trigger_error("Server tries to send a whois from an user that does not exist or was not found on recv_whois.", E_USER_ERROR);
604                         return;
605                 }
606                 $users=explode(",",$args[1]);
607                 foreach($users as $nick) {
608                         $user = P10_User::getUserByNick($nick);
609                         if(!$user) {
610                                 $this->send("401", $from, $nick);
611                                 continue;
612                         }
613                         $nick = $user->getNick();
614                         $ident = $user->getIdent();
615                         $hostmask = $user->getHost();
616                         $modes = $user->getModes();
617                         if($modes->hasMode('x')) {
618                                 if(($fakehost = $modes->hasMode('f'))) {
619                                         $hostmask = $fakehost;
620                                 } elseif(($account = $modes->hasMode('r'))) {
621                                         $hostmask = $account.".".$this->getSetting("his_usermask");
622                                 }
623                         }
624                         $realname = $user->getRealname();
625                         $this->send("311", $from , $nick, $ident, $hostmask, $realname);
626                         if(((!$modes->hasMode('n') && !$modes->hasMode('k')) || $from == $user->getNumeric()) && count($user->getChannels()) != 0) {
627                                 $channels = "";
628                                 foreach($user->getChannels() as $channel) {
629                                         $cmodes = $channel->getModes();
630                                         $privs = $channel->getUserPrivs($user);
631                                         if($cmodes->hasMode("s") && !$fromUser->isOnChannel($channel) && $from != $user->getNumeric()) continue;
632                                         if($cmodes->hasMode("u") && ($privs & (P10_Channel::USERPRIV_OPED | P10_Channel::USERPRIV_VOICE)) == 0 && $from != $user->getNumeric()) continue;
633                                         $chanstr = ($channels == "" ? "" : " ");
634                                         $prefix = "";
635                                         if(($privs & P10_Channel::USERPRIV_OPED)) {
636                                                 $prefix = "@";
637                                         } else if(($privs & P10_Channel::USERPRIV_VOICE)) {
638                                                 $prefix = "+";
639                                         }
640                                         $chanstr .= $prefix.$channel->getName();
641                                         if(strlen($channels) + strlen($chanstr) > 450) {
642                                                 $this->send("319", $from, $nick, $channels);
643                                                 $channels = $prefix.$channel->getName();
644                                         }
645                                 }
646                                 if($channels != "") {
647                                         $this->send("319", $from, $nick, $channels);
648                                 }
649                         }
650                         if($fromUser->getModes()->hasMode("o") || $from == $user->getNumeric() || !$this->getSetting("his_name")) {
651                                 $this->send("312", $from, $nick, $user->getServer()->getName(), $user->getServer()->getDescription());
652                         } else {
653                                 $this->send("312", $from, $nick, $this->getSetting("his_name"), $this->getSetting("his_desc"));
654                         }
655                         if($modes->hasMode("o") && (!$modes->hasMode("H") || $fromUser->getModes()->hasMode("o"))) {
656                                 if($modes->hasMode("S")) {
657                                         if($modes->hasMode("D"))
658                                                 $this->send("313", $from, $nick, "is a Network Service");
659                                         else
660                                                 $this->send("313", $from, $nick, "is an illegal Network Service - HACKER!");
661                                 } else
662                                         $this->send("313", $from, $nick, "is an IRC Operator");
663                         }
664                         if(($auth = $modes->hasMode("r"))) {
665                                 $this->send("330", $from, $nick, $auth);
666                         }
667                 }
668                 $this->send("318", $from, $args[1]);
669         }
670         
671         private function recv_away($from, $args) {
672                 $user = P10_User::getUserByNum($from);
673                 if($user == null) {
674                         trigger_error("Server tries to send an away command from an user that does not exist or was not found on recv_away.", E_USER_ERROR);
675                         return;
676                 }
677                 if(count($args) > 0) {
678                         $user->setAway($args[0]);
679                         if($this->eventHandler)
680                                 $this->eventHandler->event_away($user, $args[0]);
681                 } else {
682                         $user->setAway(null);
683                         if($this->eventHandler)
684                                 $this->eventHandler->event_away($user, null);
685                 }
686         }
687         
688         private function recv_mode($from, $args) {
689                 $user = P10_User::getUserByNum($from);
690                 if($user == null) {
691                         trigger_error("Server tries to send a modechange from an user that does not exist or was not found on recv_mode.", E_USER_ERROR);
692                         return;
693                 }
694                 $modes = implode(" ",array_slice($args,1));
695                 if($args[0][0] == "#") {
696                         $channel = P10_Channel::getChannelByName($args[0]);
697                         if($channel == null)
698                                 $channel = new P10_Channel($args[0]);
699                         $channel->getModes()->setModes($modes);
700                         if($this->eventHandler)
701                                 $this->eventHandler->event_chanmode($user, $channel, $modes);
702                 } else {
703                         $targetUser = P10_User::getUserByNick($args[0]);
704                         if($targetUser == null) {
705                                 trigger_error("Server tries to send a mode to an user that does not exist or was not found on recv_mode.", E_USER_ERROR);
706                                 return;
707                         }
708                         $targetUser->getModes()->setModes($modes);
709                         if($this->eventHandler)
710                                 $this->eventHandler->event_usermode($targetUser, $modes);
711                 }
712         }
713         
714         /********************************************************************************************
715          *                                     SERVER FUNCTIONS                                     *
716          ********************************************************************************************/
717         
718         private function burst() {
719                 foreach($this->server->getUsers() as $user) {
720                         $nick = $user->getNick();
721                         $connect_time = $user->getConnectTime();
722                         $ident = $user->getIdent();
723                         $host = $user->getHost();
724                         $modes = $user->getModes()->getModeString();
725                         $ip = $user->getIP()->getNumeric();
726                         $numeric = $user->getNumeric();
727                         $realname = $user->getRealname();
728                         $this->send("N", $nick, $connect_time, $ident, $host, $modes, $ip, $numeric, $realname);
729                 }
730                 foreach(P10_Channel::getChannels() as $channel) {
731                         $sorted_users = array('ov' => array(), 'o' => array(), 'v' => array(), '-' => array());
732                         $local_users = false;
733                         foreach($channel->getUsers() as $user) {
734                                 if(substr($user->getNumeric(), 0, 2) != $this->server->getNumeric()) continue; //skip users that are not on the local server
735                                 $privs = $channel->getUserPrivs($user);
736                                 $strPrivs = "";
737                                 if(($privs & P10_Channel::USERPRIV_OPED)) $strPrivs .= "o";
738                                 if(($privs & P10_Channel::USERPRIV_VOICE)) $strPrivs .= "v";
739                                 if($strPrivs == "") $strPrivs = "-";
740                                 $local_users = true;
741                                 $sorted_users[$strPrivs][] = $user;
742                         }
743                         if(!$local_users) continue;
744                         $userStr = "";
745                         foreach($sorted_users['-'] as $user) {
746                                 if($userStr != "") $userStr.=",";
747                                 $userStr .= $user->getNumeric();
748                         }
749                         foreach($sorted_users['ov'] as $i => $user) {
750                                 if($userStr != "") $userStr.=",";
751                                 $userStr .= $user->getNumeric();
752                                 if($i == 0) $userStr .= ":ov";
753                         }
754                         foreach($sorted_users['o'] as $i => $user) {
755                                 if($userStr != "") $userStr.=",";
756                                 $userStr .= $user->getNumeric();
757                                 if($i == 0) $userStr .= ":o";
758                         }
759                         foreach($sorted_users['v'] as $i => $user) {
760                                 if($userStr != "") $userStr.=",";
761                                 $userStr .= $user->getNumeric();
762                                 if($i == 0) $userStr .= ":v";
763                         }
764                         $banString = "";
765                         //TODO: Build ban String
766                         $burstString = "";
767                         $modeString = $channel->getModes()->getModeString();
768                         if($modeString != "+") {
769                                 $burstString .= $modeString;
770                         }
771                         if($userStr != "") {
772                                 if($burstString != "") $burstString .= " ";
773                                 $burstString .= $userStr;
774                         }
775                         if($banString != "") {
776                                 if($burstString != "") $burstString .= " ";
777                                 $burstString .= ":%".$banString;
778                         }
779                         $this->send("B", $channel->getName(), $channel->getCreateTime(), $burstString);
780                 }
781                 $this->send("EB");
782         }
783         
784         /********************************************************************************************
785          *                                    LOCAL USER FUNCTIONS                                  *
786          ********************************************************************************************/
787         
788         public function addUser($nick, $ident, $host, $ip, $modes, $realname) {
789                 $user = P10_User::getUserByNick($nick);
790                 if($user != null) return ERR_NICK_IN_USE;
791                 $numeric = substr($this->server->getNumeric(),0,2).Numerics::intToNum($this->last_local_numeric, 3);
792                 while(P10_User::getUserByNum($numeric)) {
793                         $this->last_local_numeric++;
794                         $numeric = substr($this->server->getNumeric(),0,2).Numerics::intToNum($this->last_local_numeric, 3);
795                 }
796                 $this->last_local_numeric++;
797                 $modes = new P10_UserModeSet($modes);
798                 $ip = new IPAddr($ip);
799                 $user = new P10_User($nick, $numeric, $this->server, time(), $ident, $host, $ip, $realname, $modes);
800                 if(($this->flags & self::FLAG_CONNECTED)) {
801                         $ip = $user->getIP()->getNumeric();
802                         $this->send("N", $nick, $user->getConnectTime(), $ident, $host, $user->getModes()->getModeString(), $ip, $numeric, $realname);
803                 }
804                 return $user;
805         }
806         
807         public function delUser($user, $reason) {
808                 if(!is_a($user, "P10_User")) return ERR_INVALID_USER;
809                 if($user->getServer() === $this->server) {
810                         //local user (QUIT)
811                         $user->quit($reason);
812                         if(($this->flags & self::FLAG_CONNECTED)) 
813                                 $this->send("Q", $user->getNumeric(), $reason);
814                 } else {
815                         //remote user (KILL)
816                         if(!($this->flags & self::FLAG_CONNECTED)) 
817                                 return ERR_NOT_CONNECTED;
818                         if($this->eventHandler)
819                                 $this->eventHandler->event_quit($user, "Killed (".$reason.")");
820                         $user->quit("Killed (".$reason.")");
821                         $name = ($this->getSetting('his_name') ? $this->getSetting('his_name') : $this->getSetting('name'));
822
823                         $this->send("D", $user->getNumeric(), $name, $reason);
824                 }
825         }
826         
827         public function join($user, $chanName, $privs = 0) {
828                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
829                         return ERR_INVALID_USER;
830                 if($chanName[0] != "#")
831                         return ERR_INVALID_CHANNAME;
832                 $channel = P10_Channel::getChannelByName($chanName);
833                 if($channel == null)
834                         $channel = new P10_Channel($chanName);
835                 $channel->joinUser($user);
836                 if(($this->flags & self::FLAG_CONNECTED))
837                         $this->send("J", $user->getNumeric(), $chanName, time(), 0);
838                 if($privs != 0) {
839                         $channel->setUserPrivs($user, $privs);
840                         if(($this->flags & self::FLAG_CONNECTED)) {
841                                 $modestr = "+".(($privs & P10_Channel::USERPRIV_OPED) ? "o" : "").(($privs & P10_Channel::USERPRIV_VOICE) ? "v" : "");
842                                 $modestr .= (($privs & P10_Channel::USERPRIV_OPED) ? " ".$user->getNumeric() : "");
843                                 $modestr .= (($privs & P10_Channel::USERPRIV_VOICE) ? " ".$user->getNumeric() : "");
844                                 $this->send("OM", $user->getNumeric(), $chanName, $modestr);
845                         }
846                 }
847                 if($this->eventHandler)
848                         $this->eventHandler->event_join($user, $channel, false);
849         }
850         
851         public function part($user, $chanName, $reason) {
852                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
853                         return ERR_INVALID_USER;
854                 if(!((is_string($chanName) && $chanName[0] == "#") || is_a($chanName, "P10_Channel")))
855                         return ERR_INVALID_CHANNAME;
856                 if(is_a($chanName, "P10_Channel"))
857                         $channel = $chanName;
858                 else
859                         $channel = P10_Channel::getChannelByName($chanName);
860                 if($channel == null)
861                         $channel = new P10_Channel($chanName);
862                 if(!$user->isOnChannel($channel)) 
863                         return ERR_NOT_ON_CHANNEL;
864                 if($this->eventHandler)
865                         $this->eventHandler->event_part($user, $channel, $reason);
866                 $channel->partUser($user, $reason);
867                 if(($this->flags & self::FLAG_CONNECTED))
868                         $this->send("L", $user->getNumeric(), $chanName, $reason);
869         }
870         
871         public function kick($user, $target, $chanName, $reason) {
872                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
873                         return ERR_INVALID_USER;
874                 if(!is_a($target, "P10_User"))
875                         return ERR_INVALID_USER;
876                 if(!((is_string($chanName) && $chanName[0] == "#") || is_a($chanName, "P10_Channel")))
877                         return ERR_INVALID_CHANNAME;
878                 if(is_a($chanName, "P10_Channel"))
879                         $channel = $chanName;
880                 else
881                         $channel = P10_Channel::getChannelByName($chanName);
882                 if($channel == null)
883                         $channel = new P10_Channel($chanName);
884                 if(!$target->isOnChannel($channel)) 
885                         return ERR_NOT_ON_CHANNEL;
886                 if($this->eventHandler)
887                         $this->eventHandler->event_kick($user, $target, $channel, $reason);
888                 $channel->partUser($target, $reason);
889                 if(($this->flags & self::FLAG_CONNECTED))
890                         $this->send("K", $user->getNumeric(), $chanName, $target->getNumeric(), $reason);
891         }
892         
893         public function privmsg($user, $target, $message) {
894                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
895                         return ERR_INVALID_USER;
896                 if(!is_a($target, "P10_User") && !is_a($target, "P10_Channel") && !(is_string($target) && ($target[0] == "#" || P10_User::getUserByNick($target))))
897                         return ERR_INVALID_USER;
898                 if(is_a($target, "P10_Channel"))
899                         $targetStr = $target->getName();
900                 else if(is_a($target, "P10_User"))
901                         $targetStr = $target->getNumeric();
902                 else if($target[0] == "#")
903                         $targetStr = $target;
904                 else
905                         $targetStr = P10_User::getUserByNick($target)->getNumeric();
906                 
907                 if($this->eventHandler) {
908                         if($targetStr[0] == "#") {
909                                 $channel = P10_Channel::getChannelByName($targetStr);
910                                 if($channel == null)
911                                         $channel = new P10_Channel($targetStr);
912                                 $this->eventHandler->event_chanmessage($user, $channel, $message);
913                         } else {
914                                 $targetUser = P10_User::getUserByNum($targetStr);
915                                 $this->eventHandler->event_privmessage($user, $targetUser, $message);
916                         }
917                 }
918                 if(($this->flags & self::FLAG_CONNECTED))
919                         $this->send("P", $user->getNumeric(), $targetStr, $message);
920         }
921         
922         public function notice($user, $target, $message) {
923                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
924                         return ERR_INVALID_USER;
925                 if(!is_a($target, "P10_User") && !is_a($target, "P10_Channel") && !(is_string($target) && ($target[0] == "#" || P10_User::getUserByNick($target))))
926                         return ERR_INVALID_USER;
927                 if(is_a($target, "P10_Channel"))
928                         $targetStr = $target->getName();
929                 else if(is_a($target, "P10_User"))
930                         $targetStr = $target->getNumeric();
931                 else if($target[0] == "#")
932                         $targetStr = $target;
933                 else
934                         $targetStr = P10_User::getUserByNick($target)->getNumeric();
935                 
936                 if($this->eventHandler) {
937                         if($targetStr[0] == "#") {
938                                 $channel = P10_Channel::getChannelByName($targetStr);
939                                 if($channel == null)
940                                         $channel = new P10_Channel($targetStr);
941                                 $this->eventHandler->event_channotice($user, $channel, $message);
942                         } else {
943                                 $targetUser = P10_User::getUserByNum($targetStr);
944                                 $this->eventHandler->event_privnotice($user, $targetUser, $message);
945                         }
946                 }
947                 if(($this->flags & self::FLAG_CONNECTED))
948                         $this->send("O", $user->getNumeric(), $targetStr, $message);
949         }
950         
951         public function mode($user, $target, $modes, $force = false) {
952                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
953                         return ERR_INVALID_USER;
954                 if(!is_a($target, "P10_User") && !is_a($target, "P10_Channel") && !(is_string($target) && ($target[0] == "#" || P10_User::getUserByNick($target))))
955                         return ERR_INVALID_USER;
956                 if(is_a($target, "P10_Channel"))
957                         $targetStr = $target->getName();
958                 else if(is_a($target, "P10_User"))
959                         $targetStr = $target->getNumeric();
960                 else if($target[0] == "#")
961                         $targetStr = $target;
962                 else
963                         $targetStr = P10_User::getUserByNick($target)->getNumeric();
964                 
965                 if($targetStr[0] == "#") {
966                         $channel = P10_Channel::getChannelByName($targetStr);
967                         if($channel == null)
968                                 $channel = new P10_Channel($targetStr);
969                         $modes = $channel->getModes()->setModes($modes, true);
970                         if(($this->flags & self::FLAG_CONNECTED))
971                                 $this->send(($force ? "OM" : "M"), $user->getNumeric(), $targetStr, $modes);
972                         if($this->eventHandler)
973                                 $this->eventHandler->event_chanmode(($force ? $this->server : $user), $channel, $modes);
974                 } else {
975                         $targetUser = P10_User::getUserByNum($targetStr);
976                         if($targetUser->getServer() === $this->server) {
977                                 //just do it :D
978                                 $modes = $targetUser->getModes()->setModes($modes, true);
979                                 if(($this->flags & self::FLAG_CONNECTED))
980                                         $this->send("M", $targetUser->getNumeric(), $targetUser->getNick(), $modes);
981                                 if($this->eventHandler)
982                                         $this->eventHandler->event_usermode($targetUser, $modes);
983                         } else {
984                                 //SVSMODE
985                                 if(($this->flags & self::FLAG_CONNECTED))
986                                         $this->send("SM", $user->getNumeric(), $targetUser->getNumeric(), $modes);
987                         }
988                 }
989         }
990         
991         public function ctcp($user, $target, $command, $text) {
992                 return $this->privmsg($user, $target, "\001".strtoupper($command)." ".$text."\001");
993         }
994         
995         public function ctcp_reply($user, $target, $command, $text) {
996                 return $this->notice($user, $target, "\001".strtoupper($command)." ".$text."\001");
997         }
998         
999 }
1000
1001 ?>