diff options
Diffstat (limited to 'src/modules/m_denychans.cpp')
-rw-r--r-- | src/modules/m_denychans.cpp | 81 |
1 files changed, 80 insertions, 1 deletions
diff --git a/src/modules/m_denychans.cpp b/src/modules/m_denychans.cpp index d09e04766..4a01faa7c 100644 --- a/src/modules/m_denychans.cpp +++ b/src/modules/m_denychans.cpp @@ -1 +1,80 @@ -/* +------------------------------------+
* | 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 ¶m)
{
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)
\ 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 ¶m) + { + 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) |