2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5 * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
6 * Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7 * Copyright (C) 2006-2007 Craig Edwards <craigedwards@brainbox.cc>
8 * Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
10 * This file is part of InspIRCd. InspIRCd is free software: you can
11 * redistribute it and/or modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation, version 2.
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
29 ERR_UNAVAILRESOURCE = 437
32 // The number of seconds the channel will be closed for.
33 static unsigned int duration;
35 /** Holds settings and state associated with channel mode +j
37 class joinfloodsettings
46 joinfloodsettings(unsigned int b, unsigned int c)
47 : secs(b), joins(c), unlocktime(0), counter(0)
49 reset = ServerInstance->Time() + secs;
54 if (ServerInstance->Time() > reset)
57 reset = ServerInstance->Time() + secs;
65 return (counter >= this->joins);
75 if (ServerInstance->Time() > unlocktime)
78 return (unlocktime != 0);
83 unlocktime = ServerInstance->Time() + duration;
86 bool operator==(const joinfloodsettings& other) const
88 return ((this->secs == other.secs) && (this->joins == other.joins));
92 /** Handles channel mode +j
94 class JoinFlood : public ParamMode<JoinFlood, SimpleExtItem<joinfloodsettings> >
97 JoinFlood(Module* Creator)
98 : ParamMode<JoinFlood, SimpleExtItem<joinfloodsettings> >(Creator, "joinflood", 'j')
102 ModeAction OnSet(User* source, Channel* channel, std::string& parameter) CXX11_OVERRIDE
104 std::string::size_type colon = parameter.find(':');
105 if ((colon == std::string::npos) || (parameter.find('-') != std::string::npos))
107 source->WriteNumeric(Numerics::InvalidModeParameter(channel, this, parameter));
108 return MODEACTION_DENY;
111 /* Set up the flood parameters for this channel */
112 unsigned int njoins = ConvToInt(parameter.substr(0, colon));
113 unsigned int nsecs = ConvToInt(parameter.substr(colon+1));
114 if ((njoins<1) || (nsecs<1))
116 source->WriteNumeric(Numerics::InvalidModeParameter(channel, this, parameter));
117 return MODEACTION_DENY;
120 ext.set(channel, new joinfloodsettings(nsecs, njoins));
121 return MODEACTION_ALLOW;
124 void SerializeParam(Channel* chan, const joinfloodsettings* jfs, std::string& out)
126 out.append(ConvToStr(jfs->joins)).push_back(':');
127 out.append(ConvToStr(jfs->secs));
131 class ModuleJoinFlood : public Module
141 void ReadConfig(ConfigStatus&) CXX11_OVERRIDE
143 ConfigTag* tag = ServerInstance->Config->ConfValue("joinflood");
144 duration = tag->getDuration("duration", 60, 10, 600);
147 ModResult OnUserPreJoin(LocalUser* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven) CXX11_OVERRIDE
151 joinfloodsettings *f = jf.ext.get(chan);
152 if (f && f->islocked())
154 user->WriteNumeric(ERR_UNAVAILRESOURCE, chan->name, "This channel is temporarily unavailable (+j). Please try again later.");
158 return MOD_RES_PASSTHRU;
161 void OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts) CXX11_OVERRIDE
163 /* We arent interested in JOIN events caused by a network burst */
167 joinfloodsettings *f = jf.ext.get(memb->chan);
169 /* But all others are OK */
170 if ((f) && (!f->islocked()))
177 memb->chan->WriteNotice(InspIRCd::Format("This channel has been closed to new users for %u seconds because there have been more than %d joins in %d seconds.", duration, f->joins, f->secs));
182 Version GetVersion() CXX11_OVERRIDE
184 return Version("Provides channel mode +j (join flood protection)", VF_VENDOR);
188 MODULE_INIT(ModuleJoinFlood)