]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modes/cmode_b.cpp
1efb5d399e31d7d79930bc09e5de14ad130dc260
[user/henk/code/inspircd.git] / src / modes / cmode_b.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include <string>
16 #include <vector>
17 #include "inspircd_config.h"
18 #include "configreader.h"
19 #include "hash_map.h"
20 #include "mode.h"
21 #include "channels.h"
22 #include "users.h"
23 #include "modules.h"
24 #include "inspstring.h"
25 #include "hashcomp.h"
26 #include "modes/cmode_b.h"
27
28 ModeChannelBan::ModeChannelBan(InspIRCd* Instance) : ModeHandler(Instance, 'b', 1, 1, true, MODETYPE_CHANNEL, false)
29 {
30 }
31
32 ModeAction ModeChannelBan::OnModeChange(User* source, User*, Channel* channel, std::string &parameter, bool adding, bool servermode)
33 {
34         int status = channel->GetStatus(source);
35         /* Call the correct method depending on wether we're adding or removing the mode */
36         if (adding)
37         {
38                 parameter = this->AddBan(source, parameter, channel, status, servermode);
39         }
40         else
41         {
42                 parameter = this->DelBan(source, parameter, channel, status);
43         }
44         /* If the method above 'ate' the parameter by reducing it to an empty string, then
45          * it won't matter wether we return ALLOW or DENY here, as an empty string overrides
46          * the return value and is always MODEACTION_DENY if the mode is supposed to have
47          * a parameter.
48          */
49         return MODEACTION_ALLOW;
50 }
51
52 void ModeChannelBan::RemoveMode(Channel* channel)
53 {
54         BanList copy;
55         char moderemove[MAXBUF];
56
57         for (BanList::iterator i = channel->bans.begin(); i != channel->bans.end(); i++)
58         {
59                 copy.push_back(*i);
60         }
61
62         for (BanList::iterator i = copy.begin(); i != copy.end(); i++)
63         {
64                 sprintf(moderemove,"-%c",this->GetModeChar());
65                 const char* parameters[] = { channel->name, moderemove, i->data };
66                 ServerInstance->SendMode(parameters, 3, ServerInstance->FakeClient);
67         }
68 }
69
70 void ModeChannelBan::RemoveMode(User*)
71 {
72 }
73
74 void ModeChannelBan::DisplayList(User* user, Channel* channel)
75 {
76         /* Display the channel banlist */
77         for (BanList::reverse_iterator i = channel->bans.rbegin(); i != channel->bans.rend(); ++i)
78         {
79                 user->WriteServ("367 %s %s %s %s %lu",user->nick, channel->name, i->data, i->set_by, (unsigned long)i->set_time);
80         }
81         user->WriteServ("368 %s %s :End of channel ban list",user->nick, channel->name);
82         return;
83 }
84
85 void ModeChannelBan::DisplayEmptyList(User* user, Channel* channel)
86 {
87         user->WriteServ("368 %s %s :End of channel ban list",user->nick, channel->name);
88 }
89
90 std::string& ModeChannelBan::AddBan(User *user, std::string &dest, Channel *chan, int, bool servermode)
91 {
92         if ((!user) || (!chan))
93         {
94                 ServerInstance->Logs->Log("MODE",DEFAULT,"*** BUG *** AddBan was given an invalid parameter");
95                 dest = "";
96                 return dest;
97         }
98
99         /* Attempt to tidy the mask */
100         ModeParser::CleanMask(dest);
101         /* If the mask was invalid, we exit */
102         if (dest == "")
103                 return dest;
104
105         long maxbans = chan->GetMaxBans();
106         if ((unsigned)chan->bans.size() > (unsigned)maxbans)
107         {
108                 user->WriteServ("478 %s %s :Channel ban list for %s is full (maximum entries for this channel is %ld)",user->nick, chan->name,chan->name,maxbans);
109                 dest = "";
110                 return dest;
111         }
112
113         int MOD_RESULT = 0;
114         FOREACH_RESULT(I_OnAddBan,OnAddBan(user,chan,dest));
115         if (MOD_RESULT)
116         {
117                 dest = "";
118                 return dest;
119         }
120
121         for (BanList::iterator i = chan->bans.begin(); i != chan->bans.end(); i++)
122         {
123                 if (!strcasecmp(i->data, dest.c_str()))
124                 {
125                         /* dont allow a user to set the same ban twice */
126                         dest = "";
127                         return dest;
128                 }
129         }
130
131         b.set_time = ServerInstance->Time();
132         strlcpy(b.data, dest.c_str(), MAXBUF);
133         strlcpy(b.set_by, servermode ? ServerInstance->Config->ServerName : user->nick, 63);
134         chan->bans.push_back(b);
135         return dest;
136 }
137
138 ModePair ModeChannelBan::ModeSet(User*, User*, Channel* channel, const std::string &parameter)
139 {
140         for (BanList::iterator i = channel->bans.begin(); i != channel->bans.end(); i++)
141         {
142                 if (!strcasecmp(i->data,parameter.c_str()))
143                 {
144                         return std::make_pair(true, i->data);
145                 }
146         }
147         return std::make_pair(false, parameter);
148 }
149
150 std::string& ModeChannelBan::DelBan(User *user, std::string& dest, Channel *chan, int)
151 {
152         if ((!user) || (!chan))
153         {
154                 ServerInstance->Logs->Log("MODE",DEFAULT,"*** BUG *** TakeBan was given an invalid parameter");
155                 dest = "";
156                 return dest;
157         }
158
159         /* 'Clean' the mask, e.g. nick -> nick!*@* */
160         ModeParser::CleanMask(dest);
161
162         for (BanList::iterator i = chan->bans.begin(); i != chan->bans.end(); i++)
163         {
164                 if (!strcasecmp(i->data,dest.c_str()))
165                 {
166                         int MOD_RESULT = 0;
167                         FOREACH_RESULT(I_OnDelBan,OnDelBan(user,chan,dest));
168                         if (MOD_RESULT)
169                         {
170                                 dest = "";
171                                 return dest;
172                         }
173                         chan->bans.erase(i);
174                         return dest;
175                 }
176         }
177         dest = "";
178         return dest;
179 }
180