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/>.
28 /* $ModDesc: Provides channel mode +J (delay rejoin after kick) */
30 typedef std::map<User*, time_t> delaylist;
32 /** Handles channel mode +J
34 class KickRejoin : public ParamChannelModeHandler
37 SimpleExtItem<delaylist> ext;
38 KickRejoin(Module* Creator) : ParamChannelModeHandler(Creator, "kicknorejoin", 'J'), ext("norejoinusers", Creator) { }
40 bool ParamValidate(std::string& parameter)
42 int v = atoi(parameter.c_str());
45 parameter = ConvToStr(v);
49 ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding)
51 ModeAction rv = ParamChannelModeHandler::OnModeChange(source, dest, channel, parameter, adding);
52 if (rv == MODEACTION_ALLOW && !adding)
58 class ModuleKickNoRejoin : public Module
71 ServerInstance->Modules->AddService(kr);
72 ServerInstance->Modules->AddService(kr.ext);
73 Implementation eventlist[] = { I_OnUserPreJoin, I_OnUserKick };
74 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
77 ModResult OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs, const std::string &keygiven)
81 delaylist* dl = kr.ext.get(chan);
84 std::vector<User*> itemstoremove;
86 for (delaylist::iterator iter = dl->begin(); iter != dl->end(); iter++)
88 if (iter->second > ServerInstance->Time())
90 if (iter->first == user)
92 std::string modeparam = chan->GetModeParameter(&kr);
93 user->WriteNumeric(ERR_DELAYREJOIN, "%s %s :You must wait %s seconds after being kicked to rejoin (+J)",
94 user->nick.c_str(), chan->name.c_str(), modeparam.c_str());
100 // Expired record, remove.
101 itemstoremove.push_back(iter->first);
105 for (unsigned int i = 0; i < itemstoremove.size(); i++)
106 dl->erase(itemstoremove[i]);
112 return MOD_RES_PASSTHRU;
115 void OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& excepts)
117 if (memb->chan->IsModeSet(&kr) && (source != memb->user))
119 delaylist* dl = kr.ext.get(memb->chan);
123 kr.ext.set(memb->chan, dl);
125 (*dl)[memb->user] = ServerInstance->Time() + ConvToInt(memb->chan->GetModeParameter(&kr));
129 ~ModuleKickNoRejoin()
135 return Version("Channel mode to delay rejoin after kick", VF_VENDOR);
140 MODULE_INIT(ModuleKickNoRejoin)