summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-13 13:02:20 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-13 13:02:20 +0000
commit409e3a5c8439b0d22524aeb802b04be3b9983fc5 (patch)
tree8cd9b75269d012785f4ccb50c3ebe599b7f765b8 /src
parentc0f731e19d61a971af5cf26d073ccd25bfc5c91c (diff)
Added Module::OnSendList
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1072 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/mode.cpp10
-rw-r--r--src/modules.cpp1
-rw-r--r--src/modules/m_chanprotect.cpp29
3 files changed, 40 insertions, 0 deletions
diff --git a/src/mode.cpp b/src/mode.cpp
index 3d25e6c06..467b3d09b 100644
--- a/src/mode.cpp
+++ b/src/mode.cpp
@@ -1283,6 +1283,16 @@ void handle_mode(char **parameters, int pcnt, userrec *user)
WriteServ(user->fd,"368 %s %s :End of channel ban list",user->nick, Ptr->name);
return;
}
+ char* mode = parameters[1];
+ if (*mode == '+')
+ mode++;
+ if ((ModeDefined(*mode,MT_CHANNEL)) && (ModeIsListMode(*mode,MT_CHANNEL)))
+ {
+ // list of items for an extmode
+ log(DEBUG,"Calling OnSendList for all modules, list output for mode %c",*mode);
+ FOREACH_MOD OnSendList(user,Ptr,*mode);
+ return;
+ }
}
if ((Ptr) && (!has_channel(user,Ptr)))
diff --git a/src/modules.cpp b/src/modules.cpp
index 5d75ea20d..1bed5bd18 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -331,6 +331,7 @@ void Module::On005Numeric(std::string &output) { };
int Module::OnKill(userrec* source, userrec* dest, std::string reason) { return 0; };
void Module::OnLoadModule(Module* mod,std::string name) { };
void Module::OnBackgroundTimer(time_t curtime) { };
+void Module::OnSendList(userrec* user, chanrec* channel, char mode) { };
// server is a wrapper class that provides methods to all of the C-style
// exports in the core
diff --git a/src/modules/m_chanprotect.cpp b/src/modules/m_chanprotect.cpp
index 65a7b0e84..5a8e40a36 100644
--- a/src/modules/m_chanprotect.cpp
+++ b/src/modules/m_chanprotect.cpp
@@ -279,6 +279,35 @@ class ModuleChanProtect : public Module
}
return 0;
}
+
+ virtual void OnSendList(userrec* user, chanrec* channel, char mode)
+ {
+ if (mode == 'q')
+ {
+ chanuserlist cl = Srv->GetUsers(channel);
+ for (int i = 0; i < cl.size(); i++)
+ {
+ if (cl[i]->GetExt("cm_founder_"+std::string(channel->name)))
+ {
+ WriteServ(user->fd,"386 %s %s %s",user->nick, channel->name,cl[i]->nick);
+ }
+ }
+ WriteServ(user->fd,"387 %s %s :End of channel founder list",user->nick, channel->name);
+ }
+ if (mode == 'a')
+ {
+ chanuserlist cl = Srv->GetUsers(channel);
+ for (int i = 0; i < cl.size(); i++)
+ {
+ if (cl[i]->GetExt("cm_protect_"+std::string(channel->name)))
+ {
+ WriteServ(user->fd,"388 %s %s %s",user->nick, channel->name,cl[i]->nick);
+ }
+ }
+ WriteServ(user->fd,"389 %s %s :End of channel protected user list",user->nick, channel->name);
+ }
+
+ }
virtual ~ModuleChanProtect()
{