mirror of
https://github.com/anope/anope.git
synced 2026-06-24 17:26:40 +02:00
69 lines
1.7 KiB
C++
69 lines
1.7 KiB
C++
/*
|
|
* (C) 2003-2011 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*/
|
|
|
|
#include "module.h"
|
|
|
|
static struct ModeInfo
|
|
{
|
|
Anope::string priv;
|
|
ChannelModeName name;
|
|
} modeInfo[] = {
|
|
{ "AUTOOWNER", CMODE_OWNER },
|
|
{ "AUTOPROTECT", CMODE_PROTECT },
|
|
{ "AUTOOP", CMODE_OP },
|
|
{ "AUTOHALFOP", CMODE_HALFOP },
|
|
{ "AUTOVOICE", CMODE_VOICE },
|
|
{ "", CMODE_END }
|
|
};
|
|
|
|
class StatusUpdate : public Module
|
|
{
|
|
public:
|
|
StatusUpdate(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED)
|
|
{
|
|
this->SetAuthor("Anope");
|
|
|
|
Implementation i[] = { I_OnAccessAdd, I_OnAccessDel };
|
|
ModuleManager::Attach(i, this, sizeof(i) / sizeof(Implementation));
|
|
}
|
|
|
|
void OnAccessAdd(ChannelInfo *ci, User *u, ChanAccess *access)
|
|
{
|
|
if (ci->c)
|
|
for (CUserList::iterator it = ci->c->users.begin(), it_end = ci->c->users.end(); it != it_end; ++it)
|
|
{
|
|
User *user = (*it)->user;
|
|
|
|
if (access->Matches(user, user->Account()))
|
|
{
|
|
for (int i = 0; !modeInfo[i].priv.empty(); ++i)
|
|
if (!access->HasPriv(modeInfo[i].priv))
|
|
ci->c->RemoveMode(NULL, modeInfo[i].name, user->nick);
|
|
chan_set_correct_modes(user, ci->c, 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
void OnAccessDel(ChannelInfo *ci, User *u, ChanAccess *access)
|
|
{
|
|
if (ci->c)
|
|
for (CUserList::iterator it = ci->c->users.begin(), it_end = ci->c->users.end(); it != it_end; ++it)
|
|
{
|
|
User *user = (*it)->user;
|
|
|
|
if (access->Matches(user, user->Account()))
|
|
{
|
|
for (int i = 0; !modeInfo[i].priv.empty(); ++i)
|
|
if (access->HasPriv(modeInfo[i].priv))
|
|
ci->c->RemoveMode(NULL, modeInfo[i].name, user->nick);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
MODULE_INIT(StatusUpdate)
|