X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_auditorium.cpp;h=cd257eff3237ebb1c294e4fb0be881f6c80d9aa0;hb=ff3b706b2506d7614bce5e54bc88657bd62ebd4d;hp=0d149ccf27f9e96dc39ecd3dcd1144aebb77a2ff;hpb=6d03943426dcce76ba66567a9b18425a5ebb4c0c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_auditorium.cpp b/src/modules/m_auditorium.cpp index 0d149ccf2..cd257eff3 100644 --- a/src/modules/m_auditorium.cpp +++ b/src/modules/m_auditorium.cpp @@ -1,173 +1,170 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * Copyright (C) 2009-2010 Daniel De Graaf + * Copyright (C) 2007-2008 Craig Edwards + * Copyright (C) 2007 Dennis Friis + * Copyright (C) 2007 Robin Burchell * - * This program is free but copyrighted software; see - * the file COPYING for details. + * This file is part of InspIRCd. InspIRCd is free software: you can + * redistribute it and/or modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation, version 2. * - * --------------------------------------------------- + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ -#include "inspircd.h" -/* $ModDesc: Allows for auditorium channels (+u) where nobody can see others joining and parting or the nick list */ +#include "inspircd.h" +#include "modules/exemption.h" -class AuditoriumMode : public ModeHandler +class AuditoriumMode : public SimpleChannelModeHandler { public: - AuditoriumMode(Module* Creator) : ModeHandler(Creator, 'u', PARAM_NONE, MODETYPE_CHANNEL) + AuditoriumMode(Module* Creator) : SimpleChannelModeHandler(Creator, "auditorium", 'u') { levelrequired = OP_VALUE; } - - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding) - { - if (channel->IsModeSet('u') != adding) - { - channel->SetMode('u', adding); - return MODEACTION_ALLOW; - } - else - { - return MODEACTION_DENY; - } - } }; class ModuleAuditorium : public Module { - private: + CheckExemption::EventProvider exemptionprov; AuditoriumMode aum; - bool ShowOps; - bool OperOverride; + bool OpsVisible; + bool OpsCanSee; + bool OperCanSee; + public: ModuleAuditorium() - : aum(this) + : exemptionprov(this) + , aum(this) { - if (!ServerInstance->Modes->AddMode(&aum)) - throw ModuleException("Could not add new modes!"); - - OnRehash(NULL); - - Implementation eventlist[] = { I_OnUserJoin, I_OnUserPart, I_OnUserKick, I_OnUserQuit, I_OnNamesListItem, I_OnRehash, I_OnHostCycle }; - ServerInstance->Modules->Attach(eventlist, this, 7); - } - ~ModuleAuditorium() + void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE { - ServerInstance->Modes->DelMode(&aum); + ConfigTag* tag = ServerInstance->Config->ConfValue("auditorium"); + OpsVisible = tag->getBool("opvisible"); + OpsCanSee = tag->getBool("opcansee"); + OperCanSee = tag->getBool("opercansee", true); } - void OnRehash(User* user) + Version GetVersion() CXX11_OVERRIDE { - ConfigReader conf; - ShowOps = conf.ReadFlag("auditorium", "showops", 0); - OperOverride = conf.ReadFlag("auditorium", "operoverride", 0); + return Version("Allows for auditorium channels (+u) where nobody can see others joining and parting or the nick list", VF_VENDOR); } - Version GetVersion() + /* Can they be seen by everyone? */ + bool IsVisible(Membership* memb) { - return Version("Allows for auditorium channels (+u) where nobody can see others joining and parting or the nick list", VF_COMMON | VF_VENDOR, API_VERSION); + if (!memb->chan->IsModeSet(&aum)) + return true; + + ModResult res; + FIRST_MOD_RESULT_CUSTOM(exemptionprov, CheckExemption::EventListener, OnCheckExemption, res, (memb->user, memb->chan, "auditorium-vis")); + return res.check(OpsVisible && memb->getRank() >= OP_VALUE); } - void OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick) + /* Can they see this specific membership? */ + bool CanSee(User* issuer, Membership* memb) { - if (!memb->chan->IsModeSet('u')) - return; + // If user is oper and operoverride is on, don't touch the list + if (OperCanSee && issuer->HasPrivPermission("channels/auspex")) + return true; - /* Some module hid this from being displayed, dont bother */ - if (nick.empty()) - return; + // You can always see yourself + if (issuer == memb->user) + return true; - /* If user is oper and operoverride is on, don't touch the list */ - if (OperOverride && issuer->HasPrivPermission("channels/auspex")) - return; + // Can you see the list by permission? + ModResult res; + FIRST_MOD_RESULT_CUSTOM(exemptionprov, CheckExemption::EventListener, OnCheckExemption, res, (issuer, memb->chan, "auditorium-see")); + if (res.check(OpsCanSee && memb->chan->GetPrefixValue(issuer) >= OP_VALUE)) + return true; - if (ShowOps && (issuer != memb->user) && (memb->getRank() < OP_VALUE)) - { - /* Showops is set, hide all non-ops from the user, except themselves */ - nick.clear(); - return; - } + return false; + } - if (!ShowOps && (issuer != memb->user)) - { - /* ShowOps is not set, hide everyone except the user whos requesting NAMES */ - nick.clear(); - return; - } + ModResult OnNamesListItem(User* issuer, Membership* memb, std::string& prefixes, std::string& nick) CXX11_OVERRIDE + { + if (IsVisible(memb)) + return MOD_RES_PASSTHRU; + + if (CanSee(issuer, memb)) + return MOD_RES_PASSTHRU; + + // Don't display this user in the NAMES list + return MOD_RES_DENY; } + /** Build CUList for showing this join/part/kick */ void BuildExcept(Membership* memb, CUList& excepts) { - if (!memb->chan->IsModeSet('u')) - return; - if (ShowOps && memb->getRank() >= OP_VALUE) + if (IsVisible(memb)) return; - const UserMembList* users = memb->chan->GetUsers(); - for(UserMembCIter i = users->begin(); i != users->end(); i++) + const Channel::MemberMap& users = memb->chan->GetUsers(); + for (Channel::MemberMap::const_iterator i = users.begin(); i != users.end(); ++i) { - if (i->first == memb->user || !IS_LOCAL(i->first)) - continue; - if (ShowOps && i->second->getRank() >= OP_VALUE) - continue; - if (OperOverride && i->first->HasPrivPermission("channels/auspex")) - continue; - // This is a different user in the channel, local, and not op/oper - // so, hide the join from them - excepts.insert(i->first); + if (IS_LOCAL(i->first) && !CanSee(i->first, memb)) + excepts.insert(i->first); } } - void OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts) - { - BuildExcept(memb, excepts); - } - void OnUserPart(Membership* memb, std::string &partmessage, CUList& excepts) + void OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts) CXX11_OVERRIDE { BuildExcept(memb, excepts); } - void OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& excepts) + void OnUserPart(Membership* memb, std::string &partmessage, CUList& excepts) CXX11_OVERRIDE { BuildExcept(memb, excepts); } - ModResult OnHostCycle(User* user) + void OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& excepts) CXX11_OVERRIDE { - for (UCListIter f = user->chans.begin(); f != user->chans.end(); f++) - if ((*f)->IsModeSet('u')) - return MOD_RES_DENY; - - return MOD_RES_PASSTHRU; + BuildExcept(memb, excepts); } - void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message) + void OnBuildNeighborList(User* source, IncludeChanList& include, std::map& exception) CXX11_OVERRIDE { - Command* parthandler = ServerInstance->Parser->GetHandler("PART"); - std::vector to_leave; - if (parthandler) + for (IncludeChanList::iterator i = include.begin(); i != include.end(); ) { - for (UCListIter f = user->chans.begin(); f != user->chans.end(); f++) + Membership* memb = *i; + if (IsVisible(memb)) { - if ((*f)->IsModeSet('u')) - to_leave.push_back((*f)->name); + ++i; + continue; } - /* We cant do this neatly in one loop, as we are modifying the map we are iterating */ - for (std::vector::iterator n = to_leave.begin(); n != to_leave.end(); n++) + + // this channel should not be considered when listing my neighbors + i = include.erase(i); + // however, that might hide me from ops that can see me... + const Channel::MemberMap& users = memb->chan->GetUsers(); + for(Channel::MemberMap::const_iterator j = users.begin(); j != users.end(); ++j) { - std::vector parameters; - parameters.push_back(*n); - /* This triggers our OnUserPart, above, making the PART silent */ - parthandler->Handle(parameters, user); + if (IS_LOCAL(j->first) && CanSee(j->first, memb)) + exception[j->first] = true; } } } + + ModResult OnSendWhoLine(User* source, const std::vector& params, User* user, Membership* memb, Numeric::Numeric& numeric) CXX11_OVERRIDE + { + if (!memb) + return MOD_RES_PASSTHRU; + if (IsVisible(memb)) + return MOD_RES_PASSTHRU; + if (CanSee(source, memb)) + return MOD_RES_PASSTHRU; + return MOD_RES_DENY; + } }; MODULE_INIT(ModuleAuditorium)