]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modules/cap.h
Tidy up source files:
[user/henk/code/inspircd.git] / include / modules / cap.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
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 #pragma once
22
23 class CapEvent : public Event
24 {
25  public:
26         enum CapEventType
27         {
28                 CAPEVENT_REQ,
29                 CAPEVENT_LS,
30                 CAPEVENT_LIST,
31                 CAPEVENT_CLEAR
32         };
33
34         CapEventType type;
35         std::vector<std::string> wanted;
36         std::vector<std::string> ack;
37         User* user;
38         CapEvent(Module* sender, User* u, CapEventType capevtype) : Event(sender, "cap_request"), type(capevtype), user(u) {}
39 };
40
41 class GenericCap
42 {
43  public:
44         LocalIntExt ext;
45         const std::string cap;
46         GenericCap(Module* parent, const std::string &Cap) : ext("cap_" + Cap, parent), cap(Cap)
47         {
48                 ServerInstance->Modules->AddService(ext);
49         }
50
51         void HandleEvent(Event& ev)
52         {
53                 if (ev.id != "cap_request")
54                         return;
55
56                 CapEvent *data = static_cast<CapEvent*>(&ev);
57                 if (data->type == CapEvent::CAPEVENT_REQ)
58                 {
59                         for (std::vector<std::string>::iterator it = data->wanted.begin(); it != data->wanted.end(); ++it)
60                         {
61                                 if (it->empty())
62                                         continue;
63                                 bool enablecap = ((*it)[0] != '-');
64                                 if (((enablecap) && (*it == cap)) || (*it == "-" + cap))
65                                 {
66                                         // we can handle this, so ACK it, and remove it from the wanted list
67                                         data->ack.push_back(*it);
68                                         data->wanted.erase(it);
69                                         ext.set(data->user, enablecap ? 1 : 0);
70                                         break;
71                                 }
72                         }
73                 }
74                 else if (data->type == CapEvent::CAPEVENT_LS)
75                 {
76                         data->wanted.push_back(cap);
77                 }
78                 else if (data->type == CapEvent::CAPEVENT_LIST)
79                 {
80                         if (ext.get(data->user))
81                                 data->wanted.push_back(cap);
82                 }
83                 else if (data->type == CapEvent::CAPEVENT_CLEAR)
84                 {
85                         data->ack.push_back("-" + cap);
86                         ext.set(data->user, 0);
87                 }
88         }
89 };
90