]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_helpop.cpp
Various improvements for the helpop module.
[user/henk/code/inspircd.git] / src / modules / m_helpop.cpp
index f8829857681b37b9a775ab2f35c6f9cac6e952ab..a34e3ff9407889b523eee56950ff28fe0ac5d772 100644 (file)
@@ -1,11 +1,14 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
- *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
- *   Copyright (C) 2005-2009 Robin Burchell <robin+git@viroteck.net>
- *   Copyright (C) 2004-2006, 2008 Craig Edwards <craigedwards@brainbox.cc>
+ *   Copyright (C) 2013-2015 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2013, 2017-2018, 2020 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
+ *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
+ *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
- *   Copyright (C) 2004-2005 Craig McLure <craig@chatspike.net>
+ *   Copyright (C) 2006-2007 Craig Edwards <brain@inspircd.org>
  *
  * 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
 enum
 {
        // From UnrealIRCd.
-       RPL_WHOISHELPOP = 310
+       RPL_WHOISHELPOP = 310,
+
+       // From ircd-ratbox.
+       ERR_HELPNOTFOUND = 524,
+       RPL_HELPSTART = 704,
+       RPL_HELPTXT = 705,
+       RPL_ENDOFHELP = 706
 };
 
-typedef std::map<std::string, std::string, irc::insensitive_swo> HelpopMap;
-static HelpopMap helpop_map;
+typedef std::vector<std::string> HelpMessage;
 
-/** Handles user mode +h
- */
-class Helpop : public SimpleUserModeHandler
-{
- public:
-       Helpop(Module* Creator) : SimpleUserModeHandler(Creator, "helpop", 'h')
-       {
-               oper = true;
-       }
-};
+typedef std::map<std::string, HelpMessage, irc::insensitive_swo> HelpMap;
 
-/** Handles /HELPOP
- */
 class CommandHelpop : public Command
 {
+ private:
        const std::string startkey;
+
  public:
+       HelpMap help;
+       std::string nohelp;
+
        CommandHelpop(Module* Creator)
                : Command(Creator, "HELPOP", 0)
                , startkey("start")
@@ -59,106 +61,107 @@ class CommandHelpop : public Command
 
        CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
        {
-               const std::string& parameter = (!parameters.empty() ? parameters[0] : startkey);
-
-               if (parameter == "index")
+               const std::string& topic = parameters.empty() ? startkey : parameters[0];
+               HelpMap::const_iterator titer = help.find(topic);
+               if (titer == help.end())
                {
-                       /* iterate over all helpop items */
-                       user->WriteNumeric(290, "HELPOP topic index");
-                       for (HelpopMap::const_iterator iter = helpop_map.begin(); iter != helpop_map.end(); iter++)
-                               user->WriteNumeric(292, InspIRCd::Format("  %s", iter->first.c_str()));
-                       user->WriteNumeric(292, "*** End of HELPOP topic index");
+                       user->WriteNumeric(ERR_HELPNOTFOUND, topic, nohelp);
+                       return CMD_FAILURE;
                }
-               else
-               {
-                       user->WriteNumeric(290, InspIRCd::Format("*** HELPOP for %s", parameter.c_str()));
-                       user->WriteNumeric(292, " -");
-
-                       HelpopMap::const_iterator iter = helpop_map.find(parameter);
-
-                       if (iter == helpop_map.end())
-                       {
-                               iter = helpop_map.find("nohelp");
-                       }
-
-                       const std::string& value = iter->second;
-                       irc::sepstream stream(value, '\n');
-                       std::string token = "*";
 
-                       while (stream.GetToken(token))
-                       {
-                               // Writing a blank line will not work with some clients
-                               if (token.empty())
-                                       user->WriteNumeric(292, ' ');
-                               else
-                                       user->WriteNumeric(292, token);
-                       }
-
-                       user->WriteNumeric(292, " -");
-                       user->WriteNumeric(292, "*** End of HELPOP");
-               }
+               user->WriteNumeric(RPL_HELPSTART, topic, InspIRCd::Format("*** Help for %s", topic.c_str()));
+               for (HelpMessage::const_iterator liter = titer->second.begin(); liter != titer->second.end(); ++liter)
+                       user->WriteNumeric(RPL_HELPTXT, topic, *liter);
+               user->WriteNumeric(RPL_ENDOFHELP, topic, "*** End of help");
                return CMD_SUCCESS;
        }
 };
 
