1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
7 * <brain@chatspike.net>
8 * <Craig@chatspike.net>
10 * Written by Craig Edwards, Craig McLure, and others.
11 * This program is free but copyrighted software; see
12 * the file COPYING for details.
14 * ---------------------------------------------------
24 #include "helperfuncs.h"
27 /* $ModDesc: Provides support for user parking/unparking */
46 typedef std::vector<awaymsg> awaylog;
47 typedef std::vector<parkedinfo> parkinfo;
54 void handle_park(char **parameters, int pcnt, userrec *user)
56 /** Parking. easy stuff.
58 * We duplicate and switch the users file descriptor, so that they can remain forever as a 'ghost'
59 * We then disconnect the real user leaving a controlled ghost in their place :)
61 int othersessions = 0;
63 for (parkinfo::iterator j = pinfo.begin(); j != pinfo.end(); j++)
64 if (j->host == std::string(user->host))
66 if (othersessions >= ConcurrentParks)
68 Srv->SendServ(user->fd,"927 "+std::string(user->nick)+" :You are already parked up to the maximum number of allowed times.");
74 unsigned long key = abs(random() * 12345);
75 snprintf(msg,MAXBUF,"You are now parked. To unpark use /UNPARK %s %lu",user->nick,key);
76 Srv->UserToPseudo(user,std::string(msg));
78 user->Extend("park_awaylog",(char*)aw);
79 user->Extend("park_key",(char*)key);
82 pi.parktime = time(NULL);
87 void handle_parkstats(char **parameters, int pcnt, userrec *user)
90 snprintf(status,MAXBUF,"NOTICE %s :There are a total of %lu parked clients on this server, with a maximum of %lu parked sessions allowed per user.",user->nick,(unsigned long)pinfo.size(),(unsigned long)ConcurrentParks);
91 Srv->SendServ(user->fd,status);
94 void handle_unpark(char **parameters, int pcnt, userrec *user)
96 /** Unparking. complicated stuff.
98 * Unparking is done in several steps:
100 * (1) Check if the user is parked
101 * (2) Check the key of the user against the one provided
102 * (3) Part the user who issued the command from all of their channels so as not to confuse clients
103 * (4) Remove all the users UMODEs
104 * (5) Duplicate and switch file descriptors on the two users, and disconnect the dead one
105 * (6) Force a nickchange onto the user who issued the command forcing them to change to the parked nick
106 * (7) Force join the user into all the channels the parked nick is currently in (send them localized join and namelist)
107 * (8) Send the user the umodes of their new 'persona'
108 * (9) Spool any awaylog messages to the user
110 * And there you have it, easy huh (NOT)...
112 userrec* unpark = Srv->FindNick(std::string(parameters[0]));
115 WriteServ(user->fd,"942 %s %s :Invalid user specified.",user->nick, parameters[0]);
118 awaylog* awy = (awaylog*)unpark->GetExt("park_awaylog");
119 long key = (long)unpark->GetExt("park_key");
122 WriteServ(user->fd,"943 %s %s :This user is not parked.",user->nick, unpark->nick);
125 if (key == atoi(parameters[1]))
127 // first part the user from all chans theyre on, so things dont get messy
128 for (int i = 0; i < user->chans.size(); i++)
130 if (user->chans[i].channel != NULL)
132 if (user->chans[i].channel->name)
134 Srv->PartUserFromChannel(user,user->chans[i].channel->name,"Unparking");
138 // remove all their old modes
139 WriteServ(user->fd,"MODE %s -%s",user->nick,user->modes);
140 // now, map them to the parked user, while nobody can see :p
141 Srv->PseudoToUser(user,unpark,"Unparked to "+std::string(parameters[0]));
142 // set all their new modes
143 WriteServ(unpark->fd,"MODE %s +%s",unpark->nick,unpark->modes);
144 // spool their away log to them
145 WriteServ(unpark->fd,"NOTICE %s :*** You are now unparked. You have successfully taken back the nickname and privilages of %s.",unpark->nick,unpark->nick);
146 for (awaylog::iterator i = awy->begin(); i != awy->end(); i++)
148 char timebuf[MAXBUF];
149 tm *timeinfo = localtime(&i->tm);
150 strlcpy(timebuf,asctime(timeinfo),MAXBUF);
151 timebuf[strlen(timebuf)-1] = '\0';
152 WriteServ(unpark->fd,"NOTICE %s :From %s at %s: \2%s\2",unpark->nick,i->from.c_str(),timebuf,i->text.c_str());
155 unpark->Shrink("park_awaylog");
156 unpark->Shrink("park_key");
157 for (parkinfo::iterator j = pinfo.begin(); j != pinfo.end(); j++)
159 if (j->nick == std::string(unpark->nick))
168 Srv->SendServ(user->fd,"928 "+std::string(user->nick)+" :Incorrect park key.");
173 class ModulePark : public Module
178 virtual void ReadSettings()
180 Conf = new ConfigReader;
181 ParkMaxTime = Conf->ReadInteger("park","maxtime",0,true);
182 ConcurrentParks = Conf->ReadInteger("park","maxperip",0,true);
183 ParkMaxMsgs = Conf->ReadInteger("park","maxmessages",0,true);
187 ModulePark(Server* Me)
192 this->ReadSettings();
193 Srv->AddCommand("PARK",handle_park,0,0,"m_park.so");
194 Srv->AddCommand("UNPARK",handle_unpark,0,2,"m_park.so");
195 Srv->AddCommand("PARKSTATS",handle_parkstats,'o',0,"m_park.so");
198 virtual ~ModulePark()
202 virtual void OnRehash(std::string parameter)
204 this->ReadSettings();
207 virtual void On005Numeric(std::string &output)
209 output = output + std::string(" PARK");
212 virtual void OnUserQuit(userrec* user, std::string reason)
214 std::string nick = user->nick;
215 // track quits in our parked user list
216 for (parkinfo::iterator j = pinfo.begin(); j != pinfo.end(); j++)
227 virtual void OnPrePrivmsg(userrec* user, userrec* dest, std::string text)
229 awaylog* awy = (awaylog*)dest->GetExt("park_awaylog");
232 if (awy->size() <= (unsigned)ParkMaxMsgs)
236 am.from = user->GetFullHost();
239 Srv->SendServ(user->fd,"930 "+std::string(user->nick)+" :User "+std::string(dest->nick)+" is parked. Your message has been stored.");
241 else Srv->SendServ(user->fd,"929 "+std::string(user->nick)+" :User "+std::string(dest->nick)+" is parked, but their message queue is full. Message not saved.");
245 virtual int OnUserPreNick(userrec* user, std::string newnick)
247 // track nickchanges in our parked user list
248 // (this isnt too efficient, i'll tidy it up some time)
249 for (parkinfo::iterator j = pinfo.begin(); j != pinfo.end(); j++)
251 if (j->nick == std::string(user->nick))
260 virtual void OnBackgroundTimer(time_t curtime)
262 // look for parked clients which have timed out (this needs tidying)
265 bool go_again = true;
269 for (parkinfo::iterator j = pinfo.begin(); j != pinfo.end(); j++)
271 if (time(NULL) >= (j->parktime+ParkMaxTime))
273 userrec* thisnick = Srv->FindNick(j->nick);
274 // THIS MUST COME BEFORE THE QuitUser - QuitUser can
275 // create a recursive call to OnUserQuit in this module
276 // and then corrupt the pointer!
279 Srv->QuitUser(thisnick,"PARK timeout");
287 virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text)
289 if (target_type == TYPE_USER)
291 userrec* u = (userrec*)dest;
292 OnPrePrivmsg(user,u,text);
297 virtual void OnWhois(userrec* src, userrec* dst)
299 if (dst->GetExt("park_awaylog"))
300 Srv->SendTo(NULL,src,"335 "+std::string(src->nick)+" "+std::string(dst->nick)+" :is a parked client");
303 virtual Version GetVersion()
305 return Version(1,0,0,1,VF_VENDOR);
310 // stuff down here is the module-factory stuff. For basic modules you can ignore this.
312 class ModuleParkFactory : public ModuleFactory
323 virtual Module * CreateModule(Server* Me)
325 return new ModulePark(Me);
331 extern "C" void * init_module( void )
333 return new ModuleParkFactory;