]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/protocolinterface.cpp
Introduce ModeProcessFlags, can be passed to ModeParser::Process() to indicate local...
[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         {
67                 params.push_back(c->name);
68                 params.push_back(ConvToStr(c->age));
69         }
70         else
71                 params.push_back("*");
72
73         params.push_back(key);
74         params.push_back(":" + data);
75
76         Utils->DoOneToMany(ServerInstance->Config->GetSID(),"METADATA",params);
77 }
78
79 void SpanningTreeProtocolInterface::SendTopic(Channel* channel, std::string &topic)
80 {
81         parameterlist params;
82
83         params.push_back(channel->name);
84         params.push_back(ConvToStr(channel->age));
85         params.push_back(ConvToStr(ServerInstance->Time()));
86         params.push_back(ServerInstance->Config->ServerName);
87         params.push_back(":" + topic);
88
89         Utils->DoOneToMany(ServerInstance->Config->GetSID(),"FTOPIC", params);
90 }
91
92 void SpanningTreeProtocolInterface::SendMode(User* source, User* u, Channel* c, const parameterlist& modedata, const std::vector<TranslateType>& translate)
93 {
94         parameterlist params;
95
96         if (u)
97         {
98                 if (u->registered != REG_ALL)
99                         return;
100
101                 params.push_back(u->uuid);
102                 params.insert(params.end(), modedata.begin(), modedata.end());
103                 Utils->DoOneToMany(source->uuid, "MODE", params);
104         }
105         else
106         {
107                 std::string output_text;
108                 ServerInstance->Parser->TranslateUIDs(translate, modedata, output_text);
109
110                 params.push_back(c->name);
111                 params.push_back(ConvToStr(c->age));
112                 params.push_back(output_text);
113                 Utils->DoOneToMany(source->uuid, "FMODE", params);
114         }
115 }
116
117 void SpanningTreeProtocolInterface::SendSNONotice(const std::string &snomask, const std::string &text)
118 {
119         parameterlist p;
120         p.push_back(snomask);
121         p.push_back(":" + text);
122         Utils->DoOneToMany(ServerInstance->Config->GetSID(), "SNONOTICE", p);
123 }
124
125 void SpanningTreeProtocolInterface::PushToClient(User* target, const std::string &rawline)
126 {
127         parameterlist p;
128         p.push_back(target->uuid);
129         p.push_back(":" + rawline);
130         Utils->DoOneToOne(ServerInstance->Config->GetSID(), "PUSH", p, target->server);
131 }
132
133 void SpanningTreeProtocolInterface::SendChannelPrivmsg(Channel* target, char status, const std::string &text)
134 {
135         CUList exempt_list;
136         Utils->SendChannelMessage(ServerInstance->Config->GetSID(), target, text, status, exempt_list, "PRIVMSG");
137 }
138
139 void SpanningTreeProtocolInterface::SendChannelNotice(Channel* target, char status, const std::string &text)
140 {
141         CUList exempt_list;
142         Utils->SendChannelMessage(ServerInstance->Config->GetSID(), target, text, status, exempt_list, "NOTICE");
143 }
144
145 void SpanningTreeProtocolInterface::SendUserPrivmsg(User* target, const std::string &text)
146 {
147         parameterlist p;
148         p.push_back(target->uuid);
149         p.push_back(":" + text);
150         Utils->DoOneToOne(ServerInstance->Config->GetSID(), "PRIVMSG", p, target->server);
151 }
152
153 void SpanningTreeProtocolInterface::SendUserNotice(User* target, const std::string &text)
154 {
155         parameterlist p;
156         p.push_back(target->uuid);
157         p.push_back(":" + text);
158         Utils->DoOneToOne(ServerInstance->Config->GetSID(), "NOTICE", p, target->server);
159 }