summaryrefslogtreecommitdiff
path: root/modules/fantasy.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-07-01 22:17:52 -0400
committerAdam <Adam@anope.org>2013-07-01 22:17:52 -0400
commit1a3d9a016d3adc49788bbff73aac9b3b5ea85b17 (patch)
treec0ecf92ed768473bc82ff64a7fce827245f37ba9 /modules/fantasy.cpp
parent518182ac9204f815258b0de91b3f884d8efa1502 (diff)
Change extensible keys to require explicitly having a type defined for it. Completely modularize more features like bs_kick, entrymsg, log, mode, etc. Move fantasy to its own module. Move greet to its own module.
Diffstat (limited to 'modules/fantasy.cpp')
-rw-r--r--modules/fantasy.cpp200
1 files changed, 200 insertions, 0 deletions
diff --git a/modules/fantasy.cpp b/modules/fantasy.cpp
new file mode 100644
index 000000000..01271392b
--- /dev/null
+++ b/modules/fantasy.cpp
@@ -0,0 +1,200 @@
+/* Fantasy functionality
+ *
+ * (C) 2003-2013 Anope Team
+ * Contact us at team@anope.org
+ *
+ * Please read COPYING and README for further details.
+ *
+ * Based on the original code of Epona by Lara.
+ * Based on the original code of Services by Andy Church.
+ */
+
+#include "module.h"
+
+class CommandBSSetFantasy : public Command
+{
+ public:
+ CommandBSSetFantasy(Module *creator, const Anope::string &sname = "botserv/set/fantasy") : Command(creator, sname, 2, 2)
+ {
+ this->SetDesc(_("Enable fantaisist commands"));
+ this->SetSyntax(_("\037channel\037 {\037ON|OFF\037}"));
+ }
+
+ void Execute(CommandSource &source, const std::vector<Anope::string> &params) anope_override
+ {
+ ChannelInfo *ci = ChannelInfo::Find(params[0]);
+ const Anope::string &value = params[1];
+
+ if (ci == NULL)
+ {
+ source.Reply(CHAN_X_NOT_REGISTERED, params[0].c_str());
+ return;
+ }
+
+ if (!source.HasPriv("botserv/administration") && !source.AccessFor(ci).HasPriv("SET"))
+ {
+ source.Reply(ACCESS_DENIED);
+ return;
+ }
+
+ if (Anope::ReadOnly)
+ {
+ source.Reply(_("Sorry, bot option setting is temporarily disabled."));
+ return;
+ }
+
+ if (value.equals_ci("ON"))
+ {
+ bool override = !source.AccessFor(ci).HasPriv("SET");
+ Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to enable fantasy";
+
+ ci->Extend<bool>("BS_FANTASY");
+ source.Reply(_("Fantasy mode is now \002on\002 on channel %s."), ci->name.c_str());
+ }
+ else if (value.equals_ci("OFF"))
+ {
+ bool override = !source.AccessFor(ci).HasPriv("SET");
+ Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to disable fantasy";
+
+ ci->Shrink<bool>("BS_FANTASY");
+ source.Reply(_("Fantasy mode is now \002off\002 on channel %s."), ci->name.c_str());
+ }
+ else
+ this->OnSyntaxError(source, source.command);
+ }
+
+ bool OnHelp(CommandSource &source, const Anope::string &) anope_override
+ {
+ this->SendSyntax(source);
+ source.Reply(_(" \n"
+ "Enables or disables \002fantasy\002 mode on a channel.\n"
+ "When it is enabled, users will be able to use\n"
+ "fantasy commands on a channel when prefixed\n"
+ "with one of the following fantasy characters: \002%s\002\n"
+ " \n"
+ "Note that users wanting to use fantaisist\n"
+ "commands MUST have enough access for both\n"
+ "the FANTASIA and the command they are executing."),
+ Config->GetModule(this->owner)->Get<const Anope::string>("fantasycharacter", "!").c_str());
+ return true;
+ }
+};
+
+class Fantasy : public Module
+{
+ SerializableExtensibleItem<bool> fantasy;
+
+ CommandBSSetFantasy commandbssetfantasy;
+
+ public:
+ Fantasy(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR),
+ fantasy(this, "BS_FANTASY"), commandbssetfantasy(this)
+ {
+ }
+
+ void OnPrivmsg(User *u, Channel *c, Anope::string &msg) anope_override
+ {
+ if (!u || !c || !c->ci || !c->ci->bi || msg.empty() || msg[0] == '\1')
+ return;
+
+ if (!fantasy.HasExt(c->ci))
+ return;
+
+ std::vector<Anope::string> params;
+ spacesepstream(msg).GetTokens(params);
+
+ if (!msg.find(c->ci->bi->nick))
+ params.erase(params.begin());
+ else if (!msg.find_first_of(Config->GetModule(this)->Get<const Anope::string>("fantasycharacter", "!")))
+ params[0].erase(params[0].begin());
+ else
+ return;
+
+ if (params.empty())
+ return;
+
+ CommandInfo::map::const_iterator it = Config->Fantasy.end();
+ unsigned count = 0;
+ for (unsigned max = params.size(); it == Config->Fantasy.end() && max > 0; --max)
+ {
+ Anope::string full_command;
+ for (unsigned i = 0; i < max; ++i)
+ full_command += " " + params[i];
+ full_command.erase(full_command.begin());
+
+ ++count;
+ it = Config->Fantasy.find(full_command);
+ }
+
+ if (it == Config->Fantasy.end())
+ return;
+
+ const CommandInfo &info = it->second;
+ ServiceReference<Command> cmd("Command", info.name);
+ if (!cmd)
+ {
+ Log(LOG_DEBUG) << "Fantasy command " << it->first << " exists for nonexistant service " << info.name << "!";
+ return;
+ }
+
+ for (unsigned i = 0, j = params.size() - (count - 1); i < j; ++i)
+ params.erase(params.begin());
+
+ /* Some commands take the channel as a first parameter */
+ if (info.prepend_channel)
+ params.insert(params.begin(), c->name);
+
+ while (cmd->max_params > 0 && params.size() > cmd->max_params)
+ {
+ params[cmd->max_params - 1] += " " + params[cmd->max_params];
+ params.erase(params.begin() + cmd->max_params);
+ }
+
+ // Command requires registered users only
+ if (!cmd->AllowUnregistered() && !u->Account())
+ return;
+
+ if (params.size() < cmd->min_params)
+ return;
+
+ CommandSource source(u->nick, u, u->Account(), u, c->ci->bi);
+ source.c = c;
+ source.command = it->first;
+ source.permission = info.permission;
+
+ EventReturn MOD_RESULT;
+ if (c->ci->AccessFor(u).HasPriv("FANTASIA"))
+ {
+ FOREACH_RESULT(OnBotFantasy, MOD_RESULT, (source, cmd, c->ci, params));
+ }
+ else
+ {
+ FOREACH_RESULT(OnBotNoFantasyAccess, MOD_RESULT, (source, cmd, c->ci, params));
+ }
+
+ if (MOD_RESULT == EVENT_STOP || !c->ci->AccessFor(u).HasPriv("FANTASIA"))
+ return;
+
+ if (MOD_RESULT != EVENT_ALLOW && !info.permission.empty() && !source.HasCommand(info.permission))
+ return;
+
+ FOREACH_RESULT(OnPreCommand, MOD_RESULT, (source, cmd, params));
+ if (MOD_RESULT == EVENT_STOP)
+ return;
+
+ Reference<NickCore> nc_reference(u->Account());
+ cmd->Execute(source, params);
+ if (!nc_reference)
+ source.nc = NULL;
+ FOREACH_MOD(OnPostCommand, (source, cmd, params));
+ }
+
+ void OnBotInfo(CommandSource &source, BotInfo *bi, ChannelInfo *ci, InfoFormatter &info)
+ {
+ if (fantasy.HasExt(ci))
+ info.AddOption(_("Fantasy"));
+ }
+};
+
+MODULE_INIT(Fantasy)
+