X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodes%2Fcmode_k.cpp;h=d8b04b5764b5b53f106c39ac445e5ca643093559;hb=df37ab42f454e3a96d59a2a86eb76bcb4af0818a;hp=4f95f3ad1baf5de5836d218b8d5686563c3d1e0b;hpb=d7b24990ec5bd1bf4efb7f02c613e0235dfab4a8;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modes/cmode_k.cpp b/src/modes/cmode_k.cpp index 4f95f3ad1..d8b04b576 100644 --- a/src/modes/cmode_k.cpp +++ b/src/modes/cmode_k.cpp @@ -1,66 +1,90 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + #include "inspircd.h" #include "mode.h" #include "channels.h" #include "users.h" #include "modes/cmode_k.h" -ModeChannelKey::ModeChannelKey(InspIRCd* Instance) : ModeHandler(Instance, 'k', 1, 1, false, MODETYPE_CHANNEL, false) +ModeChannelKey::ModeChannelKey() : ModeHandler(NULL, "key", 'k', PARAM_ALWAYS, MODETYPE_CHANNEL) { } -ModePair ModeChannelKey::ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string ¶meter) -{ - if (channel->modes[CM_KEY]) - { - return std::make_pair(true, channel->key); - } - else - { - return std::make_pair(false, parameter); - } -} +void ModeChannelKey::RemoveMode(Channel* channel, irc::modestacker* stack) +{ + /** +k needs a parameter when being removed, + * so we have a special-case RemoveMode here for it + */ -bool ModeChannelKey::CheckTimeStamp(time_t theirs, time_t ours, const std::string &their_param, const std::string &our_param, chanrec* channel) + if (channel->IsModeSet('k')) + { + if (stack) + { + stack->Push('k', channel->GetModeParameter('k')); + } + else + { + std::vector parameters; + parameters.push_back(channel->name); + parameters.push_back("-k"); + parameters.push_back(channel->GetModeParameter('k')); + ServerInstance->SendMode(parameters, ServerInstance->FakeClient); + } + } +} + +void ModeChannelKey::RemoveMode(User*, irc::modestacker* stack) { - /* When TS is equal, the alphabetically later channel key wins */ - return (their_param < our_param); } -ModeAction ModeChannelKey::OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) +ModeAction ModeChannelKey::OnModeChange(User* source, User*, Channel* channel, std::string ¶meter, bool adding) { - if ((channel->modes[CM_KEY] != adding) || (!IS_LOCAL(source))) + bool exists = channel->IsModeSet('k'); + if (IS_LOCAL(source)) { - if (((channel->modes[CM_KEY]) && (strcasecmp(parameter.c_str(),channel->key))) && (IS_LOCAL(source))) + if (exists == adding) + return MODEACTION_DENY; + if (exists && (parameter != channel->GetModeParameter('k'))) { /* Key is currently set and the correct key wasnt given */ - ServerInstance->Log(DEBUG,"Key Cond 2"); return MODEACTION_DENY; } - else if ((!channel->modes[CM_KEY]) || ((adding) && (!IS_LOCAL(source)))) + } else { + if (exists && adding && parameter == channel->GetModeParameter('k')) { - /* Key isnt currently set */ - if ((parameter.length()) && (parameter.rfind(' ') == std::string::npos)) - { - strlcpy(channel->key,parameter.c_str(),32); - channel->modes[CM_KEY] = adding; - return MODEACTION_ALLOW; - } - else - return MODEACTION_DENY; - } - else if (((channel->modes[CM_KEY]) && (!strcasecmp(parameter.c_str(),channel->key))) || ((!adding) && (!IS_LOCAL(source)))) - { - /* Key is currently set, and correct key was given */ - *channel->key = 0; - channel->modes[CM_KEY] = adding; - return MODEACTION_ALLOW; + /* no-op, don't show */ + return MODEACTION_DENY; } - ServerInstance->Log(DEBUG,"Key Cond three"); + } + + /* invalid keys */ + if (!parameter.length()) return MODEACTION_DENY; + + if (parameter.rfind(' ') != std::string::npos) + return MODEACTION_DENY; + + if (adding) + { + std::string ckey; + ckey.assign(parameter, 0, 32); + parameter = ckey; + channel->SetModeParam('k', parameter); } else { - ServerInstance->Log(DEBUG,"Key Condition one"); - return MODEACTION_DENY; + channel->SetModeParam('k', ""); } + return MODEACTION_ALLOW; }