From 3719db12e6b43e87ef9fad1917b697c565cf59ff Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 7 Aug 2006 13:33:34 +0000 Subject: Extra debug all over the place, which maybe we should keep git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4767 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_chanprotect.cpp | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'src/modules') diff --git a/src/modules/m_chanprotect.cpp b/src/modules/m_chanprotect.cpp index 14b0f82b4..a4bbeee14 100644 --- a/src/modules/m_chanprotect.cpp +++ b/src/modules/m_chanprotect.cpp @@ -61,9 +61,12 @@ class ChanFounder : public ModeHandler { userrec* theuser = Srv->FindNick(parameter); + log(DEBUG,"ChanFounder::OnModeChange"); + // cant find the user given as the parameter, eat the mode change. if (!theuser) { + log(DEBUG,"No such user in ChanFounder"); parameter = ""; return MODEACTION_DENY; } @@ -71,6 +74,7 @@ class ChanFounder : public ModeHandler // given user isnt even on the channel, eat the mode change if (!channel->HasUser(theuser)) { + log(DEBUG,"Channel doesn't have user in ChanFounder"); parameter = ""; return MODEACTION_DENY; } @@ -81,13 +85,20 @@ class ChanFounder : public ModeHandler // source is a server, or ulined, we'll let them +-q the user. if ((Srv->IsUlined(source->nick)) || (Srv->IsUlined(source->server)) || (!*source->server) || (!IS_LOCAL(source))) { + log(DEBUG,"Allowing remote mode change in ChanFounder"); if (adding) { if (!theuser->GetExt(founder,dummyptr)) { - theuser->Extend(founder,fakevalue); + log(DEBUG,"Does not have the ext item in ChanFounder"); + if (!theuser->Extend(founder,fakevalue)) + log(DEBUG,"COULD NOT EXTEND!!!"); // Tidy the nickname (make case match etc) parameter = theuser->nick; + if (theuser->GetExt(founder, dummyptr)) + log(DEBUG,"Extended!"); + else + log(DEBUG,"Not extended :("); return MODEACTION_ALLOW; } } @@ -321,6 +332,7 @@ class ModuleChanProtect : public Module // etc of protected users. There are many types of access check, we're going to handle // a relatively small number of them relevent to our module using a switch statement. + log(DEBUG,"chanprotect OnAccessCheck %d",access_type); // don't allow action if: // (A) Theyre founder (no matter what) // (B) Theyre protected, and you're not @@ -342,11 +354,17 @@ class ModuleChanProtect : public Module { // a user has been deopped. Do we let them? hmmm... case AC_DEOP: + log(DEBUG,"OnAccessCheck AC_DEOP"); if (dest->GetExt(founder,dummyptr)) { + log(DEBUG,"Has %s",founder.c_str()); Srv->SendServ(source->fd,"484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't deop "+std::string(dest->nick)+" as they're a channel founder"); return ACR_DENY; } + else + { + log(DEBUG,"Doesnt have %s",founder.c_str()); + } if ((dest->GetExt(protect,dummyptr)) && (!source->GetExt(protect,dummyptr))) { Srv->SendServ(source->fd,"484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't deop "+std::string(dest->nick)+" as they're protected (+a)"); @@ -356,6 +374,7 @@ class ModuleChanProtect : public Module // a user is being kicked. do we chop off the end of the army boot? case AC_KICK: + log(DEBUG,"OnAccessCheck AC_KICK"); if (dest->GetExt(founder,dummyptr)) { Srv->SendServ(source->fd,"484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't kick "+std::string(dest->nick)+" as they're a channel founder"); -- cgit v1.2.3