-class ModuleHelpop : public Module, public Whois::EventListener
+class ModuleHelpop
+       : public Module
+       , public Whois::EventListener
 {
+ private:
                CommandHelpop cmd;
-               Helpop ho;
+               SimpleUserModeHandler ho;
 
        public:
                ModuleHelpop()
                        : Whois::EventListener(this)
                        , cmd(this)
-                       , ho(this)
+                       , ho(this, "helpop", 'h', true)
                {
                }
 
                void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
                {
-                       HelpopMap help;
+                       size_t longestkey = 0;
 
+                       HelpMap newhelp;
                        ConfigTagList tags = ServerInstance->Config->ConfTags("helpop");
-                       for(ConfigIter i = tags.first; i != tags.second; ++i)
+                       if (tags.first == tags.second)
+                               throw ModuleException("You have loaded the helpop module but not configured any help topics!");
+
+                       for (ConfigIter i = tags.first; i != tags.second; ++i)
                        {
                                ConfigTag* tag = i->second;
-                               std::string key = tag->getString("key");
-                               std::string value;
-                               tag->readString("value", value, true); /* Linefeeds allowed */
 
-                               if (key == "index")
-                               {
-                                       throw ModuleException("m_helpop: The key 'index' is reserved for internal purposes. Please remove it.");
-                               }
+                               // Attempt to read the help key.
+                               const std::string key = tag->getString("key");
+                               if (key.empty())
+                                       throw ModuleException(InspIRCd::Format("<helpop:key> is empty at %s", tag->getTagLocation().c_str()));
+                               else if (irc::equals(key, "index"))
+                                       throw ModuleException(InspIRCd::Format("<helpop:key> is set to \"index\" which is reserved at %s", tag->getTagLocation().c_str()));
+                               else if (key.length() > longestkey)
+                                       longestkey = key.length();
 
-                               help[key] = value;
+                               // Attempt to read the help value.
+                               std::string value;
+                               if (!tag->readString("value", value, true) || value.empty())
+                                       throw ModuleException(InspIRCd::Format("<helpop:value> is empty at %s", tag->getTagLocation().c_str()));
+
+                               // Parse the help body. Empty lines are replaced with a single
+                               // space because some clients are unable to show blank lines.
+                               HelpMessage helpmsg;
+                               irc::sepstream linestream(value, '\n', true);
+                               for (std::string line; linestream.GetToken(line); )
+                                       helpmsg.push_back(line.empty() ? " " : line);
+                               newhelp[key] = helpmsg;
                        }
 
-                       if (help.find("start") == help.end())
-                       {
-                               // error!
-                               throw ModuleException("m_helpop: Helpop file is missing important entry 'start'. Please check the example conf.");
-                       }
-                       else if (help.find("nohelp") == help.end())
+                       // The number of items we can fit on a page.
+                       HelpMessage& indexmsg = newhelp["index"];
+                       size_t maxcolumns = 80 / (longestkey + 2);
+                       for (HelpMap::iterator iter = newhelp.begin(); iter != newhelp.end(); )
                        {
-                               // error!
-                               throw ModuleException("m_helpop: Helpop file is missing important entry 'nohelp'. Please check the example conf.");
+                               std::string indexline;
+                               for (size_t column = 0; column != maxcolumns; )
+                               {
+                                       if (iter == newhelp.end())
+                                               break;
+
+                                       indexline.append(iter->first);
+                                       if (++column != maxcolumns)
+                                               indexline.append(longestkey - iter->first.length() + 2, ' ');
+                                       iter++;
+                               }
+                               indexmsg.push_back(indexline);
                        }
+                       cmd.help.swap(newhelp);
 
-                       helpop_map.swap(help);
+                       ConfigTag* tag = ServerInstance->Config->ConfValue("helpmsg");
+                       cmd.nohelp = tag->getString("nohelp", "There is no help for the topic you searched for. Please try again.", 1);
                }
 
                void OnWhois(Whois::Context& whois) CXX11_OVERRIDE
                {
                        if (whois.GetTarget()->IsModeSet(ho))
-                       {
                                whois.SendLine(RPL_WHOISHELPOP, "is available for help.");
-                       }
                }
 
                Version GetVersion() CXX11_OVERRIDE
                {
-                       return Version("Provides the /HELPOP command for useful information", VF_VENDOR);
+                       return Version("Provides help to users via the HELPOP command", VF_VENDOR);
                }
 };