]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_halfop.cpp
m_dccallow Validate tokens before use
[user/henk/code/inspircd.git] / src / modules / m_halfop.cpp
index d0ad448910fb7e7ef3718af7bec713bd69e199e1..3194fcde8ea29308798cd0e45af3fbcbbb54232c 100644 (file)
@@ -1,16 +1,24 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * 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
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+
+/* $ModDesc: Channel half-operator mode provider */
+
 #include "inspircd.h"
 
 class ModeChannelHalfOp : public ModeHandler
@@ -21,6 +29,13 @@ class ModeChannelHalfOp : public ModeHandler
        unsigned int GetPrefixRank();
        void RemoveMode(Channel* channel, irc::modestacker* stack = NULL);
        void RemoveMode(User* user, irc::modestacker* stack = NULL);
+
+       ModResult AccessCheck(User* src, Channel*, std::string& value, bool adding)
+       {
+               if (!adding && src->nick == value)
+                       return MOD_RES_ALLOW;
+               return MOD_RES_PASSTHRU;
+       }
 };
 
 ModeChannelHalfOp::ModeChannelHalfOp(Module* parent) : ModeHandler(parent, "halfop", 'h', PARAM_ALWAYS, MODETYPE_CHANNEL)
@@ -73,13 +88,11 @@ class ModuleHalfop : public Module
  public:
        ModuleHalfop() : mh(this)
        {
-               if (!ServerInstance->Modes->AddMode(&mh))
-                       throw ModuleException("Could not add new modes!");
        }
 
-       ~ModuleHalfop()
+       void init()
        {
-               ServerInstance->Modes->DelMode(&mh);
+               ServerInstance->Modules->AddService(mh);
        }
 
        Version GetVersion()