]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modules/account.h
Remove the Kiwi links from the readme.
[user/henk/code/inspircd.git] / include / modules / account.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2015 Attila Molnar <attilamolnar@hush.com>
5  *   Copyright (C) 2013 Sadie Powell <sadie@witchery.services>
6  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
8  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
9  *   Copyright (C) 2008 Craig Edwards <brain@inspircd.org>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 #pragma once
26
27 #include <map>
28 #include <string>
29
30 #include "event.h"
31
32 typedef StringExtItem AccountExtItem;
33
34 inline AccountExtItem* GetAccountExtItem()
35 {
36         return static_cast<AccountExtItem*>(ServerInstance->Extensions.GetItem("accountname"));
37 }
38
39 class AccountEventListener : public Events::ModuleEventListener
40 {
41  public:
42         AccountEventListener(Module* mod)
43                 : ModuleEventListener(mod, "event/account")
44         {
45         }
46
47         /** Called when a user logs in or logs out
48          * @param user User logging in or out
49          * @param newaccount New account name of the user or empty string if the user
50          * logged out
51          */
52         virtual void OnAccountChange(User* user, const std::string& newaccount) = 0;
53 };