X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_list.cpp;h=5ce458ab7b48bff4b62f9b155dbbeaf483cb4beb;hb=ed105d7fef72b5bb5f23e72fae40d6b4ffdcb5b8;hp=211c88d1f29ff31338edcfa19a30d006239a9a43;hpb=24ac504f4b6dbcca3cb3ab91d3cbb40cc7a9ff33;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_list.cpp b/src/cmd_list.cpp index 211c88d1f..5ce458ab7 100644 --- a/src/cmd_list.cpp +++ b/src/cmd_list.cpp @@ -15,26 +15,49 @@ */ #include "users.h" -#include "ctables.h" -#include "commands.h" -#include "helperfuncs.h" +#include "inspircd.h" #include "commands/cmd_list.h" +#include "wildcard.h" -extern chan_hash chanlist; +/** Handle /LIST + */ +extern "C" command_t* init_command(InspIRCd* Instance) +{ + return new cmd_list(Instance); +} -void cmd_list::Handle (char **parameters, int pcnt, userrec *user) +CmdResult cmd_list::Handle (const char** parameters, int pcnt, userrec *user) { - WriteServ(user->fd,"321 %s Channel :Users Name",user->nick); - for (chan_hash::const_iterator i = chanlist.begin(); i != chanlist.end(); i++) + user->WriteServ("321 %s Channel :Users Name",user->nick); + + /* Work around mIRC suckyness. YOU SUCK, KHALED! */ + if ((pcnt == 1) && (*parameters[0] == '<')) + pcnt = 0; + + for (chan_hash::const_iterator i = ServerInstance->chanlist.begin(); i != ServerInstance->chanlist.end(); i++) { + // attempt to match a glob pattern + if (pcnt && !match(i->second->name, parameters[0])) + continue; // if the channel is not private/secret, OR the user is on the channel anyway bool n = i->second->HasUser(user); - if (((!(i->second->modes[CM_PRIVATE])) && (!(i->second->modes[CM_SECRET]))) || (n)) + if ((i->second->modes[CM_PRIVATE]) && (!n)) { - long users = usercount(i->second); + long users = i->second->GetUserCounter(); if (users) - WriteServ(user->fd,"322 %s %s %d :[+%s] %s",user->nick,i->second->name,users,chanmodes(i->second,n),i->second->topic); + user->WriteServ("322 %s *",user->nick,i->second->name); + } + else + { + if (((!(i->second->modes[CM_PRIVATE])) && (!(i->second->modes[CM_SECRET]))) || (n)) + { + long users = i->second->GetUserCounter(); + if (users) + user->WriteServ("322 %s %s %d :[+%s] %s",user->nick,i->second->name,users,i->second->ChanModes(n),i->second->topic); + } } } - WriteServ(user->fd,"323 %s :End of channel list.",user->nick); + user->WriteServ("323 %s :End of channel list.",user->nick); + + return CMD_SUCCESS; }