summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/privmsg.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-04 13:59:29 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-04 13:59:29 +0000
commitf7a28a7800d934b3bcd630a97bb6471eb1007140 (patch)
tree877915c370df4b359dfa86f36c43aefc1400b923 /src/modules/m_spanningtree/privmsg.cpp
parent3f971b447fae258a92f2cc6645497cce93f1c04e (diff)
Server origin privmsg, UNTESTED - will test in a min
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9306 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/privmsg.cpp')
-rw-r--r--src/modules/m_spanningtree/privmsg.cpp61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree/privmsg.cpp b/src/modules/m_spanningtree/privmsg.cpp
new file mode 100644
index 000000000..b73ba15fb
--- /dev/null
+++ b/src/modules/m_spanningtree/privmsg.cpp
@@ -0,0 +1,61 @@
+/* +------------------------------------+
+ * | Inspire Internet Relay Chat Daemon |
+ * +------------------------------------+
+ *
+ * InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ * the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#include "inspircd.h"
+#include "xline.h"
+
+#include "m_spanningtree/treesocket.h"
+#include "m_spanningtree/treeserver.h"
+#include "m_spanningtree/utils.h"
+
+/* $ModDep: m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h */
+
+
+
+/** remote MOTD. leet, huh? */
+bool TreeSocket::ServerMessage(const std::string &messagetype, const std::string &prefix, std::deque<std::string> &params, const std::string &sourceserv)
+{
+ if (params.size() >= 2)
+ {
+ CUList except_list;
+ char status = '\0';
+ const char* target = params[0].c_str();
+ std::string text = params[1].c_str();
+
+ if ((*target == '@') || (*target == '%') || (*target == '+'))
+ {
+ status = *target;
+ target++;
+ }
+
+ Channel* channel = Instance->FindChan(target);
+
+ if (target)
+ {
+ if (messagetype == "PRIVMSG")
+ {
+ FOREACH_MOD_I(Instance, I_OnUserMessage, OnUserMessage(NULL, channel, TYPE_SERVER, text, status, except_list));
+ }
+ else
+ {
+ FOREACH_MOD_I(Instance, I_OnUserNotice, OnUserNotice(NULL, channel, TYPE_SERVER, text, status, except_list));
+ }
+ channel->WriteChannelWithServ(prefix.c_str(), "%s %s :%s", messagetype.c_str(), channel->name, text.c_str());
+ }
+
+ /* Propogate as channel privmsg */
+ return Utils->DoOneToAllButSenderRaw(":" + prefix + " " + messagetype + " " + channel->name + " :" + text, sourceserv, prefix, assign(messagetype), params);
+ }
+ return true;
+}
+