]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_showwhois.cpp
Better error message for erroring on loading server cert - give certfile/keyfile...
[user/henk/code/inspircd.git] / src / modules / m_showwhois.cpp
index 5d01d59831197bba3bb52d7f95cb6c09c765a1db..e4e666a1d5e0b825568981923e9ed02ba0162835 100644 (file)
@@ -47,17 +47,22 @@ class SeeWhois : public ModeHandler
 
 class ModuleShowwhois : public Module
 {
-
+       bool ShowWhoisFromOpers;
        SeeWhois* sw;
 
  public:
 
        ModuleShowwhois(InspIRCd* Me) : Module(Me)
        {
-               sw = NULL;
-               OnRehash(NULL, "");
-               Implementation eventlist[] = { I_OnWhois, I_OnRehash };
-               ServerInstance->Modules->Attach(eventlist, this, 2);
+               ConfigReader conf(ServerInstance);
+               bool OpersOnly = conf.ReadFlag("showwhois", "opersonly", "yes", 0);
+               ShowWhoisFromOpers = conf.ReadFlag("showwhois", "showfromopers", "yes", 0);
+
+               sw = new SeeWhois(ServerInstance, OpersOnly);
+               if (!ServerInstance->Modes->AddMode(sw))
+                       throw ModuleException("Could not add new modes!");
+               Implementation eventlist[] = { I_OnWhois };
+               ServerInstance->Modules->Attach(eventlist, this, 1);
        }
 
        ~ModuleShowwhois()
@@ -71,26 +76,13 @@ class ModuleShowwhois : public Module
                return Version("$Id$",VF_COMMON|VF_VENDOR,API_VERSION);
        }
 
-       virtual void OnRehash(User *user, const std::string &parameter)
-       {
-               ConfigReader conf(ServerInstance);
-               bool OpersOnly = conf.ReadFlag("showwhois", "opersonly", 0, true);
-
-               if (sw)
-               {
-                       ServerInstance->Modes->DelMode(sw);
-                       delete sw;                      
-               }
-
-               sw = new SeeWhois(ServerInstance, OpersOnly);
-               if (!ServerInstance->Modes->AddMode(sw))
-                       throw ModuleException("Could not add new modes!");
-       }
-
        virtual void OnWhois(User* source, User* dest)
        {
                if ((dest->IsModeSet('W')) && (source != dest))
                {
+                       if (!ShowWhoisFromOpers && IS_OPER(source))
+                               return;
+
                        std::string wmsg = "*** ";
                        wmsg += source->nick + "(" + source->ident + "@";