]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/protocolinterface.cpp
m_spanningtree Introduce IJOIN and RESYNC
[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
26 /*
27  * For documentation on this class, see include/protocol.h.
28  */
29
30 void SpanningTreeProtocolInterface::GetServerList(ProtoServerList &sl)
31 {
32         sl.clear();
33         for (server_hash::iterator i = Utils->serverlist.begin(); i != Utils->serverlist.end(); i++)
34         {
35                 ProtoServer 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 parameterlist &encap)
48 {
49         if (encap[0].find_first_of("*?") != std::string::npos)
50         {
51                 Utils->DoOneToMany(ServerInstance->Config->GetSID(), "ENCAP", encap);
52                 return true;
53         }
54         return Utils->DoOneToOne(ServerInstance->Config->GetSID(), "ENCAP", encap, encap[0]);
55 }
56
57 void SpanningTreeProtocolInterface::SendMetaData(Extensible* target, const std::string &key, const std::string &data)
58 {
59         parameterlist params;
60
61         User* u = dynamic_cast<User*>(target);
62         Channel* c = dynamic_cast<Channel*>(target);
63         if (u)
64                 params.push_back(u->uuid);
65         else if (c)
66                 params.push_back(c->name);
67         else
68                 params.push_back("*");
69
70         params.push_back(key);
71         params.push_back(":" + data);
72
73         Utils->DoOneToMany(ServerInstance->Config->GetSID(),"METADATA",params);
74 }
75
76 void SpanningTreeProtocolInterface::SendTopic(Channel* channel, std::string &topic)
77 {
78         parameterlist params;
79
80         params.push_back(channel->name);
81         params.push_back(ConvToStr(ServerInstance->Time()));
82         params.push_back(ServerInstance->Config->ServerName);
83         params.push_back(":" + topic);
84
85         Utils->DoOneToMany(ServerInstance->Config->GetSID(),"FTOPIC", params);
86 }
87
88 void SpanningTreeProtocolInterface::SendMode(const std::string &target, const parameterlist &modedata, const std::vector<TranslateType> &translate)
89 {
90         if (modedata.empty())
91                 return;
92
93         std::string outdata;
94         ServerInstance->Parser->TranslateUIDs(translate, modedata, outdata);
95
96         std::string uidtarget;
97         ServerInstance->Parser->TranslateUIDs(TR_NICK, target, uidtarget);
98
99         parameterlist outlist;
100         outlist.push_back(uidtarget);
101         outlist.push_back(outdata);
102
103         User* a = ServerInstance->FindNick(uidtarget);
104         if (a)
105         {
106                 Utils->DoOneToMany(ServerInstance->Config->GetSID(),"MODE",outlist);
107                 return;
108         }
109         else
110         {
111                 Channel* c = ServerInstance->FindChan(target);
112                 if (c)
113                 {
114                         outlist.insert(outlist.begin() + 1, ConvToStr(c->age));
115                         Utils->DoOneToMany(ServerInstance->Config->GetSID(),"FMODE",outlist);
116                 }
117         }
118 }
119
120 void SpanningTreeProtocolInterface::SendSNONotice(const std::string &snomask, const std::string &text)
121 {
122         parameterlist p;
123         p.push_back(snomask);
124         p.push_back(":" + text);
125         Utils->DoOneToMany(ServerInstance->Config->GetSID(), "SNONOTICE", p);
126 }
127
128 void SpanningTreeProtocolInterface::PushToClient(User* target, const std::string &rawline)
129 {
130         parameterlist p;
131         p.push_back(target->uuid);
132         p.push_back(":" + rawline);
133         Utils->DoOneToOne(ServerInstance->Config->GetSID(), "PUSH", p, target->server);
134 }
135
136 void SpanningTreeProtocolInterface::SendChannelPrivmsg(Channel* target, char status, const std::string &text)
137 {
138         CUList exempt_list;
139         Utils->SendChannelMessage(ServerInstance->Config->GetSID(), target, text, status, exempt_list, "PRIVMSG");
140 }
141
142 void SpanningTreeProtocolInterface::SendChannelNotice(Channel* target, char status, const std::string &text)
143 {
144         CUList exempt_list;
145         Utils->SendChannelMessage(ServerInstance->Config->GetSID(), target, text, status, exempt_list, "NOTICE");
146 }
147
148 void SpanningTreeProtocolInterface::SendUserPrivmsg(User* target, const std::string &text)
149 {
150         parameterlist p;
151         p.push_back(target->uuid);
152         p.push_back(":" + text);
153         Utils->DoOneToOne(ServerInstance->Config->GetSID(), "PRIVMSG", p, target->server);
154 }
155
156 void SpanningTreeProtocolInterface::SendUserNotice(User* target, const std::string &text)
157 {
158         parameterlist p;
159         p.push_back(target->uuid);
160         p.push_back(":" + text);
161         Utils->DoOneToOne(ServerInstance->Config->GetSID(), "NOTICE", p, target->server);
162 }