]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_ircv3_accounttag.cpp
Sync helpop chmodes s and p with docs
[user/henk/code/inspircd.git] / src / modules / m_ircv3_accounttag.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2018 Attila Molnar <attilamolnar@hush.com>
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 "modules/ircv3.h"
23 #include "modules/account.h"
24
25 class AccountTag : public IRCv3::CapTag<AccountTag>
26 {
27  public:
28         const std::string* GetValue(const ClientProtocol::Message& msg) const
29         {
30                 User* const user = msg.GetSourceUser();
31                 if (!user)
32                         return NULL;
33
34                 AccountExtItem* const accextitem = GetAccountExtItem();
35                 if (!accextitem)
36                         return NULL;
37
38                 return accextitem->get(user);
39         }
40
41         AccountTag(Module* mod)
42                 : IRCv3::CapTag<AccountTag>(mod, "account-tag", "account")
43         {
44         }
45 };
46
47 class ModuleIRCv3AccountTag : public Module
48 {
49         AccountTag tag;
50
51  public:
52         ModuleIRCv3AccountTag()
53                 : tag(this)
54         {
55         }
56
57         Version GetVersion() CXX11_OVERRIDE
58         {
59                 return Version("Provides the IRCv3 account-tag client capability.", VF_VENDOR);
60         }
61 };
62
63 MODULE_INIT(ModuleIRCv3AccountTag)