]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/opertype.cpp
Replace IS_AWAY() and IS_OPER() macros with User::IsAway() and User::IsOper()
[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::Handle(const std::vector<std::string>& params, User *u)
30 {
31         SpanningTreeUtilities* Utils = ((ModuleSpanningTree*)(Module*)creator)->Utils;
32         std::string opertype = params[0];
33         if (!u->IsOper())
34                 ServerInstance->Users->all_opers.push_back(u);
35         u->modes[UM_OPERATOR] = 1;
36         OperIndex::iterator iter = ServerInstance->Config->oper_blocks.find(" " + opertype);
37         if (iter != ServerInstance->Config->oper_blocks.end())
38                 u->oper = iter->second;
39         else
40         {
41                 u->oper = new OperInfo;
42                 u->oper->name = opertype;
43         }
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 = Utils->FindServer(u->server);
52                 if (remoteserver->bursting || ServerInstance->SilentULine(u->server))
53                         return CMD_SUCCESS;
54         }
55
56         ServerInstance->SNO->WriteToSnoMask('O',"From %s: User %s (%s@%s) is now an IRC operator of type %s",u->server.c_str(), u->nick.c_str(),u->ident.c_str(), u->host.c_str(), irc::Spacify(opertype.c_str()));
57         return CMD_SUCCESS;
58 }
59