]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_regex_glob.cpp
m_namedmodes Only show chan key to members and opers with channels/auspex
[user/henk/code/inspircd.git] / src / modules / m_regex_glob.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
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 "m_regex.h"
22 #include "inspircd.h"
23
24 /* $ModDesc: Regex module using plain wildcard matching. */
25
26 class GlobRegex : public Regex
27 {
28 public:
29         GlobRegex(const std::string& rx) : Regex(rx)
30         {
31         }
32
33         virtual ~GlobRegex()
34         {
35         }
36
37         virtual bool Matches(const std::string& text)
38         {
39                 return InspIRCd::Match(text, this->regex_string);
40         }
41 };
42
43 class GlobFactory : public RegexFactory
44 {
45  public:
46         Regex* Create(const std::string& expr)
47         {
48                 return new GlobRegex(expr);
49         }
50
51         GlobFactory(Module* m) : RegexFactory(m, "regex/glob") {}
52 };
53
54 class ModuleRegexGlob : public Module
55 {
56         GlobFactory gf;
57 public:
58         ModuleRegexGlob() : gf(this) {
59                 ServerInstance->Modules->AddService(gf);
60         }
61
62         Version GetVersion()
63         {
64                 return Version("Regex module using plain wildcard matching.", VF_VENDOR);
65         }
66 };
67
68 MODULE_INIT(ModuleRegexGlob)