]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_invisible.cpp
Sort CAPAB CHANMODES and USERMODES
[user/henk/code/inspircd.git] / src / modules / m_invisible.cpp
index 678b9cc4952217e26840c2a3e5fbb21578cdd95b..602a45b49c942f4c95c250d27909c861ffc7b64e 100644 (file)
@@ -1,8 +1,8 @@
 /*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
+ *       | Inspire Internet Relay Chat Daemon
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
  * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
 
 /* $ModDesc: Allows for opered clients to join channels without being seen, similar to unreal 3.1 +I mode */
 
-static ConfigReader* conf;
-
 class InvisibleMode : public ModeHandler
 {
  public:
-       InvisibleMode(InspIRCd* Instance, Module* Creator) : ModeHandler(Instance, Creator, 'Q', 0, 0, false, MODETYPE_USER, true)
+       InvisibleMode(Module* Creator) : ModeHandler(Creator, "invis-oper", 'Q', PARAM_NONE, MODETYPE_USER)
        {
+               oper = true;
        }
 
        ~InvisibleMode()
@@ -42,28 +41,28 @@ class InvisibleMode : public ModeHandler
                        if (m && adding)
                                m->OnUserQuit(dest, "Connection closed", "Connection closed");
 
-                       /* This has to come after setting/unsetting the handler */
-                       if (m && !adding)
-                               m->OnPostConnect(dest);
-
                        /* User appears to vanish or appear from nowhere */
                        for (UCListIter f = dest->chans.begin(); f != dest->chans.end(); f++)
                        {
-                               CUList *ulist = f->first->GetUsers();
+                               const UserMembList *ulist = (*f)->GetUsers();
                                char tb[MAXBUF];
 
-                               snprintf(tb,MAXBUF,":%s %s %s", dest->GetFullHost().c_str(), adding ? "PART" : "JOIN", f->first->name.c_str());
+                               snprintf(tb,MAXBUF,":%s %s %s", dest->GetFullHost().c_str(), adding ? "PART" : "JOIN", (*f)->name.c_str());
                                std::string out = tb;
-                               std::string n = this->ServerInstance->Modes->ModeString(dest, f->first);
+                               Membership* memb = (**f).GetUser(dest);
+                               std::string ms = memb->modes;
+                               for(unsigned int i=0; i < memb->modes.length(); i++)
+                                       ms.append(" ").append(dest->nick);
+
 
-                               for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
+                               for (UserMembCIter i = ulist->begin(); i != ulist->end(); i++)
                                {
                                        /* User only appears to vanish for non-opers */
                                        if (IS_LOCAL(i->first) && !IS_OPER(i->first))
                                        {
                                                i->first->Write(out);
-                                               if (!n.empty() && !adding)
-                                                       i->first->WriteServ("MODE %s +%s", f->first->name.c_str(), n.c_str());
+                                               if (!ms.empty() && !adding)
+                                                       i->first->WriteServ("MODE %s +%s", (**f).name.c_str(), ms.c_str());
                                        }
                                }
                        }
@@ -81,7 +80,7 @@ class InvisibleMode : public ModeHandler
 class InvisibleDeOper : public ModeWatcher
 {
  public:
-       InvisibleDeOper(InspIRCd* Instance) : ModeWatcher(Instance, 'o', MODETYPE_USER)
+       InvisibleDeOper(Module* parent) : ModeWatcher(parent, 'o', MODETYPE_USER)
        {
        }
 
@@ -106,10 +105,8 @@ class ModuleInvisible : public Module
        InvisibleMode qm;
        InvisibleDeOper ido;
  public:
-       ModuleInvisible(InspIRCd* Me)
-               : Module(Me), qm(Me, this), ido(Me)
+       ModuleInvisible() : qm(this), ido(this)
        {
-               conf = new ConfigReader(ServerInstance);
                if (!ServerInstance->Modes->AddMode(&qm))
                        throw ModuleException("Could not add new modes!");
                if (!ServerInstance->Modes->AddModeWatcher(&ido))
@@ -118,92 +115,62 @@ class ModuleInvisible : public Module
                /* Yeah i know people can take this out. I'm not about to obfuscate code just to be a pain in the ass. */
                ServerInstance->Users->ServerNoticeAll("*** m_invisible.so has just been loaded on this network. For more information, please visit http://inspircd.org/wiki/Modules/invisible");
                Implementation eventlist[] = {
-                       I_OnUserPreMessage, I_OnUserPreNotice, I_OnUserJoin, I_OnUserPart, I_OnUserQuit,
-                       I_OnRehash, I_OnHostCycle, I_OnSendWhoLine
+                       I_OnUserPreMessage, I_OnUserPreNotice, I_OnUserJoin,
+                       I_OnBuildNeighborList, I_OnSendWhoLine, I_OnNamesListItem
                };
-               ServerInstance->Modules->Attach(eventlist, this, 8);
+               ServerInstance->Modules->Attach(eventlist, this, 6);
        };
 
-       virtual ~ModuleInvisible()
+       ~ModuleInvisible()
        {
-               ServerInstance->Modes->DelMode(&qm);
-               ServerInstance->Modes->DelModeWatcher(&ido);
-               delete conf;
+               /* XXX is this the best place to do this? */
+               if (!ServerInstance->Modes->DelModeWatcher(&ido))
+                       ServerInstance->Logs->Log("m_banredirect.so", DEBUG, "Failed to delete modewatcher!");
        };
 
        Version GetVersion();
-       void OnUserJoin(User* user, Channel* channel, bool sync, bool &silent, bool created);
-       void OnRehash(User* user);
-       void OnUserPart(User* user, Channel* channel, std::string &partmessage, bool &silent);
-       void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message);
-       ModResult OnHostCycle(User* user);
+       void OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts);
+       void OnBuildNeighborList(User* source, UserChanList &include, std::map<User*,bool> &exceptions);
        ModResult OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list);
        ModResult OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list);
