changed file headers & added AUTHORS file
[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                 $channel = P10_Channel::getChannelByName($name);
411                 if($channel == null)
412                         $channel = new P10_Channel($name);
413                 $channel->setCreateTime($create_time);
414                 $modes = $channel->getModes();
415                 $userstr = $args[count($args)-1];
416                 $modeparamcount = count($args)-3;
417                 if($userstr[0] == "%") {
418                         //ban list
419                         $banlist = explode(" ", substr($userstr, 1));
420                         foreach($banlist as $ban) {
421                                 //TODO: save bans
422                         }
423                         $userstr = $args[count($args)-2];
424                         $modeparamcount--;
425                 }
426                 if($userstr[0] == "+") { //MODE String
427                         $modeparamcount++;
428                         $userstr = "";
429                 }
430                 $users = explode(",",$userstr);
431                 $isop = false; $isvoice = false;
432                 foreach($users as $user) {
433                         if($user == "") continue;
434                         $uexp = explode(":", $user);
435                         if(strlen($uexp[0]) != 5) {
436                                 trigger_error("burst parse error: '".$uexp[0]."' is not an user numeric.", E_USER_ERROR);
437                                 return;
438                         }
439                         if(count($uexp) > 1) {
440                                 $isop = false;
441                                 $isvoice = false;
442                                 for($i = 0; $i < strlen($uexp[1]); $i++) {
443                                         if($uexp[1][0] == "@") $isop = true;
444                                         if($uexp[1][0] == "+") $isvoice = true;
445                                 }
446                         }
447                         $user = P10_User::getUserByNum($uexp[0]);
448                         if($user == null) {
449                                 trigger_error("burst parse error: cant find User '".$uexp[0]."'.", E_USER_ERROR);
450                                 return;
451                         }
452                         $channel->burstUser($user, $isop, $isvoice);
453                         if($this->eventHandler)
454                                 $this->eventHandler->event_join($user, $channel, true);
455                 }
456                 $modes->parseModes(implode(" ", array_slice($args, 2, $modeparamcount)));
457         }
458         
459         private function recv_join($from, $args) {
460                 $user = P10_User::getUserByNum($from);
461                 if($user == null) {
462                         trigger_error("Server tries to join an user that does not exist or was not found on recv_join.", E_USER_ERROR);
463                         return;
464                 }
465                 $channel = P10_Channel::getChannelByName($args[0]);
466                 if($channel == null)
467                         $channel = new P10_Channel($args[0]);
468                 $channel->joinUser($user);
469                 if($this->eventHandler)
470                         $this->eventHandler->event_join($user, $channel, false);
471         }
472         
473         private function recv_part($from, $args) {
474                 $user = P10_User::getUserByNum($from);
475                 if($user == null) {
476                         trigger_error("Server tries to part an user that does not exist or was not found on recv_join.", E_USER_ERROR);
477                         return;
478                 }
479                 $channel = P10_Channel::getChannelByName($args[0]);
480                 if($channel == null)
481                         $channel = new P10_Channel($args[0]);
482                 if($this->eventHandler)
483                         $this->eventHandler->event_part($user, $channel, $args[1]);
484                 $channel->partUser($user);
485         }
486         
487         private function recv_kick($from, $args) {
488                 $user = P10_User::getUserByNum($from);
489                 if($user == null) {
490                         trigger_error("An unknown user tries to kick another user on recv_kick.", E_USER_ERROR);
491                         return;
492                 }
493                 $channel = P10_Channel::getChannelByName($args[0]);
494                 if($channel == null)
495                         $channel = new P10_Channel($args[0]);
496                 $target = P10_User::getUserByNum($args[1]);
497                 if($target == null) {
498                         trigger_error("Someone tries to kick an user that does not exist or was not found on recv_kick.", E_USER_ERROR);
499                         return;
500                 }
501                 if($this->eventHandler)
502                         $this->eventHandler->event_kick($user, $target, $channel, $args[1]);
503                 $channel->partUser($user);
504         }
505         
506         private function recv_kill($from, $args) {
507                 $user = P10_User::getUserByNum($args[0]);
508                 if($user == null) {
509                         trigger_error("Server tries to kill an user that does not exist or was not found on recv_quit.", E_USER_ERROR);
510                         return;
511                 }
512                 if($this->eventHandler)
513                         $this->eventHandler->event_quit($user, "Killed (".$args[1].")");
514                 $user->quit($args[1]);
515         }
516         
517         private function recv_privmsg($from, $args) {
518                 $user = P10_User::getUserByNum($from);
519                 if($user == null) {
520                         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);
521                         return;
522                 }
523                 if($this->eventHandler) {
524                         if($args[0][0] == "#") {
525                                 $channel = P10_Channel::getChannelByName($args[0]);
526                                 if($channel == null)
527                                         $channel = new P10_Channel($args[0]);
528                                 if(strlen($args[1]) > 0 && $args[1][0] == "\001") {
529                                         //ctcp
530                                         $args[1] = substr($args[1],1);
531                                         if($args[1][strlen($args[1])-1] == "\001")
532                                                 $args[1] = substr($args[1],0,-1);
533                                         $ctcpexp = explode(" ",$args[1],2);
534                                         $this->eventHandler->event_chanctcp($user, $channel, strtoupper($ctcpexp[0]), (count($ctcpexp) > 1 ? $ctcpexp[1] : null));
535                                 } else
536                                         $this->eventHandler->event_chanmessage($user, $channel, $args[1]);
537                         } else {
538                                 $targetUser = P10_User::getUserByNum($args[0]);
539                                 if($targetUser == null) {
540                                         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);
541                                         return;
542                                 }
543                                 if(strlen($args[1]) > 0 && $args[1][0] == "\001") {
544                                         //ctcp
545                                         $args[1] = substr($args[1],1);
546                                         if($args[1][strlen($args[1])-1] == "\001")
547                                                 $args[1] = substr($args[1],0,-1);
548                                         $ctcpexp = explode(" ",$args[1],2);
549                                         $this->eventHandler->event_privctcp($user, $targetUser, strtoupper($ctcpexp[0]), (count($ctcpexp) > 1 ? $ctcpexp[1] : null));
550                                 } else
551                                         $this->eventHandler->event_privmessage($user, $targetUser, $args[1]);
552                         }
553                 }
554         }
555         
556         private function recv_notice($from, $args) {
557                 $user = P10_User::getUserByNum($from);
558                 if($user == null) {
559                         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);
560                         return;
561                 }
562                 if($this->eventHandler) {
563                         if($args[0][0] == "#") {
564                                 $channel = P10_Channel::getChannelByName($args[0]);
565                                 if($channel == null)
566                                         $channel = new P10_Channel($args[0]);
567                                 if(strlen($args[1]) > 0 && $args[1][0] == "\001") {
568                                         //ctcp
569                                         $args[1] = substr($args[1],1);
570                                         if($args[1][strlen($args[1])-1] == "\001")
571                                                 $args[1] = substr($args[1],0,-1);
572                                         $ctcpexp = explode(" ",$args[1],2);
573                                         $this->eventHandler->event_chanctcpreply($user, $channel, strtoupper($ctcpexp[0]), (count($ctcpexp) > 1 ? $ctcpexp[1] : null));
574                                 } else
575                                         $this->eventHandler->event_channotice($user, $channel, $args[1]);
576                         } else {
577                                 $targetUser = P10_User::getUserByNum($args[0]);
578                                 if($targetUser == null) {
579                                         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);
580                                         return;
581                                 }
582                                 if(strlen($args[1]) > 0 && $args[1][0] == "\001") {
583                                         //ctcp
584                                         $args[1] = substr($args[1],1);
585                                         if($args[1][strlen($args[1])-1] == "\001")
586                                                 $args[1] = substr($args[1],0,-1);
587                                         $ctcpexp = explode(" ",$args[1],2);
588                                         $this->eventHandler->event_privctcpreply($user, $targetUser, strtoupper($ctcpexp[0]), (count($ctcpexp) > 1 ? $ctcpexp[1] : null));
589                                 } else
590                                         $this->eventHandler->event_privnotice($user, $targetUser, $args[1]);
591                         }
592                 }
593         }
594         
595         private function recv_whois($from, $args) {
596                 /* [get] ACAAF W AX :NetworkServ */
597                 $fromUser = P10_User::getUserByNum($from);
598                 if($fromUser == null) {
599                         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);
600                         return;
601                 }
602                 $users=explode(",",$args[1]);
603                 foreach($users as $nick) {
604                         $user = P10_User::getUserByNick($nick);
605                         if(!$user) {
606                                 $this->send("401", $from, $nick);
607                                 continue;
608                         }
609                         $nick = $user->getNick();
610                         $ident = $user->getIdent();
611                         $hostmask = $user->getHost();
612                         $modes = $user->getModes();
613                         if($modes->hasMode('x')) {
614                                 if(($fakehost = $modes->hasMode('f'))) {
615                                         $hostmask = $fakehost;
616                                 } elseif(($account = $modes->hasMode('r'))) {
617                                         $hostmask = $account.".".$this->getSetting("his_usermask");
618                                 }
619                         }
620                         $realname = $user->getRealname();
621                         $this->send("311", $from , $nick, $ident, $hostmask, $realname);
622                         if(((!$modes->hasMode('n') && !$modes->hasMode('k')) || $from == $user->getNumeric()) && count($user->getChannels()) != 0) {
623                                 $channels = "";
624                                 foreach($user->getChannels() as $channel) {
625                                         $cmodes = $channel->getModes();
626                                         $privs = $channel->getUserPrivs($user);
627                                         if($cmodes->hasMode("s") && !$fromUser->isOnChannel($channel) && $from != $user->getNumeric()) continue;
628                                         if($cmodes->hasMode("u") && ($privs & (P10_Channel::USERPRIV_OPED | P10_Channel::USERPRIV_VOICE)) == 0 && $from != $user->getNumeric()) continue;
629                                         $chanstr = ($channels == "" ? "" : " ");
630                                         $prefix = "";
631                                         if(($privs & P10_Channel::USERPRIV_OPED)) {
632                                                 $prefix = "@";
633                                         } else if(($privs & P10_Channel::USERPRIV_VOICE)) {
634                                                 $prefix = "+";
635                                         }
636                                         $chanstr .= $prefix.$channel->getName();
637                                         if(strlen($channels) + strlen($chanstr) > 450) {
638                                                 $this->send("319", $from, $nick, $channels);
639                                                 $channels = $prefix.$channel->getName();
640                                         }
641                                 }
642                                 if($channels != "") {
643                                         $this->send("319", $from, $nick, $channels);
644                                 }
645                         }
646                         if($fromUser->getModes()->hasMode("o") || $from == $user->getNumeric() || !$this->getSetting("his_name")) {
647                                 $this->send("312", $from, $nick, $user->getServer()->getName(), $user->getServer()->getDescription());
648                         } else {
649                                 $this->send("312", $from, $nick, $this->getSetting("his_name"), $this->getSetting("his_desc"));
650                         }
651                         if($modes->hasMode("o") && (!$modes->hasMode("H") || $fromUser->getModes()->hasMode("o"))) {
652                                 if($modes->hasMode("S")) {
653                                         if($modes->hasMode("D"))
654                                                 $this->send("313", $from, $nick, "is a Network Service");
655                                         else
656                                                 $this->send("313", $from, $nick, "is an illegal Network Service - HACKER!");
657                                 } else
658                                         $this->send("313", $from, $nick, "is an IRC Operator");
659                         }
660                         if(($auth = $modes->hasMode("r"))) {
661                                 $this->send("330", $from, $nick, $auth);
662                         }
663                 }
664                 $this->send("318", $from, $args[1]);
665         }
666         
667         private function recv_away($from, $args) {
668                 $user = P10_User::getUserByNum($from);
669                 if($user == null) {
670                         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);
671                         return;
672                 }
673                 if(count($args) > 0) {
674                         $user->setAway($args[0]);
675                         if($this->eventHandler)
676                                 $this->eventHandler->event_away($user, $args[0]);
677                 } else {
678                         $user->setAway(null);
679                         if($this->eventHandler)
680                                 $this->eventHandler->event_away($user, null);
681                 }
682         }
683         
684         private function recv_mode($from, $args) {
685                 $user = P10_User::getUserByNum($from);
686                 if($user == null) {
687                         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);
688                         return;
689                 }
690                 $modes = implode(" ",array_slice($args,1));
691                 if($args[0][0] == "#") {
692                         $channel = P10_Channel::getChannelByName($args[0]);
693                         if($channel == null)
694                                 $channel = new P10_Channel($args[0]);
695                         $channel->getModes()->setModes($modes);
696                         if($this->eventHandler)
697                                 $this->eventHandler->event_chanmode($user, $channel, $modes);
698                 } else {
699                         $targetUser = P10_User::getUserByNick($args[0]);
700                         if($targetUser == null) {
701                                 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);
702                                 return;
703                         }
704                         $targetUser->getModes()->setModes($modes);
705                         if($this->eventHandler)
706                                 $this->eventHandler->event_usermode($targetUser, $modes);
707                 }
708         }
709         
710         /********************************************************************************************
711          *                                     SERVER FUNCTIONS                                     *
712          ********************************************************************************************/
713         
714         private function burst() {
715                 foreach($this->server->getUsers() as $user) {
716                         $nick = $user->getNick();
717                         $connect_time = $user->getConnectTime();
718                         $ident = $user->getIdent();
719                         $host = $user->getHost();
720                         $modes = $user->getModes()->getModeString();
721                         $ip = $user->getIP()->getNumeric();
722                         $numeric = $user->getNumeric();
723                         $realname = $user->getRealname();
724                         $this->send("N", $nick, $connect_time, $ident, $host, $modes, $ip, $numeric, $realname);
725                 }
726                 foreach(P10_Channel::getChannels() as $channel) {
727                         $sorted_users = array('ov' => array(), 'o' => array(), 'v' => array(), '-' => array());
728                         $local_users = false;
729                         foreach($channel->getUsers() as $user) {
730                                 if(substr($user->getNumeric(), 0, 2) != $this->server->getNumeric()) continue; //skip users that are not on the local server
731                                 $privs = $channel->getUserPrivs($user);
732                                 $strPrivs = "";
733                                 if(($privs & P10_Channel::USERPRIV_OPED)) $strPrivs .= "o";
734                                 if(($privs & P10_Channel::USERPRIV_VOICE)) $strPrivs .= "v";
735                                 if($strPrivs == "") $strPrivs = "-";
736                                 $local_users = true;
737                                 $sorted_users[$strPrivs][] = $user;
738                         }
739                         if(!$local_users) continue;
740                         $userStr = "";
741                         foreach($sorted_users['-'] as $user) {
742                                 if($userStr != "") $userStr.=",";
743                                 $userStr .= $user->getNumeric();
744                         }
745                         foreach($sorted_users['ov'] as $i => $user) {
746                                 if($userStr != "") $userStr.=",";
747                                 $userStr .= $user->getNumeric();
748                                 if($i == 0) $userStr .= ":ov";
749                         }
750                         foreach($sorted_users['o'] as $i => $user) {
751                                 if($userStr != "") $userStr.=",";
752                                 $userStr .= $user->getNumeric();
753                                 if($i == 0) $userStr .= ":o";
754                         }
755                         foreach($sorted_users['v'] as $i => $user) {
756                                 if($userStr != "") $userStr.=",";
757                                 $userStr .= $user->getNumeric();
758                                 if($i == 0) $userStr .= ":v";
759                         }
760                         $banString = "";
761                         //TODO: Build ban String
762                         $burstString = "";
763                         $modeString = $channel->getModes()->getModeString();
764                         if($modeString != "+") {
765                                 $burstString .= $modeString;
766                         }
767                         if($userStr != "") {
768                                 if($burstString != "") $burstString .= " ";
769                                 $burstString .= $userStr;
770                         }
771                         if($banString != "") {
772                                 if($burstString != "") $burstString .= " ";
773                                 $burstString .= ":%".$banString;
774                         }
775                         $this->send("B", $channel->getName(), $channel->getCreateTime(), $burstString);
776                 }
777                 $this->send("EB");
778         }
779         
780         /********************************************************************************************
781          *                                    LOCAL USER FUNCTIONS                                  *
782          ********************************************************************************************/
783         
784         public function addUser($nick, $ident, $host, $ip, $modes, $realname) {
785                 $user = P10_User::getUserByNick($nick);
786                 if($user != null) return ERR_NICK_IN_USE;
787                 $numeric = substr($this->server->getNumeric(),0,2).Numerics::intToNum($this->last_local_numeric, 3);
788                 while(P10_User::getUserByNum($numeric)) {
789                         $this->last_local_numeric++;
790                         $numeric = substr($this->server->getNumeric(),0,2).Numerics::intToNum($this->last_local_numeric, 3);
791                 }
792                 $this->last_local_numeric++;
793                 $modes = new P10_UserModeSet($modes);
794                 $ip = new IPAddr($ip);
795                 $user = new P10_User($nick, $numeric, $this->server, time(), $ident, $host, $ip, $realname, $modes);
796                 if(($this->flags & self::FLAG_CONNECTED)) {
797                         $ip = $user->getIP()->getNumeric();
798                         $this->send("N", $nick, $user->getConnectTime(), $ident, $host, $user->getModes()->getModeString(), $ip, $numeric, $realname);
799                 }
800                 return $user;
801         }
802         
803         public function delUser($user, $reason) {
804                 if(!is_a($user, "P10_User")) return ERR_INVALID_USER;
805                 if($user->getServer() === $this->server) {
806                         //local user (QUIT)
807                         $user->quit($reason);
808                         if(($this->flags & self::FLAG_CONNECTED)) 
809                                 $this->send("Q", $user->getNumeric(), $reason);
810                 } else {
811                         //remote user (KILL)
812                         if(!($this->flags & self::FLAG_CONNECTED)) 
813                                 return ERR_NOT_CONNECTED;
814                         if($this->eventHandler)
815                                 $this->eventHandler->event_quit($user, "Killed (".$reason.")");
816                         $user->quit("Killed (".$reason.")");
817                         $name = ($this->getSetting('his_name') ? $this->getSetting('his_name') : $this->getSetting('name'));
818
819                         $this->send("D", $user->getNumeric(), $name, $reason);
820                 }
821         }
822         
823         public function join($user, $chanName, $privs = 0) {
824                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
825                         return ERR_INVALID_USER;
826                 if($chanName[0] != "#")
827                         return ERR_INVALID_CHANNAME;
828                 $channel = P10_Channel::getChannelByName($chanName);
829                 if($channel == null)
830                         $channel = new P10_Channel($chanName);
831                 $channel->joinUser($user);
832                 if(($this->flags & self::FLAG_CONNECTED))
833                         $this->send("J", $user->getNumeric(), $chanName, time(), 0);
834                 if($privs != 0) {
835                         $channel->setUserPrivs($user, $privs);
836                         if(($this->flags & self::FLAG_CONNECTED)) {
837                                 $modestr = "+".(($privs & P10_Channel::USERPRIV_OPED) ? "o" : "").(($privs & P10_Channel::USERPRIV_VOICE) ? "v" : "");
838                                 $modestr .= (($privs & P10_Channel::USERPRIV_OPED) ? " ".$user->getNumeric() : "");
839                                 $modestr .= (($privs & P10_Channel::USERPRIV_VOICE) ? " ".$user->getNumeric() : "");
840                                 $this->send("OM", $user->getNumeric(), $chanName, $modestr);
841                         }
842                 }
843                 if($this->eventHandler)
844                         $this->eventHandler->event_join($user, $channel, false);
845         }
846         
847         public function part($user, $chanName, $reason) {
848                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
849                         return ERR_INVALID_USER;
850                 if(!((is_string($chanName) && $chanName[0] == "#") || is_a($chanName, "P10_Channel")))
851                         return ERR_INVALID_CHANNAME;
852                 if(is_a($chanName, "P10_Channel"))
853                         $channel = $chanName;
854                 else
855                         $channel = P10_Channel::getChannelByName($chanName);
856                 if($channel == null)
857                         $channel = new P10_Channel($chanName);
858                 if(!$user->isOnChannel($channel)) 
859                         return ERR_NOT_ON_CHANNEL;
860                 if($this->eventHandler)
861                         $this->eventHandler->event_part($user, $channel, $reason);
862                 $channel->partUser($user, $reason);
863                 if(($this->flags & self::FLAG_CONNECTED))
864                         $this->send("L", $user->getNumeric(), $chanName, $reason);
865         }
866         
867         public function kick($user, $target, $chanName, $reason) {
868                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
869                         return ERR_INVALID_USER;
870                 if(!is_a($target, "P10_User"))
871                         return ERR_INVALID_USER;
872                 if(!((is_string($chanName) && $chanName[0] == "#") || is_a($chanName, "P10_Channel")))
873                         return ERR_INVALID_CHANNAME;
874                 if(is_a($chanName, "P10_Channel"))
875                         $channel = $chanName;
876                 else
877                         $channel = P10_Channel::getChannelByName($chanName);
878                 if($channel == null)
879                         $channel = new P10_Channel($chanName);
880                 if(!$target->isOnChannel($channel)) 
881                         return ERR_NOT_ON_CHANNEL;
882                 if($this->eventHandler)
883                         $this->eventHandler->event_kick($user, $target, $channel, $reason);
884                 $channel->partUser($target, $reason);
885                 if(($this->flags & self::FLAG_CONNECTED))
886                         $this->send("K", $user->getNumeric(), $chanName, $target->getNumeric(), $reason);
887         }
888         
889         public function privmsg($user, $target, $message) {
890                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
891                         return ERR_INVALID_USER;
892                 if(!is_a($target, "P10_User") && !is_a($target, "P10_Channel") && !(is_string($target) && ($target[0] == "#" || P10_User::getUserByNick($target))))
893                         return ERR_INVALID_USER;
894                 if(is_a($target, "P10_Channel"))
895                         $targetStr = $target->getName();
896                 else if(is_a($target, "P10_User"))
897                         $targetStr = $target->getNumeric();
898                 else if($target[0] == "#")
899                         $targetStr = $target;
900                 else
901                         $targetStr = P10_User::getUserByNick($target)->getNumeric();
902                 
903                 if($this->eventHandler) {
904                         if($targetStr[0] == "#") {
905                                 $channel = P10_Channel::getChannelByName($targetStr);
906                                 if($channel == null)
907                                         $channel = new P10_Channel($targetStr);
908                                 $this->eventHandler->event_chanmessage($user, $channel, $message);
909                         } else {
910                                 $targetUser = P10_User::getUserByNum($targetStr);
911                                 $this->eventHandler->event_privmessage($user, $targetUser, $message);
912                         }
913                 }
914                 if(($this->flags & self::FLAG_CONNECTED))
915                         $this->send("P", $user->getNumeric(), $targetStr, $message);
916         }
917         
918         public function notice($user, $target, $message) {
919                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
920                         return ERR_INVALID_USER;
921                 if(!is_a($target, "P10_User") && !is_a($target, "P10_Channel") && !(is_string($target) && ($target[0] == "#" || P10_User::getUserByNick($target))))
922                         return ERR_INVALID_USER;
923                 if(is_a($target, "P10_Channel"))
924                         $targetStr = $target->getName();
925                 else if(is_a($target, "P10_User"))
926                         $targetStr = $target->getNumeric();
927                 else if($target[0] == "#")
928                         $targetStr = $target;
929                 else
930                         $targetStr = P10_User::getUserByNick($target)->getNumeric();
931                 
932                 if($this->eventHandler) {
933                         if($targetStr[0] == "#") {
934                                 $channel = P10_Channel::getChannelByName($targetStr);
935                                 if($channel == null)
936                                         $channel = new P10_Channel($targetStr);
937                                 $this->eventHandler->event_channotice($user, $channel, $message);
938                         } else {
939                                 $targetUser = P10_User::getUserByNum($targetStr);
940                                 $this->eventHandler->event_privnotice($user, $targetUser, $message);
941                         }
942                 }
943                 if(($this->flags & self::FLAG_CONNECTED))
944                         $this->send("O", $user->getNumeric(), $targetStr, $message);
945         }
946         
947         public function mode($user, $target, $modes, $force = false) {
948                 if(!is_a($user, "P10_User") || !($user->getServer() === $this->server))
949                         return ERR_INVALID_USER;
950                 if(!is_a($target, "P10_User") && !is_a($target, "P10_Channel") && !(is_string($target) && ($target[0] == "#" || P10_User::getUserByNick($target))))
951                         return ERR_INVALID_USER;
952                 if(is_a($target, "P10_Channel"))
953                         $targetStr = $target->getName();
954                 else if(is_a($target, "P10_User"))
955                         $targetStr = $target->getNumeric();
956                 else if($target[0] == "#")
957                         $targetStr = $target;
958                 else
959                         $targetStr = P10_User::getUserByNick($target)->getNumeric();
960                 
961                 if($targetStr[0] == "#") {
962                         $channel = P10_Channel::getChannelByName($targetStr);
963                         if($channel == null)
964                                 $channel = new P10_Channel($targetStr);
965                         $modes = $channel->getModes()->setModes($modes, true);
966                         if(($this->flags & self::FLAG_CONNECTED))
967                                 $this->send(($force ? "OM" : "M"), $user->getNumeric(), $targetStr, $modes);
968                         if($this->eventHandler)
969                                 $this->eventHandler->event_chanmode(($force ? $this->server : $user), $channel, $modes);
970                 } else {
971                         $targetUser = P10_User::getUserByNum($targetStr);
972                         if($targetUser->getServer() === $this->server) {
973                                 //just do it :D
974                                 $modes = $targetUser->getModes()->setModes($modes, true);
975                                 if(($this->flags & self::FLAG_CONNECTED))
976                                         $this->send("M", $targetUser->getNumeric(), $targetUser->getNick(), $modes);
977                                 if($this->eventHandler)
978                                         $this->eventHandler->event_usermode($targetUser, $modes);
979                         } else {
980                                 //SVSMODE
981                                 if(($this->flags & self::FLAG_CONNECTED))
982                                         $this->send("SM", $user->getNumeric(), $targetUser->getNumeric(), $modes);
983                         }
984                 }
985         }
986         
987         
988         
989 }
990
991 ?>