]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_restrictchans.cpp
m_modenotice Use WriteNotice()
[user/henk/code/inspircd.git] / src / modules / m_restrictchans.cpp
index 43573883409e7fd26f77e5240aade4b082e0274c..dcdd8a8a8597a915fb71381208bd9c15270b3f36 100644 (file)
 
 #include "inspircd.h"
 
-/* $ModDesc: Only opers may create new channels if this module is loaded */
-
 class ModuleRestrictChans : public Module
 {
        std::set<irc::string> allowchans;
 
-       void ReadConfig()
+ public:
+       void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
        {
                allowchans.clear();
                ConfigTagList tags = ServerInstance->Config->ConfTags("allowchannel");
@@ -40,24 +39,9 @@ class ModuleRestrictChans : public Module
                }
        }
 
- public:
-       void init()
-       {
-               ReadConfig();
-               Implementation eventlist[] = { I_OnUserPreJoin, I_OnRehash };
-               ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
-       }
-
-       virtual void OnRehash(User* user)
-       {
-               ReadConfig();
-       }
-
-       ModResult OnUserPreJoin(User* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven)
+       ModResult OnUserPreJoin(LocalUser* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven) CXX11_OVERRIDE
        {
                irc::string x(cname.c_str());
-               if (!IS_LOCAL(user))
-                       return MOD_RES_PASSTHRU;
 
                // channel does not yet exist (record is null, about to be created IF we were to allow it)
                if (!chan)
@@ -72,7 +56,7 @@ class ModuleRestrictChans : public Module
                return MOD_RES_PASSTHRU;
        }
 
-       virtual Version GetVersion()
+       Version GetVersion() CXX11_OVERRIDE
        {
                return Version("Only opers may create new channels if this module is loaded",VF_VENDOR);
        }