]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_restrictchans.cpp
Remove InspIRCd* parameters and fields
[user/henk/code/inspircd.git] / src / modules / m_restrictchans.cpp
index a56df61776821819164269242f333e586cc77d88..bc66afce5577bd14bb714662ada1484f0aa05849 100644 (file)
@@ -2,84 +2,81 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
+ *
  * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ *         the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
-#include <stdio.h>
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
-#include "helperfuncs.h"
+#include "inspircd.h"
 
 /* $ModDesc: Only opers may create new channels if this module is loaded */
 
-Server *Srv;
-        
 class ModuleRestrictChans : public Module
 {
- public:
-       ModuleRestrictChans()
-       {
-               Srv = new Server;
-       }
-       
-       virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname)
+
+
+       std::map<irc::string,int> allowchans;
+
+       void ReadConfig()
        {
-               // user is not an oper
-               if (!strchr(user->modes,'o'))
+               ConfigReader* MyConf = new ConfigReader;
+               allowchans.clear();
+               for (int i = 0; i < MyConf->Enumerate("allowchannel"); i++)
                {
-                       // channel does not yet exist (record is null, about to be created IF we were to allow it)
-                       if (!chan)
-                       {
-                               WriteServ(user->fd,"530 %s %s :Only IRC operators may create new channels",user->nick,cname,cname);
-                               return 1;
-                       }
+                       std::string txt;
+                       txt = MyConf->ReadValue("allowchannel", "name", i);
+                       irc::string channel = txt.c_str();
+                       allowchans[channel] = 1;
                }
-               return 0;
+               delete MyConf;
        }
-       
-       virtual ~ModuleRestrictChans()
-       {
-               delete Srv;
+
+ public:
+       ModuleRestrictChans()
+                       {
+
+               ReadConfig();
+               Implementation eventlist[] = { I_OnUserPreJoin, I_OnRehash };
+               ServerInstance->Modules->Attach(eventlist, this, 2);
        }
-       
-       virtual Version GetVersion()
+
+       virtual void OnRehash(User* user)
        {
-               return Version(1,0,0,1,VF_VENDOR);
+               ReadConfig();
        }
-};
 
 
-class ModuleRestrictChansFactory : public ModuleFactory
-{
- public:
-       ModuleRestrictChansFactory()
+       virtual ModResult OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs, const std::string &keygiven)
        {
+               irc::string x = cname;
+               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)
+               {
+                       // user is not an oper and its not in the allow list
+                       if ((!IS_OPER(user)) && (allowchans.find(x) == allowchans.end()))
+                       {
+                               user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s %s :Only IRC operators may create new channels",user->nick.c_str(),cname);
+                               return MOD_RES_DENY;
+                       }
+               }
+               return MOD_RES_PASSTHRU;
        }
-       
-       ~ModuleRestrictChansFactory()
+
+       virtual ~ModuleRestrictChans()
        {
        }
-       
-       virtual Module * CreateModule()
+
+       virtual Version GetVersion()
        {
-               return new ModuleRestrictChans;
+               return Version("Only opers may create new channels if this module is loaded",VF_VENDOR,API_VERSION);
        }
-       
 };
 
-
-extern "C" void * init_module( void )
-{
-       return new ModuleRestrictChansFactory;
-}
-
+MODULE_INIT(ModuleRestrictChans)