diff options
author | Peter Powell <petpow@saberuk.com> | 2017-03-20 11:43:24 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2017-03-20 11:47:59 +0000 |
commit | 81027f3a0888ac4c8e3fb6ea90081492defce946 (patch) | |
tree | a8da074f8feb486af8ef4aebf67e8c901f2340f3 /include/modules | |
parent | 5583d8dc5ff202d411d7985b6bbfb240beeacddd (diff) |
Move the OnCheckExemption hook out of the core.
Diffstat (limited to 'include/modules')
-rw-r--r-- | include/modules/exemption.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/include/modules/exemption.h b/include/modules/exemption.h new file mode 100644 index 000000000..2f4ee02fc --- /dev/null +++ b/include/modules/exemption.h @@ -0,0 +1,58 @@ +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * Copyright (C) 2016-2017 Peter Powell <petpow@saberuk.com> + * + * 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/>. + */ + + +#pragma once + +#include "event.h" + +namespace CheckExemption +{ + class EventListener; + class EventProvider; +} + +class CheckExemption::EventListener + : public Events::ModuleEventListener +{ + protected: + EventListener(Module* mod) + : ModuleEventListener(mod, "event/exemption") + { + } + + public: + /** Called when checking if a user is exempt from something. + * @param user The user to check exemption for. + * @param chan The channel to check exemption on. + * @param restriction The restriction to check for. + * @return Either MOD_RES_ALLOW to confirm an exemption, MOD_RES_DENY to deny an exemption, + * or MOD_RES_PASSTHRU to let another module handle the event. + */ + virtual ModResult OnCheckExemption(User* user, Channel* chan, const std::string& restriction) = 0; +}; + +class CheckExemption::EventProvider + : public Events::ModuleEventProvider +{ + public: + EventProvider(Module* mod) + : ModuleEventProvider(mod, "event/exemption") + { + } +}; |