1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
/*
*
* Copyright (C) 2008-2011 Robin Burchell <w00t@inspircd.org>
* Copyright (C) 2008-2014 Anope Team <team@anope.org>
*
* Please read COPYING and README for further details.
*
*/
#include "services.h"
#include "anope.h"
#include "opertype.h"
#include "config.h"
Anope::string Oper::GetName()
{
return Get(&OperBlockType::name);
}
void Oper::SetName(const Anope::string &n)
{
Set(&OperBlockType::name, n);
}
Anope::string Oper::GetPassword()
{
return Get(&OperBlockType::password);
}
void Oper::SetPassword(const Anope::string &s)
{
Set(&OperBlockType::password, s);
}
Anope::string Oper::GetCertFP()
{
return Get(&OperBlockType::certfp);
}
void Oper::SetCertFP(const Anope::string &s)
{
Set(&OperBlockType::certfp, s);
}
Anope::string Oper::GetHost()
{
return Get(&OperBlockType::host);
}
void Oper::SetHost(const Anope::string &h)
{
Set(&OperBlockType::host, h);
}
Anope::string Oper::GetVhost()
{
return Get(&OperBlockType::vhost);
}
void Oper::SetVhost(const Anope::string &s)
{
Set(&OperBlockType::vhost, s);
}
OperType *Oper::GetType()
{
return OperType::Find(Get(&OperBlockType::type));
}
void Oper::SetType(OperType *type)
{
Set(&OperBlockType::type, type->GetName());
}
bool Oper::GetRequireOper()
{
return Get(&OperBlockType::require_oper);
}
void Oper::SetRequireOper(const bool &b)
{
Set(&OperBlockType::require_oper, b);
}
Oper *Oper::Find(const Anope::string &name)
{
for (Oper *o : Serialize::GetObjects<Oper *>(operblock))
if (o->GetName() == name)
return o;
return nullptr;
}
OperType *OperType::Find(const Anope::string &name)
{
for (unsigned i = 0; i < Config->MyOperTypes.size(); ++i)
{
OperType *ot = Config->MyOperTypes[i];
if (ot->GetName() == name)
return ot;
}
return NULL;
}
OperType::OperType(const Anope::string &nname) : name(nname)
{
}
bool OperType::HasCommand(const Anope::string &cmdstr) const
{
for (std::list<Anope::string>::const_iterator it = this->commands.begin(), it_end = this->commands.end(); it != it_end; ++it)
{
const Anope::string &s = *it;
if (!s.find('~') && Anope::Match(cmdstr, s.substr(1)))
return false;
else if (Anope::Match(cmdstr, s))
return true;
}
for (std::set<OperType *>::const_iterator iit = this->inheritances.begin(), iit_end = this->inheritances.end(); iit != iit_end; ++iit)
{
OperType *ot = *iit;
if (ot->HasCommand(cmdstr))
return true;
}
return false;
}
bool OperType::HasPriv(const Anope::string &privstr) const
{
for (std::list<Anope::string>::const_iterator it = this->privs.begin(), it_end = this->privs.end(); it != it_end; ++it)
{
const Anope::string &s = *it;
if (!s.find('~') && Anope::Match(privstr, s.substr(1)))
return false;
else if (Anope::Match(privstr, s))
return true;
}
for (std::set<OperType *>::const_iterator iit = this->inheritances.begin(), iit_end = this->inheritances.end(); iit != iit_end; ++iit)
{
OperType *ot = *iit;
if (ot->HasPriv(privstr))
return true;
}
return false;
}
void OperType::AddCommand(const Anope::string &cmdstr)
{
this->commands.push_back(cmdstr);
}
void OperType::AddPriv(const Anope::string &privstr)
{
this->privs.push_back(privstr);
}
const Anope::string &OperType::GetName() const
{
return this->name;
}
void OperType::Inherits(OperType *ot)
{
if (ot != this)
this->inheritances.insert(ot);
}
const std::list<Anope::string> OperType::GetCommands() const
{
std::list<Anope::string> cmd_list = this->commands;
for (std::set<OperType *>::const_iterator it = this->inheritances.begin(), it_end = this->inheritances.end(); it != it_end; ++it)
{
OperType *ot = *it;
std::list<Anope::string> cmds = ot->GetCommands();
for (std::list<Anope::string>::const_iterator it2 = cmds.begin(), it2_end = cmds.end(); it2 != it2_end; ++it2)
cmd_list.push_back(*it2);
}
return cmd_list;
}
const std::list<Anope::string> OperType::GetPrivs() const
{
std::list<Anope::string> priv_list = this->privs;
for (std::set<OperType *>::const_iterator it = this->inheritances.begin(), it_end = this->inheritances.end(); it != it_end; ++it)
{
OperType *ot = *it;
std::list<Anope::string> priv = ot->GetPrivs();
for (std::list<Anope::string>::const_iterator it2 = priv.begin(), it2_end = priv.end(); it2 != it2_end; ++it2)
priv_list.push_back(*it2);
}
return priv_list;
}
|