]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_inviteexception.cpp
Add extra /map info (connection uptime, and lag time) to /MAP for opers. Adds feature...
[user/henk/code/inspircd.git] / src / modules / m_inviteexception.cpp
index 4ae2ec703399040fe8f3ff4af78d6eb1d792c193..8cca13b1e95f72573d21af91bf29f4520e20fd9c 100644 (file)
@@ -1,15 +1,12 @@
-/*     +------------------------------------+
- *     | Inspire Internet Relay Chat Daemon |
- *     +------------------------------------+
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                    E-mail:
- *             <brain@chatspike.net>
- *             <Craig@chatspike.net>
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
  *
- * Written by Craig Edwards, Craig McLure, and others.
  * This program is free but copyrighted software; see
- * the file COPYING for details.
+ *         the file COPYING for details.
  *
  * ---------------------------------------------------
  */
@@ -23,6 +20,7 @@
 #include "u_listmode.h"
 
 /* $ModDesc: Provides support for the +I channel mode */
+/* $ModDep: ../../include/u_listmode.h */
 
 /*
  * Written by Om <om@inspircd.org>, April 2005.
@@ -51,13 +49,15 @@ public:
        ModuleInviteException(InspIRCd* Me) : Module(Me)
        {
                ie = new InviteException(ServerInstance);
-               ServerInstance->AddMode(ie, 'I');
+               if (!ServerInstance->AddMode(ie, 'I'))
+                       throw ModuleException("Could not add new modes!");
+               ServerInstance->PublishInterface("ChannelBanList", this);
        }
-       
+
        virtual void Implements(char* List)
        {
                ie->DoImplements(List);
-               List[I_On005Numeric] = List[I_OnCheckInvite] = 1;
+               List[I_OnRequest] = List[I_On005Numeric] = List[I_OnCheckInvite] = 1;
        }
        
        virtual void On005Numeric(std::string &output)
@@ -90,6 +90,31 @@ public:
                return 0;               
        }
 
+       virtual char* OnRequest(Request* request)
+       {
+               ListModeRequest* LM = (ListModeRequest*)request;
+               if (strcmp("LM_CHECKLIST", request->GetId()) == 0)
+               {
+                       modelist* list;
+                       LM->chan->GetExt(ie->GetInfoKey(), list);
+                       if (list)
+                       {
+                               char mask[MAXBUF];
+                               snprintf(mask, MAXBUF, "%s!%s@%s", LM->user->nick, LM->user->ident, LM->user->GetIPString());
+                               for (modelist::iterator it = list->begin(); it != list->end(); it++)
+                               {
+                                       if (match(LM->user->GetFullRealHost(), it->mask.c_str()) || match(LM->user->GetFullHost(), it->mask.c_str()) || (match(mask, it->mask.c_str(), true)))
+                                       {
+                                               // They match an entry
+                                               return (char*)it->mask.c_str();
+                                       }
+                               }
+                               return NULL;
+                       }
+               }
+               return NULL;
+       }
+
        virtual void OnCleanup(int target_type, void* item)
        {
                ie->DoCleanup(target_type, item);
@@ -105,7 +130,7 @@ public:
                ie->DoChannelDelete(chan);
        }
 
-       virtual void OnRehash(const std::string &param)
+       virtual void OnRehash(userrec* user, const std::string &param)
        {
                ie->DoRehash();
        }
@@ -119,6 +144,7 @@ public:
        {
                ServerInstance->Modes->DelMode(ie);
                DELETE(ie);
+               ServerInstance->UnpublishInterface("ChannelBanList", this);
        }
 };