]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
SHUN: check SHUN on connect, extend user with shunned metadata if they match, and...
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 8 Apr 2008 10:23:35 +0000 (10:23 +0000)
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 8 Apr 2008 10:23:35 +0000 (10:23 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9418 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/m_shun.cpp

index fe8da9280e3295a0219a9e85ded483214cfe802e..a5c98dbbfcaddaa1719c69f90c92920f0a9edd6d 100644 (file)
@@ -41,7 +41,8 @@ public:
 
        void Apply(User *u)
        {
-               // Application is done by the module.
+               if (!u->GetExt("shunned"))
+                       u->Extend("shunned");
        }
 
 
@@ -69,12 +70,6 @@ class ShunFactory : public XLineFactory
        {
                return new Shun(ServerInstance, set_time, duration, source, reason, xline_specific_mask);
        }
-
-       virtual bool AutoApplyToUserList(XLine*)
-       {
-               // No, we don't want to be applied to users automagically.
-               return false;
-       }
 };
 
 //typedef std::vector<Shun> shunlist;
@@ -167,8 +162,8 @@ class ModuleShun : public Module
                mycommand = new cmd_shun(ServerInstance);
                ServerInstance->AddCommand(mycommand);
 
-               Implementation eventlist[] = { I_OnStats, I_OnPreCommand };
-               ServerInstance->Modules->Attach(eventlist, this, 2);
+               Implementation eventlist[] = { I_OnStats, I_OnPreCommand, I_OnUserConnect };
+               ServerInstance->Modules->Attach(eventlist, this, 3);
        }
 
        virtual ~ModuleShun()
@@ -185,6 +180,18 @@ class ModuleShun : public Module
                return 0;
        }
 
+       virtual void OnUserConnect(User* user)
+       {
+               // Apply lines on user connect
+               XLine *rl = ServerInstance->XLines->MatchesLine("SHUN", user);
+
+               if (rl)
+               {
+                       // Bang. :P
+                       rl->Apply(user);
+               }
+       }
+
        virtual int OnPreCommand(const std::string &command, const char* const*parameters, int pcnt, User* user, bool validated, const std::string &original_line)
        {
                if (user->registered != REG_ALL)
@@ -192,13 +199,8 @@ class ModuleShun : public Module
 
                if((command != "PONG") && (command != "PING"))
                {
-                       // Don't let them issue cmd if they are shunned..
-                       XLine *rl = ServerInstance->XLines->MatchesLine("SHUN", user);
-
-                       if (rl)
-                       {
+                       if (user->GetExt("shunned"))
                                return 1;
-                       }
                }
 
                return 0;