]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_regonlycreate.cpp
546d8235a28ce207d0f232c3a6101942c667b643
[user/henk/code/inspircd.git] / src / modules / m_regonlycreate.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/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
16 /* $ModDesc: Prevents users who's nicks are not registered from creating new channels */
17
18 class ModuleRegOnlyCreate : public Module
19 {
20  public:
21         ModuleRegOnlyCreate(InspIRCd* Me)
22                 : Module(Me)
23         {
24                 Implementation eventlist[] = { I_OnUserPreJoin };
25                 ServerInstance->Modules->Attach(eventlist, this, 1);
26         }
27
28
29         virtual ModResult OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs, const std::string &keygiven)
30         {
31                 if (chan)
32                         return MOD_RES_PASSTHRU;
33
34                 if (IS_OPER(user))
35                         return MOD_RES_PASSTHRU;
36
37                 if (user->GetExtList().find("accountname") == user->GetExtList().end() && !user->IsModeSet('r'))
38                 {
39                         // XXX. there may be a better numeric for this..
40                         user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s %s :You must have a registered nickname to create a new channel", user->nick.c_str(), cname);
41                         return MOD_RES_DENY;
42                 }
43
44                 return MOD_RES_PASSTHRU;
45         }
46
47         virtual ~ModuleRegOnlyCreate()
48         {
49         }
50
51         virtual Version GetVersion()
52         {
53                 return Version("Prevents users who's nicks are not registered from creating new channels", VF_VENDOR, API_VERSION);
54         }
55 };
56
57 MODULE_INIT(ModuleRegOnlyCreate)