2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5 * Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
6 * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
7 * Copyright (C) 2006-2007 Robin Burchell <robin+git@viroteck.net>
8 * Copyright (C) 2006 John Brooks <john.brooks@dereferenced.net>
9 * Copyright (C) 2006 Craig Edwards <craigedwards@brainbox.cc>
10 * Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
12 * This file is part of InspIRCd. InspIRCd is free software: you can
13 * redistribute it and/or modify it under the terms of the GNU General Public
14 * License as published by the Free Software Foundation, version 2.
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
27 #include "modules/invite.h"
32 ERR_UNAVAILRESOURCE = 437
43 KickedUser(User* user, unsigned int Delay)
45 , expire(ServerInstance->Time() + Delay)
50 typedef std::vector<KickedUser> KickedList;
52 mutable KickedList kicked;
55 const unsigned int delay;
57 KickRejoinData(unsigned int Delay) : delay(Delay) { }
59 bool canjoin(LocalUser* user) const
61 for (KickedList::iterator i = kicked.begin(); i != kicked.end(); )
64 if (rec.expire > ServerInstance->Time())
66 if (rec.uuid == user->uuid)
72 // Expired record, remove.
73 stdalgo::vector::swaperase(kicked, i);
83 // One user can be in the list multiple times if the user gets kicked, force joins
84 // (skipping OnUserPreJoin) and gets kicked again, but that's okay because canjoin()
85 // works correctly in this case as well
86 kicked.push_back(KickedUser(user, delay));
90 /** Handles channel mode +J
92 class KickRejoin : public ParamMode<KickRejoin, SimpleExtItem<KickRejoinData> >
94 const unsigned int max;
96 KickRejoin(Module* Creator)
97 : ParamMode<KickRejoin, SimpleExtItem<KickRejoinData> >(Creator, "kicknorejoin", 'J')
102 ModeAction OnSet(User* source, Channel* channel, std::string& parameter) CXX11_OVERRIDE
104 int v = ConvToInt(parameter);
107 source->WriteNumeric(Numerics::InvalidModeParameter(channel, this, parameter));
108 return MODEACTION_DENY;
111 if ((IS_LOCAL(source) && ((unsigned int)v > max)))
114 ext.set(channel, new KickRejoinData(v));
115 return MODEACTION_ALLOW;
118 void SerializeParam(Channel* chan, const KickRejoinData* krd, std::string& out)
120 out.append(ConvToStr(krd->delay));
123 std::string GetModuleSettings() const
125 return ConvToStr(max);
129 class ModuleKickNoRejoin : public Module
141 ModResult OnUserPreJoin(LocalUser* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven) CXX11_OVERRIDE
145 const KickRejoinData* data = kr.ext.get(chan);
146 if ((data) && !invapi->IsInvited(user, chan) && (!data->canjoin(user)))
148 user->WriteNumeric(ERR_UNAVAILRESOURCE, chan, InspIRCd::Format("You must wait %u seconds after being kicked to rejoin (+J)", data->delay));
152 return MOD_RES_PASSTHRU;
155 void OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& excepts) CXX11_OVERRIDE
157 if ((!IS_LOCAL(memb->user)) || (source == memb->user))
160 KickRejoinData* data = kr.ext.get(memb->chan);
163 data->add(memb->user);
167 Version GetVersion() CXX11_OVERRIDE
169 return Version("Channel mode to delay rejoin after kick", VF_VENDOR | VF_COMMON, kr.GetModuleSettings());
173 MODULE_INIT(ModuleKickNoRejoin)