]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_regonlycreate.cpp
Remove InspIRCd* parameters and fields
[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()
22                         {
23                 Implementation eventlist[] = { I_OnUserPreJoin };
24                 ServerInstance->Modules->Attach(eventlist, this, 1);
25         }
26
27
28         virtual ModResult OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs, const std::string &keygiven)
29         {
30                 if (chan)
31                         return MOD_RES_PASSTHRU;
32
33                 if (IS_OPER(user))
34                         return MOD_RES_PASSTHRU;
35
36                 if (user->GetExtList().find("accountname") == user->GetExtList().end() && !user->IsModeSet('r'))
37                 {
38                         // XXX. there may be a better numeric for this..
39                         user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s %s :You must have a registered nickname to create a new channel", user->nick.c_str(), cname);
40                         return MOD_RES_DENY;
41                 }
42
43                 return MOD_RES_PASSTHRU;
44         }
45
46         virtual ~ModuleRegOnlyCreate()
47         {
48         }
49
50         virtual Version GetVersion()
51         {
52                 return Version("Prevents users who's nicks are not registered from creating new channels", VF_VENDOR, API_VERSION);
53         }
54 };
55
56 MODULE_INIT(ModuleRegOnlyCreate)