]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_hideoper.cpp
Remove the intercomm system since sqlite is synchronous.
[user/henk/code/inspircd.git] / src / modules / m_hideoper.cpp
index b19ecb97c15529e5c0d99eec750a90582034b157..54207db557df02e37aaf97650086330d691928c8 100644 (file)
 class HideOper : public ModeHandler
 {
  public:
-       HideOper(InspIRCd* Instance, Module* Creator) : ModeHandler(Instance, Creator, 'H', 0, 0, false, MODETYPE_USER, true) { }
+       HideOper(Module* Creator) : ModeHandler(Creator, "hideoper", 'H', PARAM_NONE, MODETYPE_USER)
+       {
+               oper = true;
+       }
 
        ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
        {
@@ -49,8 +52,8 @@ class ModuleHideOper : public Module
 {
        HideOper hm;
  public:
-       ModuleHideOper(InspIRCd* Me)
-               : Module(Me), hm(Me, this)
+       ModuleHideOper()
+               : hm(this)
        {
 
                if (!ServerInstance->Modes->AddMode(&hm))
@@ -62,12 +65,11 @@ class ModuleHideOper : public Module
 
        virtual ~ModuleHideOper()
        {
-               ServerInstance->Modes->DelMode(&hm);
        }
 
        virtual Version GetVersion()
        {
-               return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for hiding oper status with user mode +H", VF_COMMON | VF_VENDOR);
        }
 
        ModResult OnWhoisLine(User* user, User* dest, int &numeric, std::string &text)
@@ -86,6 +88,17 @@ class ModuleHideOper : public Module
 
                return MOD_RES_PASSTHRU;
        }
+
+       void OnSendWhoLine(User* source, User* user, Channel* channel, std::string& line)
+       {
+               if (user->IsModeSet('H') && !source->HasPrivPermission("users/auspex"))
+               {
+                       // hide the "*" that marks the user as an oper from the /WHO line
+                       std::string::size_type pos = line.find("* ");
+                       if (pos != std::string::npos)
+                               line.erase(pos);
+               }
+       }
 };