]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/protocolinterface.cpp
ProtocolInterface::SendEncapsulatedData() changes
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / protocolinterface.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22 #include "utils.h"
23 #include "treeserver.h"
24 #include "protocolinterface.h"
25 #include "commands.h"
26
27 /*
28  * For documentation on this class, see include/protocol.h.
29  */
30
31 void SpanningTreeProtocolInterface::GetServerList(ServerList& sl)
32 {
33         for (server_hash::iterator i = Utils->serverlist.begin(); i != Utils->serverlist.end(); i++)
34         {
35                 ServerInfo ps;
36                 ps.servername = i->second->GetName();
37                 TreeServer* s = i->second->GetParent();
38                 ps.parentname = s ? s->GetName() : "";
39                 ps.usercount = i->second->UserCount;
40                 ps.opercount = i->second->OperCount;
41                 ps.gecos = i->second->GetDesc();
42                 ps.latencyms = i->second->rtt;
43                 sl.push_back(ps);
44         }
45 }
46
47 bool SpanningTreeProtocolInterface::SendEncapsulatedData(const std::string& targetmask, const std::string& cmd, const parameterlist& params, User* source)
48 {
49         if (!source)
50                 source = ServerInstance->FakeClient;
51
52         CmdBuilder encap(source, "ENCAP");
53
54         // Are there any wildcards in the target string?
55         if (targetmask.find_first_of("*?") != std::string::npos)
56         {
57                 // Yes, send the target string as-is; servers will decide whether or not it matches them
58                 encap.push(targetmask).push(cmd).insert(params).Broadcast();
59         }
60         else
61         {
62                 // No wildcards which means the target string has to be the name of a known server
63                 TreeServer* server = Utils->FindServer(targetmask);
64                 if (!server)
65                         return false;
66
67                 // Use the SID of the target in the message instead of the server name
68                 encap.push(server->GetID()).push(cmd).insert(params).Unicast(server->ServerUser);
69         }
70
71         return true;
72 }
73
74 void SpanningTreeProtocolInterface::SendMetaData(User* u, const std::string& key, const std::string& data)
75 {
76         CommandMetadata::Builder(u, key, data).Broadcast();
77 }
78
79 void SpanningTreeProtocolInterface::SendMetaData(Channel* c, const std::string& key, const std::string& data)
80 {
81         CommandMetadata::Builder(c, key, data).Broadcast();
82 }
83
84 void SpanningTreeProtocolInterface::SendMetaData(const std::string& key, const std::string& data)
85 {
86         CommandMetadata::Builder(key, data).Broadcast();
87 }
88
89 void SpanningTreeProtocolInterface::Server::SendMetaData(const std::string& key, const std::string& data)
90 {
91         sock->WriteLine(CommandMetadata::Builder(key, data));
92 }
93
94 void SpanningTreeProtocolInterface::SendTopic(Channel* channel, std::string &topic)
95 {
96         CommandFTopic::Builder(ServerInstance->FakeClient, channel).Broadcast();
97 }
98
99 void SpanningTreeProtocolInterface::SendMode(User* source, User* u, Channel* c, const std::vector<std::string>& modedata, const std::vector<TranslateType>& translate)
100 {
101         if (u)
102         {
103                 if (u->registered != REG_ALL)
104                         return;
105
106                 CmdBuilder params(source, "MODE");
107                 params.push_back(u->uuid);
108                 params.insert(modedata);
109                 params.Broadcast();
110         }
111         else
112         {
113                 CmdBuilder params(source, "FMODE");
114                 params.push_back(c->name);
115                 params.push_back(ConvToStr(c->age));
116                 params.push_back(CommandParser::TranslateUIDs(translate, modedata));
117                 params.Broadcast();
118         }
119 }
120
121 void SpanningTreeProtocolInterface::SendSNONotice(char snomask, const std::string &text)
122 {
123         CmdBuilder("SNONOTICE").push(snomask).push_last(text).Broadcast();
124 }
125
126 void SpanningTreeProtocolInterface::PushToClient(User* target, const std::string &rawline)
127 {
128         CmdBuilder("PUSH").push(target->uuid).push_last(rawline).Unicast(target);
129 }
130
131 void SpanningTreeProtocolInterface::SendMessage(Channel* target, char status, const std::string& text, MessageType msgtype)
132 {
133         const char* cmd = (msgtype == MSG_PRIVMSG ? "PRIVMSG" : "NOTICE");
134         CUList exempt_list;
135         Utils->SendChannelMessage(ServerInstance->Config->GetSID(), target, text, status, exempt_list, cmd);
136 }
137
138 void SpanningTreeProtocolInterface::SendMessage(User* target, const std::string& text, MessageType msgtype)
139 {
140         CmdBuilder p(msgtype == MSG_PRIVMSG ? "PRIVMSG" : "NOTICE");
141         p.push_back(target->uuid);
142         p.push_last(text);
143         p.Unicast(target);
144 }