]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_denychans.cpp
d09e04766b19cfd0214f122326e47e80d492fc9e
[user/henk/code/inspircd.git] / src / modules / m_denychans.cpp
1 /*       +------------------------------------+\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