]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modes/cmode_b.cpp
Fix for bug #435 and fix return codes (these cannot be localonly for add/remove as...
[user/henk/code/inspircd.git] / src / modes / cmode_b.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 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(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
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);
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(chanrec* 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(userrec* user)
71 {
72 }
73
74 void ModeChannelBan::DisplayList(userrec* user, chanrec* 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 %d",user->nick, channel->name, i->data, i->set_by, 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(userrec* user, chanrec* channel)
86 {
87         user->WriteServ("368 %s %s :End of channel ban list",user->nick, channel->name);
88 }
89
90 std::string& ModeChannelBan::AddBan(userrec *user,std::string &dest,chanrec *chan,int status)
91 {
92         if ((!user) || (!chan))
93         {
94                 ServerInstance->Log(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 %d)",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         if (*user->nick)
134         {
135                 strlcpy(b.set_by,user->nick,NICKMAX-1);
136         }
137         else
138         {
139                 strlcpy(b.set_by,ServerInstance->Config->ServerName,NICKMAX-1);
140         }
141         chan->bans.push_back(b);
142         return dest;
143 }
144
145 ModePair ModeChannelBan::ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter)
146 {
147         for (BanList::iterator i = channel->bans.begin(); i != channel->bans.end(); i++)
148         {
149                 if (!strcasecmp(i->data,parameter.c_str()))
150                 {
151                         return std::make_pair(true, i->data);
152                 }
153         }
154         return std::make_pair(false, parameter);
155 }
156
157 std::string& ModeChannelBan::DelBan(userrec *user,std::string& dest,chanrec *chan,int status)
158 {
159         if ((!user) || (!chan))
160         {
161                 ServerInstance->Log(DEFAULT,"*** BUG *** TakeBan was given an invalid parameter");
162                 dest = "";
163                 return dest;
164         }
165
166         /* 'Clean' the mask, e.g. nick -> nick!*@* */
167         ModeParser::CleanMask(dest);
168
169         for (BanList::iterator i = chan->bans.begin(); i != chan->bans.end(); i++)
170         {
171                 if (!strcasecmp(i->data,dest.c_str()))
172                 {
173                         int MOD_RESULT = 0;
174                         FOREACH_RESULT(I_OnDelBan,OnDelBan(user,chan,dest));
175                         if (MOD_RESULT)
176                         {
177                                 dest = "";
178                                 return dest;
179                         }
180                         chan->bans.erase(i);
181                         return dest;
182                 }
183         }
184         dest = "";
185         return dest;
186 }
187