-       void WriteCommonFrom(User *user, Channel* channel, const char* text, ...) CUSTOM_PRINTF(4, 5);
-       void OnSendWhoLine(User* source, User* user, Channel* channel, std::string& line);
+       void OnSendWhoLine(User* source, const std::vector<std::string>&, User* user, Channel* channel, std::string& line);
+       void OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick);
 };
 
 Version ModuleInvisible::GetVersion()
 {
-       return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
+       return Version("Allows opers to join channels invisibly", VF_VENDOR);
 }
 
-void ModuleInvisible::OnUserJoin(User* user, Channel* channel, bool sync, bool &silent, bool created)
+static void BuildExcept(Membership* memb, CUList& excepts)
 {
-       if (user->IsModeSet('Q'))
+       const UserMembList* users = memb->chan->GetUsers();
+       for(UserMembCIter i = users->begin(); i != users->end(); i++)
        {
-               silent = true;
-               /* Because we silenced the event, make sure it reaches the user whos joining (but only them of course) */
-               this->WriteCommonFrom(user, channel, "JOIN %s", channel->name.c_str());
-               ServerInstance->SNO->WriteToSnoMask('a', "\2NOTICE\2: Oper %s has joined %s invisibly (+Q)", user->GetFullHost().c_str(), channel->name.c_str());
+               // hide from all local non-opers
+               if (IS_LOCAL(i->first) && !IS_OPER(i->first))
+                       excepts.insert(i->first);
        }
 }
 
-void ModuleInvisible::OnRehash(User* user)
-{
-       delete conf;
-       conf = new ConfigReader(ServerInstance);
-}
-
-void ModuleInvisible::OnUserPart(User* user, Channel* channel, std::string &partmessage, bool &silent)
+void ModuleInvisible::OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts)
 {
-       if (user->IsModeSet('Q'))
+       if (memb->user->IsModeSet('Q'))
        {
-               silent = true;
-               /* Because we silenced the event, make sure it reaches the user whos leaving (but only them of course) */
-               this->WriteCommonFrom(user, channel, "PART %s%s%s", channel->name.c_str(),
-                               partmessage.empty() ? "" : " :",
-                               partmessage.empty() ? "" : partmessage.c_str());
+               BuildExcept(memb, excepts);
+               ServerInstance->SNO->WriteToSnoMask('a', "\2NOTICE\2: Oper %s has joined %s invisibly (+Q)",
+                       memb->user->GetFullHost().c_str(), memb->chan->name.c_str());
        }
 }
 
-void ModuleInvisible::OnUserQuit(User* user, const std::string &reason, const std::string &oper_message)
+void ModuleInvisible::OnBuildNeighborList(User* source, UserChanList &include, std::map<User*,bool> &exceptions)
 {
-       if (user->IsModeSet('Q'))
+       if (source->IsModeSet('Q'))
        {
-               Command* parthandler = ServerInstance->Parser->GetHandler("PART");
-               std::vector<std::string> to_leave;
-               if (parthandler)
-               {
-                       for (UCListIter f = user->chans.begin(); f != user->chans.end(); f++)
-                                       to_leave.push_back(f->first->name);
-                       /* We cant do this neatly in one loop, as we are modifying the map we are iterating */
-                       for (std::vector<std::string>::iterator n = to_leave.begin(); n != to_leave.end(); n++)
-                       {
-                               std::vector<std::string> parameters;
-                               parameters.push_back(*n);
-                               /* This triggers our OnUserPart, above, making the PART silent */
-                               parthandler->Handle(parameters, user);
-                       }
-               }
+               include.clear();
        }
 }
 
-ModResult ModuleInvisible::OnHostCycle(User* user)
-{
-       return user->IsModeSet('Q') ? MOD_RES_DENY : MOD_RES_PASSTHRU;
-}
-
 /* No privmsg response when hiding - submitted by Eric at neowin */
 ModResult ModuleInvisible::OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
 {
@@ -224,34 +191,16 @@ ModResult ModuleInvisible::OnUserPreMessage(User* user,void* dest,int target_typ
        return OnUserPreNotice(user, dest, target_type, text, status, exempt_list);
 }
 
-/* Fix by Eric @ neowin.net, thanks :) -- Brain */
-void ModuleInvisible::WriteCommonFrom(User *user, Channel* channel, const char* text, ...)
+void ModuleInvisible::OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, Channel* channel, std::string& line)
 {
-       va_list argsPtr;
-       char textbuffer[MAXBUF];
-       char tb[MAXBUF];
-
-       va_start(argsPtr, text);
-       vsnprintf(textbuffer, MAXBUF, text, argsPtr);
-       va_end(argsPtr);
-       snprintf(tb,MAXBUF,":%s %s",user->GetFullHost().c_str(), textbuffer);
-
-       CUList *ulist = channel->GetUsers();
-
-       for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
-       {
-               /* User only appears to vanish for non-opers */
-               if (IS_LOCAL(i->first) && IS_OPER(i->first))
-               {
-                       i->first->Write(std::string(tb));
-               }
-       }
+       if (user->IsModeSet('Q') && !IS_OPER(source))
+               line.clear();
 }
 
-void ModuleInvisible::OnSendWhoLine(User* source, User* user, Channel* channel, std::string& line)
+void ModuleInvisible::OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick)
 {
-       if (user->IsModeSet('Q') && !IS_OPER(source))
-               line.clear();
+       if (memb->user->IsModeSet('Q') && !IS_OPER(issuer))
+               nick.clear();
 }
 
 MODULE_INIT(ModuleInvisible)