]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_part.cpp
In the grand tradition of huge fucking commits:
[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 "commands/cmd_part.h"
16
17 extern "C" DllExport Command* init_command(InspIRCd* Instance)
18 {
19         return new cmd_part(Instance);
20 }
21
22 CmdResult cmd_part::Handle (const char** parameters, int pcnt, User *user)
23 {
24         if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
25                 return CMD_SUCCESS;
26
27         Channel* c = ServerInstance->FindChan(parameters[0]);
28         
29         if (c)
30         {
31                 if (!c->PartUser(user, pcnt > 1 ? parameters[1] : NULL))
32                         /* Arse, who stole our channel! :/ */
33                         delete c;
34         }
35         else
36         {
37                 user->WriteServ( "401 %s %s :No such channel", user->nick, parameters[0]);
38                 return CMD_FAILURE;
39         }
40
41         return CMD_SUCCESS;
42 }