]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/opertype.cpp
Textual improvements and fixes such as typos, casing, etc. (#1612)
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / opertype.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22 #include "commands.h"
23 #include "treeserver.h"
24 #include "utils.h"
25
26 /** Because the core won't let users or even SERVERS set +o,
27  * we use the OPERTYPE command to do this.
28  */
29 CmdResult CommandOpertype::HandleRemote(RemoteUser* u, CommandBase::Params& params)
30 {
31         const std::string& opertype = params[0];
32         if (!u->IsOper())
33                 ServerInstance->Users->all_opers.push_back(u);
34
35         ModeHandler* opermh = ServerInstance->Modes->FindMode('o', MODETYPE_USER);
36         if (opermh)
37                 u->SetMode(opermh, true);
38
39         ServerConfig::OperIndex::const_iterator iter = ServerInstance->Config->OperTypes.find(opertype);
40         if (iter != ServerInstance->Config->OperTypes.end())
41                 u->oper = iter->second;
42         else
43                 u->oper = new OperInfo(opertype);
44
45         if (Utils->quiet_bursts)
46         {
47                 /*
48                  * If quiet bursts are enabled, and server is bursting or silent uline (i.e. services),
49                  * then do nothing. -- w00t
50                  */
51                 TreeServer* remoteserver = TreeServer::Get(u);
52                 if (remoteserver->IsBehindBursting() || remoteserver->IsSilentULine())
53                         return CMD_SUCCESS;
54         }
55
56         ServerInstance->SNO->WriteToSnoMask('O', "From %s: User %s (%s@%s) is now a server operator of type %s", u->server->GetName().c_str(), u->nick.c_str(),u->ident.c_str(), u->GetRealHost().c_str(), opertype.c_str());
57         return CMD_SUCCESS;
58 }
59
60 CommandOpertype::Builder::Builder(User* user)
61         : CmdBuilder(user, "OPERTYPE")
62 {
63         push_last(user->oper->name);
64 }