aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd_list.cpp
diff options
context:
space:
mode:
authorGravatar brain2007-03-30 19:48:50 +0000
committerGravatar brain2007-03-30 19:48:50 +0000
commit1f960a7c7e55ebe1ea1591b410ed105ec88ae2e0 (patch)
treebec73daf604b77a0730116ecb6280fb01fa98f1f /src/cmd_list.cpp
parentMake this available to all users (diff)
downloadinspircd++-1f960a7c7e55ebe1ea1591b410ed105ec88ae2e0.tar.gz
inspircd++-1f960a7c7e55ebe1ea1591b410ed105ec88ae2e0.tar.bz2
inspircd++-1f960a7c7e55ebe1ea1591b410ed105ec88ae2e0.zip
Add extra stuff to LIST.
Firstly allow RFC-specified >x and <x, and allow for glob matching to match the topic text, as well as the channel name git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6718 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_list.cpp')
-rw-r--r--src/cmd_list.cpp29
1 files changed, 25 insertions, 4 deletions
diff --git a/src/cmd_list.cpp b/src/cmd_list.cpp
index 920d77f34..78e586aab 100644
--- a/src/cmd_list.cpp
+++ b/src/cmd_list.cpp
@@ -25,22 +25,43 @@ extern "C" command_t* init_command(InspIRCd* Instance)
CmdResult cmd_list::Handle (const char** parameters, int pcnt, userrec *user)
{
+ int minusers = 0, maxusers = 0;
+
user->WriteServ("321 %s Channel :Users Name",user->nick);
/* Work around mIRC suckyness. YOU SUCK, KHALED! */
- if ((pcnt == 1) && (*parameters[0] == '<'))
- pcnt = 0;
+ if (pcnt == 1)
+ {
+ if (*parameters[0] == '<')
+ {
+ maxusers = atoi(parameters[0]+1);
+ pcnt = 0;
+ }
+ else if (*parameters[0] == '>')
+ {
+ minusers = atoi(parameters[0]+1);
+ 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]))
+ long users = i->second->GetUserCounter();
+
+ bool too_few = (minusers && (users <= minusers));
+ bool too_many = (maxusers && (users >= maxusers));
+
+ if (too_many || too_few)
continue;
+
+ if (pcnt && (!match(i->second->name, parameters[0]) || (*i->second->topic && !match(i->second->topic, 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]) && (!n))
{
- long users = i->second->GetUserCounter();
if (users)
user->WriteServ("322 %s *",user->nick,i->second->name);
}