]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_namedmodes.cpp
Introduce ModeProcessFlags, can be passed to ModeParser::Process() to indicate local...
[user/henk/code/inspircd.git] / src / modules / m_namedmodes.cpp
index bc8279f698922c6a5a9ddb3ad3e32e9121c6a77d..26b6339a3aa1415d9c98c0137dcc361438b5da0c 100644 (file)
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+
+/* $ModDesc: Provides the ability to manipulate modes via long names. */
+
 #include "inspircd.h"
 
-class ModuleNamedModes : public Module
+static void DisplayList(User* user, Channel* channel)
+{
+       std::stringstream items;
+       for(char letter = 'A'; letter <= 'z'; letter++)
+       {
+               ModeHandler* mh = ServerInstance->Modes->FindMode(letter, MODETYPE_CHANNEL);
+               if (!mh || mh->IsListMode())
+                       continue;
+               if (!channel->IsModeSet(letter))
+                       continue;
+               items << " +" << mh->name;
+               if (mh->GetNumParams(true))
+                       items << " " << channel->GetModeParameter(letter);
+       }
+       const std::string line = ":" + ServerInstance->Config->ServerName + " 961 " + user->nick + " " + channel->name;
+       user->SendText(line, items);
+       user->WriteNumeric(960, "%s %s :End of mode list", user->nick.c_str(), channel->name.c_str());
+}
+
+class CommandProp : public Command
 {
  public:
-       ModuleNamedModes()
+       CommandProp(Module* parent) : Command(parent, "PROP", 1)
        {
-               Implementation eventlist[] = { I_OnPreMode, I_On005Numeric };
-               ServerInstance->Modules->Attach(eventlist, this, 2);
+               syntax = "<user|channel> {[+-]<mode> [<value>]}*";
        }
 
-       Version GetVersion()
+       CmdResult Handle(const std::vector<std::string> &parameters, User *src)
        {
-               return Version("Provides the ability to manipulate modes via long names.",VF_VENDOR);
+               if (parameters.size() == 1)
+               {
+                       Channel* chan = ServerInstance->FindChan(parameters[0]);
+                       if (chan)
+                               DisplayList(src, chan);
+                       return CMD_SUCCESS;
+               }
+               unsigned int i = 1;
+               std::vector<std::string> modes;
+               modes.push_back(parameters[0]);
+               modes.push_back("");
+               while (i < parameters.size())
+               {
+                       std::string prop = parameters[i++];
+                       bool plus = prop[0] != '-';
+                       if (prop[0] == '+' || prop[0] == '-')
+                               prop.erase(prop.begin());
+
+                       for(char letter = 'A'; letter <= 'z'; letter++)
+                       {
+                               ModeHandler* mh = ServerInstance->Modes->FindMode(letter, MODETYPE_CHANNEL);
+                               if (mh && mh->name == prop)
+                               {
+                                       modes[1].append((plus ? "+" : "-") + std::string(1, letter));
+                                       if (mh->GetNumParams(plus))
+                                       {
+                                               if (i != parameters.size())
+                                                       modes.push_back(parameters[i++]);
+                                       }
+                               }
+                       }
+               }
+               ServerInstance->Modes->Process(modes, src);
+               return CMD_SUCCESS;
        }
+};
 
-       void Prioritize()
+class DummyZ : public ModeHandler
+{
+ public:
+       DummyZ(Module* parent) : ModeHandler(parent, "namebase", 'Z', PARAM_ALWAYS, MODETYPE_CHANNEL)
        {
-               ServerInstance->Modules->SetPriority(this, I_OnPreMode, PRIORITY_FIRST);
+               list = true;
        }
+};
 
-       void On005Numeric(std::string& line)
+class ModuleNamedModes : public Module
+{
+       CommandProp cmd;
+       DummyZ dummyZ;
+ public:
+       ModuleNamedModes() : cmd(this), dummyZ(this)
        {
-               std::string::size_type pos = line.find(" CHANMODES=");
-               if (pos != std::string::npos)
-               {
-                       pos += 11;
-                       while (line[pos] > 'A' && line[pos] < 'Z')
-                               pos++;
-                       line.insert(pos, 1, 'Z');
-               }
        }
 
-       void DisplayList(User* user, Channel* channel)
+       void init() CXX11_OVERRIDE
        {
-               for(char letter = 'A'; letter <= 'z'; letter++)
-               {
-                       ModeHandler* mh = ServerInstance->Modes->FindMode(letter, MODETYPE_CHANNEL);
-                       if (!mh || mh->IsListMode())
-                               continue;
-                       if (!channel->IsModeSet(letter))
-                               continue;
-                       std::string item = mh->name;
-                       if (mh->GetNumParams(true))
-                               item += "=" + channel->GetModeParameter(letter);
-                       user->WriteNumeric(961, "%s %s %s", user->nick.c_str(), channel->name.c_str(), item.c_str());
-               }
-               user->WriteNumeric(960, "%s %s :End of mode list", user->nick.c_str(), channel->name.c_str());
+               ServerInstance->Modules->AddService(cmd);
+               ServerInstance->Modules->AddService(dummyZ);
+
+               Implementation eventlist[] = { I_OnPreMode };
+               ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
+       }
+
+       Version GetVersion() CXX11_OVERRIDE
+       {
+               return Version("Provides the ability to manipulate modes via long names.",VF_VENDOR);
+       }
+
+       void Prioritize()
+       {
+               ServerInstance->Modules->SetPriority(this, I_OnPreMode, PRIORITY_FIRST);
        }
 
-       ModResult OnPreMode(User* source, User* dest, Channel* channel, const std::vector<std::string>& parameters)
+       ModResult OnPreMode(User* source, User* dest, Channel* channel, const std::vector<std::string>& parameters) CXX11_OVERRIDE
        {
                if (!channel)
                        return MOD_RES_PASSTHRU;
@@ -125,7 +188,7 @@ class ModuleNamedModes : public Module
                                if (modechar)
                                        modelist[i] = modechar;
                                else
-                                       modelist.erase(i, 1);
+                                       modelist.erase(i--, 1);
                        }
                        else if (mh && mh->GetNumParams(adding) && param_at < parameters.size())
                        {
@@ -133,7 +196,7 @@ class ModuleNamedModes : public Module
                        }
                }
                newparms[1] = modelist;
-               ServerInstance->Modes->Process(newparms, source, false);
+               ServerInstance->Modes->Process(newparms, source);
                return MOD_RES_DENY;
        }
 };