]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_nicklock.cpp
Remove the intercomm system since sqlite is synchronous.
[user/henk/code/inspircd.git] / src / modules / m_nicklock.cpp
index b0f257cf9d85ff29a5da0966481f0ea642cb478a..759a38bc156493fc3bd1d9f772609986db5a6b89 100644 (file)
  */
 class CommandNicklock : public Command
 {
-
  public:
-       CommandNicklock (InspIRCd* Instance) : Command(Instance,"NICKLOCK", "o", 2)
+       LocalIntExt& locked;
+       CommandNicklock (Module* Creator, LocalIntExt& ext) : Command(Creator,"NICKLOCK", 2),
+               locked(ext)
        {
-               this->source = "m_nicklock.so";
+               flags_needed = 'o';
                syntax = "<oldnick> <newnick>";
                TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
        }
@@ -59,11 +60,7 @@ class CommandNicklock : public Command
                /* If we made it this far, extend the user */
                if (target && IS_LOCAL(target))
                {
-                       // This has to be done *here*, because this metadata must be stored netwide.
-                       target->Extend("nick_locked", "ON");
-
-                       /* Only send out nick from local server */
-                       target->Extend("nick_locked");
+                       locked.set(target, 1);
 
                        std::string oldnick = target->nick;
                        if (target->ForceNickChange(parameters[1].c_str()))
@@ -92,9 +89,11 @@ class CommandNicklock : public Command
 class CommandNickunlock : public Command
 {
  public:
-       CommandNickunlock (InspIRCd* Instance) : Command(Instance,"NICKUNLOCK", "o", 1)
+       LocalIntExt& locked;
+       CommandNickunlock (Module* Creator, LocalIntExt& ext) : Command(Creator,"NICKUNLOCK", 1),
+               locked(ext)
        {
-               this->source = "m_nicklock.so";
+               flags_needed = 'o';
                syntax = "<locked-nick>";
                TRANSLATE2(TR_NICK, TR_END);
        }
@@ -121,7 +120,7 @@ class CommandNickunlock : public Command
 
                if (target && IS_LOCAL(target))
                {
-                       if (target->Shrink("nick_locked"))
+                       if (locked.set(target, 0))
                        {
                                ServerInstance->SNO->WriteGlobalSno('a', std::string(user->nick)+" used NICKUNLOCK on "+parameters[0]);
                                user->WriteNumeric(945, "%s %s :Nickname now unlocked.",user->nick.c_str(),target->nick.c_str());
@@ -148,50 +147,46 @@ class CommandNickunlock : public Command
 
 class ModuleNickLock : public Module
 {
-       CommandNicklock cmd1;
-       CommandNickunlock       cmd2;
+       LocalIntExt locked;
+       CommandNicklock cmd1;
+       CommandNickunlock cmd2;
  public:
-       ModuleNickLock(InspIRCd* Me)
-               : Module(Me), cmd1(Me), cmd2(Me)
+       ModuleNickLock()
+               : locked("nick_locked", this), cmd1(this, locked), cmd2(this, locked)
        {
                ServerInstance->AddCommand(&cmd1);
                ServerInstance->AddCommand(&cmd2);
-               Implementation eventlist[] = { I_OnUserPreNick, I_OnUserQuit, I_OnCleanup };
-               ServerInstance->Modules->Attach(eventlist, this, 3);
+               ServerInstance->Extensions.Register(&locked);
+               ServerInstance->Modules->Attach(I_OnUserPreNick, this);
        }
 
-       virtual ~ModuleNickLock()
+       ~ModuleNickLock()
        {
        }
 
-       virtual Version GetVersion()
+       Version GetVersion()
        {
-               return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides the NICKLOCK command, allows an oper to chage a users nick and lock them to it until they quit", VF_COMMON | VF_VENDOR);
        }
 
 
-       virtual int OnUserPreNick(User* user, const std::string &newnick)
+       ModResult OnUserPreNick(User* user, const std::string &newnick)
        {
                if (!IS_LOCAL(user))
-                       return 0;
+                       return MOD_RES_PASSTHRU;
 
                if (isdigit(newnick[0])) /* Allow a switch to a UID */
-                       return 0;
+                       return MOD_RES_PASSTHRU;
 
-               if (user->GetExt("NICKForced")) /* Allow forced nick changes */
-                       return 0;
+               if (ServerInstance->NICKForced.get(user)) /* Allow forced nick changes */
+                       return MOD_RES_PASSTHRU;
 
-               if (user->GetExt("nick_locked"))
+               if (locked.get(user))
                {
                        user->WriteNumeric(447, "%s :You cannot change your nickname (your nick is locked)",user->nick.c_str());
-                       return 1;
+                       return MOD_RES_DENY;
                }
-               return 0;
-       }
-
-       virtual void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message)
-       {
-               user->Shrink("nick_locked");
+               return MOD_RES_PASSTHRU;
        }
 
        void Prioritize()
@@ -199,15 +194,6 @@ class ModuleNickLock : public Module
                Module *nflood = ServerInstance->Modules->Find("m_nickflood.so");
                ServerInstance->Modules->SetPriority(this, I_OnUserPreJoin, PRIORITY_BEFORE, &nflood);
        }
-
-       virtual void OnCleanup(int target_type, void* item)
-       {
-               if(target_type == TYPE_USER)
-               {
-                       User* user = (User*)item;
-                       user->Shrink("nick_locked");
-               }
-       }
 };
 
 MODULE_INIT(ModuleNickLock)