/* * Anope IRC Services * * Copyright (C) 2011-2017 Anope Team * * This file is part of Anope. Anope 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 see . */ #include "module.h" class StatusUpdate : public Module , public EventHook , public EventHook { void ApplyModes(ChanServ::Channel *ci, ChanServ::ChanAccess *access, bool set) { Channel *c = ci->GetChannel(); if (c == nullptr) return; for (Channel::ChanUserList::iterator it = c->users.begin(), it_end = c->users.end(); it != it_end; ++it) { User *user = it->second->user; if (user->server != Me && access->Matches(user, user->Account())) { ChanServ::AccessGroup ag = ci->AccessFor(user); for (unsigned i = 0; i < ModeManager::GetStatusChannelModesByRank().size(); ++i) { ChannelModeStatus *cms = ModeManager::GetStatusChannelModesByRank()[i]; if (!ag.HasPriv("AUTO" + cms->name)) c->RemoveMode(NULL, cms, user->GetUID()); } if (set) c->SetCorrectModes(user, true); } } } public: StatusUpdate(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR) , EventHook(this) , EventHook(this) { } void OnAccessAdd(ChanServ::Channel *ci, CommandSource &, ChanServ::ChanAccess *access) override { ApplyModes(ci, access, true); } // XXX this relies on the access entry already being removed from the list? void OnAccessDel(ChanServ::Channel *ci, CommandSource &, ChanServ::ChanAccess *access) override { ApplyModes(ci, access, false); } }; MODULE_INIT(StatusUpdate)