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