]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_swhois.cpp
Change /CHECK <#channel> to correctly report timestamp since it might have been TS...
[user/henk/code/inspircd.git] / src / modules / m_swhois.cpp
index c6f26384a6b797626bc7aae116b0edfe6c2db001..cb01c774186e23a104c3266f558e1e74b4199ea9 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
  */
 class CommandSwhois : public Command
 {
-       
+
  public:
-       CommandSwhois (InspIRCd* Instance) : Command(Instance,"SWHOIS","o",2)
+       CommandSwhois (InspIRCd* Instance) : Command(Instance,"SWHOIS","o",2, 2)
        {
                this->source = "m_swhois.so";
-               syntax = "<nick> <swhois>";
+               syntax = "<nick> :<swhois>";
                TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
        }
 
-       CmdResult Handle(const char* const* parameters, int pcnt, User* user)
+       CmdResult Handle(const std::vector<std::string> &parameters, User* user)
        {
                User* dest = ServerInstance->FindNick(parameters[0]);
-               
+
                if (!dest)
                {
-                       user->WriteNumeric(401, "%s %s :No such nick/channel", user->nick, parameters[0]);
+                       user->WriteNumeric(ERR_NOSUCHNICK, "%s %s :No such nick/channel", user->nick.c_str(), parameters[0].c_str());
                        return CMD_FAILURE;
                }
 
-               std::string line;
-               for (int i = 1; i < pcnt; i++)
-               {
-                       if (i != 1)
-                               line.append(" ");
-                               
-                       line.append(parameters[i]);
-               }
-               
                std::string* text;
-               dest->GetExt("swhois", text);
-
-               if (text)
+               if (dest->GetExt("swhois", text))
                {
                        // We already had it set...
                        if (!ServerInstance->ULine(user->server))
                                // Ulines set SWHOISes silently
-                               ServerInstance->SNO->WriteToSnoMask('A', "%s used SWHOIS to set %s's extra whois from '%s' to '%s'", user->nick, dest->nick, text->c_str(), line.c_str());
-                       
+                               ServerInstance->SNO->WriteToSnoMask('A', "%s used SWHOIS to set %s's extra whois from '%s' to '%s'", user->nick.c_str(), dest->nick.c_str(), text->c_str(), parameters[1].c_str());
+
                        dest->Shrink("swhois");
                        delete text;
                }
                else if (!ServerInstance->ULine(user->server))
                {
                        // Ulines set SWHOISes silently
-                       ServerInstance->SNO->WriteToSnoMask('A', "%s used SWHOIS to set %s's extra whois to '%s'", user->nick, dest->nick, line.c_str());
+                       ServerInstance->SNO->WriteToSnoMask('A', "%s used SWHOIS to set %s's extra whois to '%s'", user->nick.c_str(), dest->nick.c_str(), parameters[1].c_str());
                }
-               
-               text = new std::string(line);
+
+               text = new std::string(parameters[1]);
                dest->Extend("swhois", text);
 
                /* Bug #376 - feature request -
@@ -76,7 +65,7 @@ class CommandSwhois : public Command
                 * -- Brain
                 */
                ServerInstance->PI->SendMetaData(dest, TYPE_USER, "swhois", *text);
-               
+
                // If it's an empty swhois, unset it (not ideal, but ok)
                if (text->empty())
                {
@@ -92,13 +81,13 @@ class CommandSwhois : public Command
 class ModuleSWhois : public Module
 {
        CommandSwhois* mycommand;
-       
+
        ConfigReader* Conf;
-       
+
  public:
        ModuleSWhois(InspIRCd* Me) : Module(Me)
        {
-               
+
                Conf = new ConfigReader(ServerInstance);
                mycommand = new CommandSwhois(ServerInstance);
                ServerInstance->AddCommand(mycommand);
@@ -121,10 +110,9 @@ class ModuleSWhois : public Module
                {
                        /* Insert our numeric before 312 */
                        std::string* swhois;
-                       dest->GetExt("swhois", swhois);
-                       if (swhois)
+                       if (dest->GetExt("swhois", swhois))
                        {
-                               ServerInstance->SendWhoisLine(user, dest, 320, "%s %s :%s",user->nick,dest->nick,swhois->c_str());
+                               ServerInstance->SendWhoisLine(user, dest, 320, "%s %s :%s",user->nick.c_str(), dest->nick.c_str(), swhois->c_str());
                        }
                }
 
@@ -144,8 +132,7 @@ class ModuleSWhois : public Module
                {
                        // check if this user has an swhois field to send
                        std::string* swhois;
-                       user->GetExt("swhois", swhois);
-                       if (swhois)
+                       if (user->GetExt("swhois", swhois))
                        {
                                // call this function in the linking module, let it format the data how it
                                // sees fit, and send it on its way. We dont need or want to know how.
@@ -158,8 +145,7 @@ class ModuleSWhois : public Module
        virtual void OnUserQuit(User* user, const std::string &message, const std::string &oper_message)
        {
                std::string* swhois;
-               user->GetExt("swhois", swhois);
-               if (swhois)
+               if (user->GetExt("swhois", swhois))
                {
                        user->Shrink("swhois");
                        delete swhois;
@@ -173,8 +159,7 @@ class ModuleSWhois : public Module
                {
                        User* user = (User*)item;
                        std::string* swhois;
-                       user->GetExt("swhois", swhois);
-                       if (swhois)
+                       if (user->GetExt("swhois", swhois))
                        {
                                user->Shrink("swhois");
                                delete swhois;
@@ -211,31 +196,31 @@ class ModuleSWhois : public Module
                        dest->Extend("swhois", text);
                }
        }
-       
-       virtual void OnPostCommand(const std::string &command, const char* const* params, int pcnt, User *user, CmdResult result, const std::string &original_line)
+
+       virtual void OnPostCommand(const std::string &command, const std::vector<std::string> &params, User *user, CmdResult result, const std::string &original_line)
        {
                if ((command != "OPER") || (result != CMD_SUCCESS))
                        return;
-               
+
                std::string swhois;
-               
+
                for (int i = 0; i < Conf->Enumerate("oper"); i++)
                {
                        std::string name = Conf->ReadValue("oper", "name", i);
-                       
+
                        if (name == params[0])
                        {
                                swhois = Conf->ReadValue("oper", "swhois", i);
                                break;
                        }
                }
-               
+
                if (!swhois.length())
                {
                        for (int i = 0; i < Conf->Enumerate("type"); i++)
                        {
                                std::string type = Conf->ReadValue("type", "name", i);
-                               
+
                                if (type == user->oper)
                                {
                                        swhois = Conf->ReadValue("type", "swhois", i);
@@ -250,10 +235,10 @@ class ModuleSWhois : public Module
                        user->Shrink("swhois");
                        delete old;
                }
-               
+
                if (!swhois.length())
                        return;
-               
+
                std::string *text = new std::string(swhois);
                user->Extend("swhois", text);
                ServerInstance->PI->SendMetaData(user, TYPE_USER, "swhois", *text);
@@ -263,10 +248,10 @@ class ModuleSWhois : public Module
        {
                delete Conf;
        }
-       
+
        virtual Version GetVersion()
        {
-               return Version(1, 2, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
        }
 };