]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modes/cmode_b.cpp
Add 'require 5.8.0' to the very top of every module to make the failure message when...
[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         userrec* n = new userrec(ServerInstance);
57         n->SetFd(FD_MAGIC_NUMBER);
58
59         for (BanList::iterator i = channel->bans.begin(); i != channel->bans.end(); i++)
60         {
61                 copy.push_back(*i);
62         }
63         for (BanList::iterator i = copy.begin(); i != copy.end(); i++)
64         {
65                 sprintf(moderemove,"-%c",this->GetModeChar());
66                 const char* parameters[] = { channel->name, moderemove, i->data };
67                 ServerInstance->SendMode(parameters, 3, n);
68         }
69
70         delete n;
71 }
72
73 void ModeChannelBan::RemoveMode(userrec* user)
74 {
75 }
76
77 void ModeChannelBan::DisplayList(userrec* user, chanrec* channel)
78 {
79         /* Display the channel banlist */
80         for (BanList::reverse_iterator i = channel->bans.rbegin(); i != channel->bans.rend(); ++i)
81         {
82                 user->WriteServ("367 %s %s %s %s %d",user->nick, channel->name, i->data, i->set_by, i->set_time);
83         }
84         user->WriteServ("368 %s %s :End of channel ban list",user->nick, channel->name);
85         return;
86 }
87
88 std::string& ModeChannelBan::AddBan(userrec *user,std::string &dest,chanrec *chan,int status)
89 {
90         if ((!user) || (!chan))
91         {
92                 ServerInstance->Log(DEFAULT,"*** BUG *** AddBan was given an invalid parameter");
93                 dest = "";
94                 return dest;
95         }
96
97         /* Attempt to tidy the mask */
98         ModeParser::CleanMask(dest);
99         /* If the mask was invalid, we exit */
100         if (dest == "")
101                 return dest;
102
103         long maxbans = chan->GetMaxBans();
104         if ((unsigned)chan->bans.size() > (unsigned)maxbans)
105         {
106                 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);
107                 dest = "";
108                 return dest;
109         }
110
111         int MOD_RESULT = 0;
112         FOREACH_RESULT(I_OnAddBan,OnAddBan(user,chan,dest));
113         if (MOD_RESULT)
114         {
115                 dest = "";
116                 return dest;
117         }
118
119         for (BanList::iterator i = chan->bans.begin(); i != chan->bans.end(); i++)
120         {
121                 if (!strcasecmp(i->data,dest.c_str()))
122                 {
123                         /* dont allow a user to set the same ban twice */
124                         dest = "";
125                         return dest;
126                 }
127         }
128
129         b.set_time = ServerInstance->Time();
130         strlcpy(b.data,dest.c_str(),MAXBUF);
131         if (*user->nick)
132         {
133                 strlcpy(b.set_by,user->nick,NICKMAX-1);
134         }
135         else
136         {
137                 strlcpy(b.set_by,ServerInstance->Config->ServerName,NICKMAX-1);
138         }
139         chan->bans.push_back(b);
140         return dest;
141 }
142
143 ModePair ModeChannelBan::ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter)
144 {
145         for (BanList::iterator i = channel->bans.begin(); i != channel->bans.end(); i++)
146         {
147                 if (!strcasecmp(i->data,parameter.c_str()))
148                 {
149                         return std::make_pair(true, i->data);
150                 }
151         }
152         return std::make_pair(false, parameter);
153 }
154
155 std::string& ModeChannelBan::DelBan(userrec *user,std::string& dest,chanrec *chan,int status)
156 {
157         if ((!user) || (!chan))
158         {
159                 ServerInstance->Log(DEFAULT,"*** BUG *** TakeBan was given an invalid parameter");
160                 dest = "";
161                 return dest;
162         }
163
164         /* 'Clean' the mask, e.g. nick -> nick!*@* */
165         ModeParser::CleanMask(dest);
166
167         for (BanList::iterator i = chan->bans.begin(); i != chan->bans.end(); i++)
168         {
169                 if (!strcasecmp(i->data,dest.c_str()))
170                 {
171                         int MOD_RESULT = 0;
172                         FOREACH_RESULT(I_OnDelBan,OnDelBan(user,chan,dest));
173                         if (MOD_RESULT)
174                         {
175                                 dest = "";
176                                 return dest;
177                         }
178                         chan->bans.erase(i);
179                         return dest;
180                 }
181         }
182         dest = "";
183         return dest;
184 }
185