summaryrefslogtreecommitdiff
path: root/modules/memoserv/ignore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/memoserv/ignore.cpp')
-rw-r--r--modules/memoserv/ignore.cpp157
1 files changed, 157 insertions, 0 deletions
diff --git a/modules/memoserv/ignore.cpp b/modules/memoserv/ignore.cpp
new file mode 100644
index 000000000..520aeaf7f
--- /dev/null
+++ b/modules/memoserv/ignore.cpp
@@ -0,0 +1,157 @@
+/*
+ * Anope IRC Services
+ *
+ * Copyright (C) 2010-2016 Anope Team <team@anope.org>
+ *
+ * This file is part of Anope. Anope 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 see <http://www.gnu.org/licenses/>.
+ */
+
+#include "module.h"
+
+class CommandMSIgnore : public Command
+{
+ public:
+ CommandMSIgnore(Module *creator) : Command(creator, "memoserv/ignore", 1, 3)
+ {
+ this->SetDesc(_("Manage the memo ignore list"));
+ this->SetSyntax(_("[\037channel\037] ADD \037entry\037"));
+ this->SetSyntax(_("[\037channel\037] DEL \037entry\037"));
+ this->SetSyntax(_("[\037channel\037] LIST"));
+ }
+
+ void Execute(CommandSource &source, const std::vector<Anope::string> &params) override
+ {
+ if (Anope::ReadOnly)
+ {
+ source.Reply(_("Services are in read-only mode."));
+ return;
+ }
+
+ if (!MemoServ::service)
+ return;
+
+ Anope::string channel = params[0];
+ Anope::string command = (params.size() > 1 ? params[1] : "");
+ Anope::string param = (params.size() > 2 ? params[2] : "");
+
+ if (channel[0] != '#')
+ {
+ param = command;
+ command = channel;
+ channel = source.GetNick();
+ }
+
+ bool ischan, isregistered;
+ MemoServ::MemoInfo *mi = MemoServ::service->GetMemoInfo(channel, ischan, isregistered, true);
+ ChanServ::Channel *ci = ChanServ::Find(channel);
+ if (!isregistered)
+ {
+ if (ischan)
+ source.Reply(_("Channel \002{0}\002 isn't registered."), channel);
+ else
+ source.Reply(_("\002{0}\002 isn't registered."), channel);
+ return;
+ }
+
+ if (ischan && !source.AccessFor(ci).HasPriv("MEMO"))
+ {
+ source.Reply(_("Access denied. You do not have privilege \002{0}\002 on \002{1}\002."), "MEMO", ci->GetName());
+ return;
+ }
+
+ auto ignores = mi->GetIgnores();
+
+ if (command.equals_ci("ADD") && !param.empty())
+ {
+ if (ignores.size() >= Config->GetModule(this->GetOwner())->Get<unsigned>("max", "32"))
+ {
+ source.Reply(_("Sorry, the memo ignore list for \002{0}\002 is full."), channel);
+ return;
+ }
+
+ for (MemoServ::Ignore *ign : ignores)
+ if (ign->GetMask().equals_ci(param))
+ {
+ source.Reply(_("\002{0}\002 is already on your memo ignore list."), param);
+ return;
+ }
+
+ MemoServ::Ignore *ign = Serialize::New<MemoServ::Ignore *>();
+ ign->SetMemoInfo(mi);
+ ign->SetMask(param);
+
+ source.Reply(_("\002{0}\002 has been added to your memo ignore list."), param);
+ }
+ else if (command.equals_ci("DEL") && !param.empty())
+ {
+ for (MemoServ::Ignore *ign : ignores)
+ if (ign->GetMask().equals_ci(param))
+ {
+ delete ign;
+ source.Reply(_("\002{0}\002 has been removed from your memo ignore list."), param);
+ return;
+ }
+
+ source.Reply(_("\002{0}\002 is not on your memo ignore list."), param);
+ }
+ else if (command.equals_ci("LIST"))
+ {
+ if (ignores.empty())
+ {
+ source.Reply(_("Your memo ignore list is empty."));
+ return;
+ }
+ ListFormatter list(source.GetAccount());
+ list.AddColumn(_("Mask"));
+ for (MemoServ::Ignore *ign : ignores)
+ {
+ ListFormatter::ListEntry entry;
+ entry["Mask"] = ign->GetMask();
+ list.AddEntry(entry);
+ }
+
+ source.Reply(_("Memo ignore list:"));
+
+ std::vector<Anope::string> replies;
+ list.Process(replies);
+
+ for (unsigned i = 0; i < replies.size(); ++i)
+ source.Reply(replies[i]);
+ }
+ else
+ {
+ this->OnSyntaxError(source, "");
+ }
+ }
+
+ bool OnHelp(CommandSource &source, const Anope::string &subcommand) override
+ {
+ source.Reply(_("Allows you to ignore users from memoing you or a channel."
+ " If someone on the memo ignore list tries to memo you or a channel, they will not be told that you have them ignored."));
+ return true;
+ }
+};
+
+class MSIgnore : public Module
+{
+ CommandMSIgnore commandmsignore;
+
+ public:
+ MSIgnore(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR)
+ , commandmsignore(this)
+ {
+ }
+};
+
+MODULE_INIT(MSIgnore)