]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_check.cpp
Update copyright headers.
[user/henk/code/inspircd.git] / src / modules / m_check.cpp
index d6c17a37ed4baeecbe7b958eedaddc3b3c2bb102..f19f610e941ee14bd8e7a881d733b474d2c40825 100644 (file)
@@ -1,10 +1,15 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
+ *   Copyright (C) 2020 Matt Schatz <genius3000@g3k.solutions>
+ *   Copyright (C) 2013-2016 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2013, 2017-2021 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
+ *   Copyright (C) 2010 Craig Edwards <brain@inspircd.org>
  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
- *   Copyright (C) 2006-2007 Robin Burchell <robin+git@viroteck.net>
- *   Copyright (C) 2006 Craig Edwards <craigedwards@brainbox.cc>
+ *   Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
  *
  * 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
@@ -90,7 +95,7 @@ class CheckContext
                for(Extensible::ExtensibleStore::const_iterator i = ext->GetExtList().begin(); i != ext->GetExtList().end(); ++i)
                {
                        ExtensionItem* item = i->first;
-                       std::string value = item->serialize(FORMAT_USER, ext, i->second);
+                       std::string value = item->ToHuman(ext, i->second);
                        if (!value.empty())
                                Write("meta:" + item->name, value);
                        else if (!item->name.empty())
@@ -141,12 +146,22 @@ class CommandCheck : public Command
                return ret;
        }
 
+       static std::string GetAllowedOperOnlySnomasks(LocalUser* user)
+       {
+               std::string ret;
+               for (unsigned char sno = 'A'; sno <= 'z'; ++sno)
+                       if (ServerInstance->SNO->IsSnomaskUsable(sno) && user->HasSnomaskPermission(sno))
+                               ret.push_back(sno);
+               return ret;
+       }
+
  public:
        CommandCheck(Module* parent)
                : Command(parent,"CHECK", 1)
                , snomaskmode(parent, "snomask")
        {
-               flags_needed = 'o'; syntax = "<nick>|<ipmask>|<hostmask>|<channel> [<servername>]";
+               flags_needed = 'o';
+               syntax = "<nick>|<ipmask>|<hostmask>|<channel> [<servername>]";
        }
 
        CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
@@ -203,6 +218,7 @@ class CommandCheck : public Command
                                {
                                        context.Write("chanmodeperms", GetAllowedOperOnlyModes(loctarg, MODETYPE_CHANNEL));
                                        context.Write("usermodeperms", GetAllowedOperOnlyModes(loctarg, MODETYPE_USER));
+                                       context.Write("snomaskperms", GetAllowedOperOnlySnomasks(loctarg));
                                        context.Write("commandperms", oper->AllowedOperCommands.ToString());
                                        context.Write("permissions", oper->AllowedPrivs.ToString());
                                }
@@ -216,6 +232,8 @@ class CommandCheck : public Command
                                std::string classname = loctarg->GetClass()->name;
                                if (!classname.empty())
                                        context.Write("connectclass", classname);
+
+                               context.Write("exempt", loctarg->exempt ? "yes" : "no");
                        }
                        else
                                context.Write("onip", targuser->GetIPString());
@@ -261,8 +279,8 @@ class CommandCheck : public Command
                        for (Channel::MemberMap::const_iterator i = ulist.begin(); i != ulist.end(); ++i)
                        {
                                /*
-                                * Unlike Asuka, I define a clone as coming from the same host. --w00t
-                                */
+                                * Unlike Asuka, I define a clone as coming from the same host. --w00t
+                                */
                                const UserManager::CloneCounts& clonecount = ServerInstance->Users->GetCloneCounts(i->first);
                                context.Write("member", InspIRCd::Format("%u %s%s (%s)", clonecount.global,
                                        i->second->GetAllPrefixChars().c_str(), i->first->GetFullHost().c_str(),
@@ -322,7 +340,7 @@ class ModuleCheck : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides the CHECK command to view user, channel, IP address or hostname information", VF_VENDOR|VF_OPTCOMMON);
+               return Version("Adds the /CHECK command which allows server operators to look up details about a channel, user, IP address, or hostname.", VF_VENDOR|VF_OPTCOMMON);
        }
 };