]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_denychans.cpp
Make FJOIN send UUID
[user/henk/code/inspircd.git] / src / modules / m_denychans.cpp
index d09e04766b19cfd0214f122326e47e80d492fc9e..4a01faa7c68559e24c283dafb1dd96bf968fa33e 100644 (file)
@@ -1 +1,80 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "users.h"\r#include "channels.h"\r#include "modules.h"\r#include "hashcomp.h"\r#include "wildcard.h"\r\r/* $ModDesc: Implements config tags which allow blocking of joins to channels */\r\rclass ModuleDenyChannels : public Module\r{\r private:\r\r  \r       ConfigReader *Conf;\r\r public:\r  ModuleDenyChannels(InspIRCd* Me) : Module(Me)\r  {\r              \r               Conf = new ConfigReader(ServerInstance);\r       }\r      \r       virtual void OnRehash(userrec* user, const std::string &param)\r {\r              DELETE(Conf);\r          Conf = new ConfigReader(ServerInstance);\r       }\r\r     virtual ~ModuleDenyChannels()\r  {\r              DELETE(Conf);\r  }\r      \r       virtual Version GetVersion()\r   {\r              return Version(1,1,0,1,VF_VENDOR,API_VERSION);\r }\r\r     void Implements(char* List)\r    {\r              List[I_OnUserPreJoin] = List[I_OnRehash] = 1;\r  }\r\r     virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname, std::string &privs)\r {\r              for (int j =0; j < Conf->Enumerate("badchan"); j++)\r            {\r                      if (match(cname, Conf->ReadValue("badchan","name",j).c_str()))\r                 {\r                              if (IS_OPER(user) && Conf->ReadFlag("badchan","allowopers",j))\r                         {\r                                      return 0;\r                              }\r                              else\r                           {\r                                      std::string reason = Conf->ReadValue("badchan","reason",j);\r                                    user->WriteServ("926 %s %s :Channel %s is forbidden: %s",user->nick,cname,cname,reason.c_str());\r                                       return 1;\r                              }\r                      }\r              }\r              return 0;\r      }\r};\r\rMODULE_INIT(ModuleDenyChannels)\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#include "inspircd.h"
+#include "users.h"
+#include "channels.h"
+#include "modules.h"
+#include "hashcomp.h"
+#include "wildcard.h"
+
+/* $ModDesc: Implements config tags which allow blocking of joins to channels */
+
+class ModuleDenyChannels : public Module
+{
+ private:
+
+       
+       ConfigReader *Conf;
+
+ public:
+       ModuleDenyChannels(InspIRCd* Me) : Module(Me)
+       {
+               
+               Conf = new ConfigReader(ServerInstance);
+       }
+       
+       virtual void OnRehash(userrec* user, const std::string &param)
+       {
+               DELETE(Conf);
+               Conf = new ConfigReader(ServerInstance);
+       }
+
+       virtual ~ModuleDenyChannels()
+       {
+               DELETE(Conf);
+       }
+       
+       virtual Version GetVersion()
+       {
+               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
+       }
+
+       void Implements(char* List)
+       {
+               List[I_OnUserPreJoin] = List[I_OnRehash] = 1;
+       }
+
+       virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname, std::string &privs)
+       {
+               for (int j =0; j < Conf->Enumerate("badchan"); j++)
+               {
+                       if (match(cname, Conf->ReadValue("badchan","name",j).c_str()))
+                       {
+                               if (IS_OPER(user) && Conf->ReadFlag("badchan","allowopers",j))
+                               {
+                                       return 0;
+                               }
+                               else
+                               {
+                                       std::string reason = Conf->ReadValue("badchan","reason",j);
+                                       user->WriteServ("926 %s %s :Channel %s is forbidden: %s",user->nick,cname,cname,reason.c_str());
+                                       return 1;
+                               }
+                       }
+               }
+               return 0;
+       }
+};
+
+MODULE_INIT(ModuleDenyChannels)