diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-03-21 16:08:39 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-03-21 16:08:39 +0000 |
commit | c2177fef5e123a9ef0ff48b692d12f0120450f4f (patch) | |
tree | a6e817146be48ef735146d8cb75879ac225be19a /src | |
parent | 9855300460b2e695b44646897811cc3f28428fa0 (diff) |
Make m_auditorium use the new api (this is MUCH easier to understand)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9141 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_auditorium.cpp | 63 |
1 files changed, 24 insertions, 39 deletions
diff --git a/src/modules/m_auditorium.cpp b/src/modules/m_auditorium.cpp index 9e3b53fe4..d021f6d9f 100644 --- a/src/modules/m_auditorium.cpp +++ b/src/modules/m_auditorium.cpp @@ -63,7 +63,7 @@ class ModuleAuditorium : public Module OnRehash(NULL, ""); - Implementation eventlist[] = { I_OnUserJoin, I_OnUserPart, I_OnUserKick, I_OnUserQuit, I_OnUserList, I_OnRehash }; + Implementation eventlist[] = { I_OnUserJoin, I_OnUserPart, I_OnUserKick, I_OnUserQuit, I_OnNamesListItem, I_OnRehash }; Me->Modules->Attach(eventlist, this, 6); } @@ -92,47 +92,32 @@ class ModuleAuditorium : public Module return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION); } - virtual int OnUserList(User* user, Channel* Ptr, CUList* &nameslist) + virtual void OnNamesListItem(User* issuer, User* user, Channel* channel, std::string &prefixes, std::string &nick) { - if (Ptr->IsModeSet('u')) + if (!channel->IsModeSet('u')) + return; + + /* Some module hid this from being displayed, dont bother */ + if (nick.empty()) + return; + + /* If user is oper and operoverride is on, don't touch the list */ + if (OperOverride && IS_OPER(user)) + return; + + if (ShowOps && (issuer != user) && (channel->GetStatus(user) < STATUS_OP)) { - if (OperOverride) - { - if (IS_OPER(user)) - { - /* - * If user is oper and operoverride is on, don't touch the list - */ - return 0; - } - } - - if (ShowOps) - { - /* Leave the names list alone, theyre an op - * doing /names on the channel after joining it - */ - if (Ptr->GetStatus(user) >= STATUS_OP) - { - nameslist = Ptr->GetUsers(); - return 0; - } - - /* Show all the opped users */ - nl = *(Ptr->GetOppedUsers()); - nl[user] = user->nick; - nameslist = &nl; - return 0; - } - else - { - /* HELLOOO, IS ANYBODY THERE? -- nope, just us. */ - user->WriteServ("353 %s %c %s :%s", user->nick, Ptr->IsModeSet('s') ? '@' : Ptr->IsModeSet('p') ? '*' : '=', Ptr->name, user->nick); - user->WriteServ("366 %s %s :End of /NAMES list.", user->nick, Ptr->name); - return 1; - } + /* Showops is set, hide all non-ops from the user, except themselves */ + nick.clear(); + return; + } + + if (!ShowOps && (issuer != user)) + { + /* ShowOps is not set, hide everyone except the user whos requesting NAMES */ + nick.clear(); + return; } - return 0; } virtual void OnUserJoin(User* user, Channel* channel, bool sync, bool &silent) |