X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_conn_umodes.cpp;h=8cf6d1651459b6274b54de376e06482d8e6068b0;hb=80e81e3b81b779901fd9d67f8ae030ee30c0bcec;hp=eaa472e1515c0a9f4968c3d75d181bd22d69fd1d;hpb=46a39046196f55b52336e19662bb7bac85b731ac;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_conn_umodes.cpp b/src/modules/m_conn_umodes.cpp index eaa472e15..8cf6d1651 100644 --- a/src/modules/m_conn_umodes.cpp +++ b/src/modules/m_conn_umodes.cpp @@ -1,10 +1,11 @@ /* * InspIRCd -- Internet Relay Chat Daemon * + * Copyright (C) 2013, 2019 Sadie Powell + * Copyright (C) 2012 Robby * Copyright (C) 2009 Daniel De Graaf * Copyright (C) 2007 Dennis Friis - * Copyright (C) 2007 Robin Burchell - * Copyright (C) 2006 Craig Edwards + * Copyright (C) 2006, 2010 Craig Edwards * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -22,68 +23,28 @@ #include "inspircd.h" -/* $ModDesc: Sets (and unsets) modes on users when they connect */ - class ModuleModesOnConnect : public Module { public: - ModuleModesOnConnect() { - ServerInstance->Modules->Attach(I_OnUserConnect, this); - } - - void Prioritize() + Version GetVersion() CXX11_OVERRIDE { - // for things like +x on connect, important, otherwise we have to resort to config order (bleh) -- w00t - ServerInstance->Modules->SetPriority(this, I_OnUserConnect, PRIORITY_FIRST); + return Version("Allows the server administrator to set user modes on connecting users.", VF_VENDOR); } - virtual ~ModuleModesOnConnect() + void OnUserConnect(LocalUser* user) CXX11_OVERRIDE { - } - - virtual Version GetVersion() - { - return Version("Sets (and unsets) modes on users when they connect", VF_VENDOR); - } - - virtual void OnUserConnect(LocalUser* user) - { - // Backup and zero out the disabled usermodes, so that we can override them here. - char save[64]; - memcpy(save, ServerInstance->Config->DisabledUModes, - sizeof(ServerInstance->Config->DisabledUModes)); - memset(ServerInstance->Config->DisabledUModes, 0, 64); - - ConfigTag* tag = user->MyClass->config; - std::string ThisModes = tag->getString("modes"); - if (!ThisModes.empty()) - { - std::string buf; - std::stringstream ss(ThisModes); - - std::vector tokens; - - // split ThisUserModes into modes and mode params - while (ss >> buf) - tokens.push_back(buf); - - std::vector modes; - modes.push_back(user->nick); - modes.push_back(tokens[0]); + const std::string modestr = user->MyClass->config->getString("modes"); + if (modestr.empty()) + return; - if (tokens.size() > 1) - { - // process mode params - for (unsigned int k = 1; k < tokens.size(); k++) - { - modes.push_back(tokens[k]); - } - } + CommandBase::Params params; + params.push_back(user->nick); - ServerInstance->Parser->CallHandler("MODE", modes, user); - } + irc::spacesepstream modestream(modestr); + for (std::string modetoken; modestream.GetToken(modetoken); ) + params.push_back(modetoken); - memcpy(ServerInstance->Config->DisabledUModes, save, 64); + ServerInstance->Parser.CallHandler("MODE", params, user); } };