X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmodules%2Fm_mlock.cpp;h=30f7e137d7911e877dd240e31899f0d1a455047c;hb=5a19ff00aca5d979bf9ca45a2b0d6e85acdc9fc3;hp=7e891f1468c937883ecf3745cf846bbc86e37c20;hpb=19a3ffd76d3fb0fba5d32ac6fc528efef9a28cc7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_mlock.cpp b/src/modules/m_mlock.cpp index 7e891f146..30f7e137d 100644 --- a/src/modules/m_mlock.cpp +++ b/src/modules/m_mlock.cpp @@ -1,6 +1,9 @@ /* * InspIRCd -- Internet Relay Chat Daemon * + * Copyright (C) 2013, 2017 Sadie Powell + * Copyright (C) 2012, 2019 Robby + * Copyright (C) 2012, 2014-2015 Attila Molnar * Copyright (C) 2012 William Pitcock * * This file is part of InspIRCd. InspIRCd is free software: you can @@ -16,53 +19,52 @@ * along with this program. If not, see . */ -#include "inspircd.h" -class ModuleMLock : public Module { -private: - StringExtItem mlock; +#include "inspircd.h" -public: - ModuleMLock() : mlock("mlock", this) {}; +enum +{ + // From Charybdis. + ERR_MLOCKRESTRICTED = 742 +}; - void init() - { - Implementation eventlist[] = { I_OnPreMode }; - ServerInstance->Modules->Attach(eventlist, this, 1); - } +class ModuleMLock : public Module +{ + StringExtItem mlock; - Version GetVersion() + public: + ModuleMLock() + : mlock("mlock", ExtensionItem::EXT_CHANNEL, this) { - return Version("Implements the ability to have server-side MLOCK enforcement.", VF_VENDOR); } - void Prioritize() + Version GetVersion() CXX11_OVERRIDE { - ServerInstance->Modules->SetPriority(this, I_OnPreMode, PRIORITY_FIRST); + return Version("Allows services to lock channel modes so that they can not be changed.", VF_VENDOR); } - ModResult OnPreMode(User* source, User* dest, Channel* channel, const std::vector& parameters) + ModResult OnRawMode(User* source, Channel* channel, ModeHandler* mh, const std::string& parameter, bool adding) CXX11_OVERRIDE { if (!channel) return MOD_RES_PASSTHRU; + if (!IS_LOCAL(source)) + return MOD_RES_PASSTHRU; + std::string *mlock_str = mlock.get(channel); - if (mlock_str->empty()) + if (!mlock_str) return MOD_RES_PASSTHRU; - for (const char *modes = parameters[1].c_str(); *modes; modes++) + const char mode = mh->GetModeChar(); + std::string::size_type p = mlock_str->find(mode); + if (p != std::string::npos) { - if (mlock_str->find(*modes)) - { - source->WriteNumeric(742, "%s %c %s :MODE cannot be set due to channel having an active MLOCK restriction policy", - channel->name.c_str(), *modes, mlock_str->c_str()); - return MOD_RES_DENY; - } + source->WriteNumeric(ERR_MLOCKRESTRICTED, channel->name, mode, *mlock_str, "MODE cannot be set due to the channel having an active MLOCK restriction policy"); + return MOD_RES_DENY; } return MOD_RES_PASSTHRU; } - }; MODULE_INIT(ModuleMLock)