]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_operinvex.cpp
Replace std::deque with std::vector in spanningtree and related modules
[user/henk/code/inspircd.git] / src / modules / m_operinvex.cpp
index fda38fb8c84367359f72f2b95efbb91d0abcfef6..5cd7ab3c6e6b5810bfc71991595fa66547f74d5d 100644 (file)
@@ -3,7 +3,7 @@
  *       +------------------------------------+
  *
  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
@@ -24,7 +24,7 @@ class ModuleOperInvex : public Module
  public:
        ModuleOperInvex(InspIRCd* Me) : Module(Me)
        {
-               Implementation eventlist[] = { I_OnUserPreJoin, I_On005Numeric, I_OnCheckInvite };
+               Implementation eventlist[] = { I_OnCheckBan, I_On005Numeric, I_OnCheckInvite };
                ServerInstance->Modules->Attach(eventlist, this, 3);
        }
 
@@ -34,7 +34,7 @@ class ModuleOperInvex : public Module
 
        virtual Version GetVersion()
        {
-               return Version("$Id$", VF_VENDOR, API_VERSION);
+               return Version("$Id$", VF_COMMON|VF_VENDOR, API_VERSION);
        }
 
        virtual int OnCheckInvite(User *user, Channel *c)
@@ -55,21 +55,11 @@ class ModuleOperInvex : public Module
                return 0;
        }
 
-       virtual int OnUserPreJoin(User *user, Channel *c, const char *cname, std::string &privs, const std::string &key)
+       virtual int OnCheckBan(User *user, Channel *c)
        {
-               if (!IS_LOCAL(user) || !IS_OPER(user))
-                       return 0;
-
-               if (!c)
+               if (!IS_OPER(user))
                        return 0;
-
-               if (c->IsExtBanned(user->oper, 'O'))
-               {
-                       user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s %s :Cannot join channel (You're banned)", user->nick.c_str(),  c->name.c_str());
-                       return 1;
-               }
-
-               return 0;
+               return c->GetExtBanStatus(user->oper, 'O');
        }
 
        virtual void On005Numeric(std::string &output)