]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_operchans.cpp
Gah, im forgetting to SetMode!
[user/henk/code/inspircd.git] / src / modules / m_operchans.cpp
index ba9a4d79fc4c1784ec51877c33cc057904da8542..01b55f9cc7f027b503737943dd88d270b293ecae 100644 (file)
@@ -1,24 +1,45 @@
-#include <stdio.h>
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
+ *                       E-mail:
+ *                <brain@chatspike.net>
+ *               <Craig@chatspike.net>
+ *     
+ * Written by Craig Edwards, Craig McLure, and others.
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+using namespace std;
 
+#include <stdio.h>
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
+#include "helperfuncs.h"
 
 /* $ModDesc: Provides support for oper-only chans via the +O channel mode */
 
-Server *Srv;
-        
-
 class ModuleOperChans : public Module
 {
+       Server* Srv;
  public:
-       ModuleOperChans()
+       ModuleOperChans(Server* Me)
+               : Module::Module(Me)
        {
-               Srv = new Server;
-
+               Srv = Me;
                // Add a mode +O for channels with no parameters                
                Srv->AddExtendedMode('O',MT_CHANNEL,false,0,0);
        }
+
+       void Implements(char* List)
+       {
+               List[I_OnExtendedMode] = List[I_On005Numeric] = List[I_OnUserPreJoin] = 1;
+       }
        
        virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params)
        {
@@ -26,8 +47,9 @@ class ModuleOperChans : public Module
                {
                        chanrec* chan = (chanrec*)target;
                        
-                       if ((Srv->IsUlined(user->nick)) || (Srv->IsUlined(user->server)) || (!strcmp(user->server,"")) || (strchr(user->modes,'o')))
+                       if ((Srv->IsUlined(user->nick)) || (Srv->IsUlined(user->server)) || (!*user->server) || (*user->oper))
                        {
+                               log(DEBUG,"Allowing mode +O");
                                return 1;
                        }
                        else
@@ -43,14 +65,19 @@ class ModuleOperChans : public Module
                
                return 0;
        }
+
+       virtual void On005Numeric(std::string &output)
+       {
+               InsertMode(output,"O",4);
+       }
        
        virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname)
        {
-               if (!strchr(user->modes,'o'))
+               if (!*user->oper)
                {
                        if (chan)
                        {
-                               if (chan->IsCustomModeSet('O'))
+                               if (chan->IsModeSet('O'))
                                {
                                        WriteServ(user->fd,"520 %s %s :Only IRC operators may join the channel %s (+O is set)",user->nick, chan->name,chan->name);
                                        return 1;
@@ -62,18 +89,12 @@ class ModuleOperChans : public Module
        
        virtual ~ModuleOperChans()
        {
-               delete Srv;
        }
        
        virtual Version GetVersion()
        {
-               return Version(1,0,0,0);
+               return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
        }
-       
-       virtual void OnUserConnect(userrec* user)
-       {
-       }
-
 };
 
 
@@ -88,9 +109,9 @@ class ModuleOperChansFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule()
+       virtual Module * CreateModule(Server* Me)
        {
-               return new ModuleOperChans;
+               return new ModuleOperChans(Me);
        }
        
 };