]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_part.cpp
Extra Dry! Shame it's not in Hereford right now :p
[user/henk/code/inspircd.git] / src / cmd_part.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "users.h"
16 #include "commands/cmd_part.h"
17
18 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
19 {
20         return new cmd_part(Instance);
21 }
22
23 CmdResult cmd_part::Handle (const char** parameters, int pcnt, userrec *user)
24 {
25         if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
26                 return CMD_SUCCESS;
27
28         chanrec* c = ServerInstance->FindChan(parameters[0]);
29         
30         if (c)
31         {
32                 if (!c->PartUser(user, pcnt > 1 ? parameters[1] : NULL))
33                         /* Arse, who stole our channel! :/ */
34                         delete c;
35         }
36         else
37         {
38                 user->WriteServ( "401 %s %s :No such channel", user->nick, parameters[0]);
39                 return CMD_FAILURE;
40         }
41
42         return CMD_SUCCESS;
43 }