]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sajoin.cpp
Allow commands to optionally route themselves using ENCAP
[user/henk/code/inspircd.git] / src / modules / m_sajoin.cpp
index 2b143606f78640c0ea240c20b8a4c82cced6f3eb..8fad7bc42d650c90353a411b6a7421fdef71b6c6 100644 (file)
@@ -1 +1,110 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "users.h"\r#include "channels.h"\r#include "modules.h"\r\r/* $ModDesc: Provides support for unreal-style SAJOIN command */\r\r/** Handle /SAJOIN\r */\rclass cmd_sajoin : public command_t\r{\r public:\r cmd_sajoin (InspIRCd* Instance) : command_t(Instance,"SAJOIN", 'o', 2)\r      {\r              this->source = "m_sajoin.so";\r          syntax = "<nick> <channel>";\r   }\r\r     CmdResult Handle (const char** parameters, int pcnt, userrec *user)\r    {\r              userrec* dest = ServerInstance->FindNick(parameters[0]);\r               if (dest)\r              {\r                      if (ServerInstance->ULine(dest->server))\r                       {\r                              user->WriteServ("990 %s :Cannot use an SA command on a u-lined client",user->nick);\r                            return CMD_FAILURE;\r                    }\r                      if (!ServerInstance->IsChannel(parameters[1]))\r                 {\r                              /* we didn't need to check this for each character ;) */\r                               user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Invalid characters in channel name");\r                         return CMD_FAILURE;\r                    }\r\r                     /* For local users, we send the JoinUser which may create a channel and set its TS.\r                     * For non-local users, we just return CMD_SUCCESS, knowing this will propogate it where it needs to be\r                         * and then that server will generate the users JOIN or FJOIN instead.\r                  */\r                    if (IS_LOCAL(dest))\r                    {\r                              chanrec::JoinUser(ServerInstance, dest, parameters[1], true, "", ServerInstance->Time(true));\r                          /* Fix for dotslasher and w00t - if the join didnt succeed, return CMD_FAILURE so that it doesnt propogate */\r                          chanrec* n = ServerInstance->FindChan(parameters[1]);\r                          if (n)\r                         {\r                                      if (n->HasUser(dest))\r                                  {\r                                              ServerInstance->WriteOpers("*** "+std::string(user->nick)+" used SAJOIN to make "+std::string(dest->nick)+" join "+parameters[1]);\r                                             return CMD_SUCCESS;\r                                    }\r                                      else\r                                   {\r                                              user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Could not join "+std::string(dest->nick)+" to "+parameters[1]+" (User is probably banned, or blocking modes)");\r                                               return CMD_FAILURE;\r                                    }\r                              }\r                              else\r                           {\r                                      user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Could not join "+std::string(dest->nick)+" to "+parameters[1]);\r                                       return CMD_FAILURE;\r                            }\r                      }\r                      else\r                   {\r                              ServerInstance->WriteOpers("*** "+std::string(user->nick)+" sent remote SAJOIN to make "+std::string(dest->nick)+" join "+parameters[1]);\r                              return CMD_SUCCESS;\r                    }\r              }\r              else\r           {\r                      user->WriteServ("NOTICE "+std::string(user->nick)+" :*** No such nickname "+parameters[0]);\r                    return CMD_FAILURE;\r            }\r      }\r};\r\rclass ModuleSajoin : public Module\r{\r     cmd_sajoin*     mycommand;\r public:\r    ModuleSajoin(InspIRCd* Me)\r             : Module(Me)\r   {\r              \r               mycommand = new cmd_sajoin(ServerInstance);\r            ServerInstance->AddCommand(mycommand);\r }\r      \r       virtual ~ModuleSajoin()\r        {\r      }\r      \r       virtual Version GetVersion()\r   {\r              return Version(1,1,0,1,VF_VENDOR,API_VERSION);\r }\r      \r};\r\rMODULE_INIT(ModuleSajoin)\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2009 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"
+
+/* $ModDesc: Provides support for unreal-style SAJOIN command */
+
+/** Handle /SAJOIN
+ */
+class CommandSajoin : public Command
+{
+ public:
+       CommandSajoin (InspIRCd* Instance) : Command(Instance,"SAJOIN", "o", 2, false, 0)
+       {
+               this->source = "m_sajoin.so";
+               syntax = "<nick> <channel>";
+               TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
+       }
+
+       CmdResult Handle (const std::vector<std::string>& parameters, User *user)
+       {
+               User* dest = ServerInstance->FindNick(parameters[0]);
+               if (dest)
+               {
+                       if (ServerInstance->ULine(dest->server))
+                       {
+                               user->WriteNumeric(ERR_NOPRIVILEGES, "%s :Cannot use an SA command on a u-lined client",user->nick.c_str());
+                               return CMD_FAILURE;
+                       }
+                       if (IS_LOCAL(user) && !ServerInstance->IsChannel(parameters[1].c_str(), ServerInstance->Config->Limits.ChanMax))
+                       {
+                               /* we didn't need to check this for each character ;) */
+                               user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Invalid characters in channel name or name too long");
+                               return CMD_FAILURE;
+                       }
+
+                       /* For local users, we send the JoinUser which may create a channel and set its TS.
+                        * For non-local users, we just return CMD_SUCCESS, knowing this will propagate it where it needs to be
+                        * and then that server will generate the users JOIN or FJOIN instead.
+                        */
+                       if (IS_LOCAL(dest))
+                       {
+                               Channel::JoinUser(ServerInstance, dest, parameters[1].c_str(), true, "", false, ServerInstance->Time());
+                               /* Fix for dotslasher and w00t - if the join didnt succeed, return CMD_FAILURE so that it doesnt propagate */
+                               Channel* n = ServerInstance->FindChan(parameters[1]);
+                               if (n)
+                               {
+                                       if (n->HasUser(dest))
+                                       {
+                                               ServerInstance->SNO->WriteToSnoMask('a', std::string(user->nick)+" used SAJOIN to make "+std::string(dest->nick)+" join "+parameters[1]);
+                                               return CMD_SUCCESS;
+                                       }
+                                       else
+                                       {
+                                               user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Could not join "+std::string(dest->nick)+" to "+parameters[1]+" (User is probably banned, or blocking modes)");
+                                               return CMD_FAILURE;
+                                       }
+                               }
+                               else
+                               {
+                                       user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Could not join "+std::string(dest->nick)+" to "+parameters[1]);
+                                       return CMD_FAILURE;
+                               }
+                       }
+                       else
+                       {
+                               ServerInstance->SNO->WriteToSnoMask('a', std::string(user->nick)+" sent remote SAJOIN to make "+std::string(dest->nick)+" join "+parameters[1]);
+                               return CMD_SUCCESS;
+                       }
+               }
+               else
+               {
+                       user->WriteServ("NOTICE "+std::string(user->nick)+" :*** No such nickname "+parameters[0]);
+                       return CMD_FAILURE;
+               }
+       }
+};
+
+class ModuleSajoin : public Module
+{
+       CommandSajoin cmd;
+ public:
+       ModuleSajoin(InspIRCd* Me)
+               : Module(Me), cmd(Me)
+       {
+               ServerInstance->AddCommand(&cmd);
+       }
+
+       virtual ~ModuleSajoin()
+       {
+       }
+
+       virtual Version GetVersion()
+       {
+               return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
+       }
+
+};
+
+MODULE_INIT(ModuleSajoin)