]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_knock.cpp
added m_noinvite that uses the new OnUserPreInvite method
[user/henk/code/inspircd.git] / src / modules / m_knock.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #include <stdio.h>
18 #include <string>
19 #include "users.h"
20 #include "channels.h"
21 #include "modules.h"
22
23 /* $ModDesc: Provides support for /KNOCK and mode +K */
24
25 Server *Srv;
26          
27 void handle_knock(char **parameters, int pcnt, userrec *user)
28 {
29         chanrec* c = Srv->FindChannel(parameters[0]);
30         std::string line = "";
31
32         for (int i = 1; i < pcnt - 1; i++)
33         {
34                 line = line + std::string(parameters[i]) + " ";
35         }
36         line = line + std::string(parameters[pcnt-1]);
37
38         if (c->IsCustomModeSet('K'))
39         {
40                 WriteServ(user->fd,"480 %s :Can't KNOCK on %s, +K is set.",user->nick, c->name);
41                 return;
42         }
43         if (c->inviteonly)
44         {
45                 WriteChannelWithServ((char*)Srv->GetServerName().c_str(),c,user,"NOTICE %s :User %s is KNOCKing on %s (%s)",c->name,user->nick,c->name,line.c_str());
46                 WriteServ(user->fd,"NOTICE %s :KNOCKing on %s",user->nick,c->name);
47                 return;
48         }
49         else
50         {
51                 WriteServ(user->fd,"480 %s :Can't KNOCK on %s, channel is not invite only so knocking is pointless!",user->nick, c->name);
52                 return;
53         }
54 }
55
56
57 class ModuleKnock : public Module
58 {
59  public:
60         ModuleKnock()
61         {
62                 Srv = new Server;
63                 
64                 Srv->AddExtendedMode('K',MT_CHANNEL,false,0,0);
65                 Srv->AddCommand("KNOCK",handle_knock,0,2);
66         }
67         
68         virtual ~ModuleKnock()
69         {
70                 delete Srv;
71         }
72         
73         virtual Version GetVersion()
74         {
75                 return Version(1,0,0,1);
76         }
77         
78         virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params)
79         {
80                 // check if this is our mode character...
81                 if ((modechar == 'K') && (type == MT_CHANNEL))
82                 {
83                         return 1;
84                 }
85                 else
86                 {
87                         return 0;
88                 }
89         }
90
91 };
92
93 // stuff down here is the module-factory stuff. For basic modules you can ignore this.
94
95 class ModuleKnockFactory : public ModuleFactory
96 {
97  public:
98         ModuleKnockFactory()
99         {
100         }
101         
102         ~ModuleKnockFactory()
103         {
104         }
105         
106         virtual Module * CreateModule()
107         {
108                 return new ModuleKnock;
109         }
110         
111 };
112
113
114 extern "C" void * init_module( void )
115 {
116         return new ModuleKnockFactory;
117 }
118