]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_ison.cpp
Remove channel argument from OnSendWhoLine, this information is already available...
[user/henk/code/inspircd.git] / src / commands / cmd_ison.cpp
index ba119e251c3fc630dd934b2de5d1f0ccaee215fc..1d92ad3ca3b63ad835496ff28425c4d7ff2cd1ce 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  */
 
 #include "inspircd.h"
-#include "commands/cmd_ison.h"
 
-extern "C" DllExport Command* init_command(InspIRCd* Instance)
+#ifndef __CMD_ISON_H__
+#define __CMD_ISON_H__
+
+// include the common header files
+
+#include "users.h"
+#include "channels.h"
+
+/** Handle /ISON. These command handlers can be reloaded by the core,
+ * and handle basic RFC1459 commands. Commands within modules work
+ * the same way, however, they can be fully unloaded, where these
+ * may not.
+ */
+class CommandIson : public Command
 {
-       return new CommandIson(Instance);
-}
+ public:
+       /** Constructor for ison.
+        */
+       CommandIson ( Module* parent) : Command(parent,"ISON",0,0) { syntax = "<nick> {nick}"; }
+       /** Handle command.
+        * @param parameters The parameters to the comamnd
+        * @param pcnt The number of parameters passed to teh command
+        * @param user The user issuing the command
+        * @return A value from CmdResult to indicate command success or failure.
+        */
+       CmdResult Handle(const std::vector<std::string>& parameters, User *user);
+};
+
+#endif
+
 
 /** Handle /ISON
  */
-CmdResult CommandIson::Handle (const char* const* parameters, int pcnt, User *user)
+CmdResult CommandIson::Handle (const std::vector<std::string>& parameters, User *user)
 {
        std::map<User*,User*> ison_already;
        User *u;
        std::string reply = std::string("303 ") + user->nick + " :";
 
-       for (int i = 0; i < pcnt; i++)
+       for (unsigned int i = 0; i < parameters.size(); i++)
        {
                u = ServerInstance->FindNick(parameters[i]);
                if (ison_already.find(u) != ison_already.end())
@@ -35,9 +60,6 @@ CmdResult CommandIson::Handle (const char* const* parameters, int pcnt, User *us
 
                if (u)
                {
-                       if (u->Visibility && !u->Visibility->VisibleTo(user))
-                               continue;
-
                        reply.append(u->nick).append(" ");
                        if (reply.length() > 450)
                        {
@@ -48,7 +70,7 @@ CmdResult CommandIson::Handle (const char* const* parameters, int pcnt, User *us
                }
                else
                {
-                       if ((i == pcnt-1) && (strchr(parameters[i],' ')))
+                       if ((i == parameters.size() - 1) && (parameters[i].find(' ') != std::string::npos))
                        {
                                /* Its a space seperated list of nicks (RFC1459 says to support this)
                                 */
@@ -63,9 +85,6 @@ CmdResult CommandIson::Handle (const char* const* parameters, int pcnt, User *us
 
                                        if (u)
                                        {
-                                               if (u->Visibility && !u->Visibility->VisibleTo(user))
-                                                       continue;
-
                                                reply.append(u->nick).append(" ");
                                                if (reply.length() > 450)
                                                {
@@ -85,3 +104,5 @@ CmdResult CommandIson::Handle (const char* const* parameters, int pcnt, User *us
        return CMD_SUCCESS;
 }
 
+
+COMMAND_INIT(CommandIson)