]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_ircv3_accounttag.cpp
Add support for the IRCv3 account-tag specification.
[user/henk/code/inspircd.git] / src / modules / m_ircv3_accounttag.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2016 Attila Molnar <attilamolnar@hush.com>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #include "inspircd.h"
21 #include "modules/ircv3.h"
22 #include "modules/account.h"
23
24 class AccountTag : public IRCv3::CapTag<AccountTag>
25 {
26  public:
27         const std::string* GetValue(const ClientProtocol::Message& msg) const
28         {
29                 User* const user = msg.GetSourceUser();
30                 if (!user)
31                         return NULL;
32
33                 AccountExtItem* const accextitem = GetAccountExtItem();
34                 if (!accextitem)
35                         return NULL;
36
37                 return accextitem->get(user);
38         }
39
40         AccountTag(Module* mod)
41                 : IRCv3::CapTag<AccountTag>(mod, "account-tag", "account")
42         {
43         }
44 };
45
46 class ModuleIRCv3AccountTag : public Module
47 {
48         AccountTag tag;
49
50  public:
51         ModuleIRCv3AccountTag()
52                 : tag(this)
53         {
54         }
55
56         Version GetVersion() CXX11_OVERRIDE
57         {
58                 return Version("Provides the account-tag IRCv3 extension", VF_VENDOR);
59         }
60 };
61
62 MODULE_INIT(ModuleIRCv3AccountTag)