]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_regex_glob.cpp
Merge pull request #461 from SaberUK/master+header-cleanup
[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 "modules/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 bool Matches(const std::string& text)
34         {
35                 return InspIRCd::Match(text, this->regex_string);
36         }
37 };
38
39 class GlobFactory : public RegexFactory
40 {
41  public:
42         Regex* Create(const std::string& expr)
43         {
44                 return new GlobRegex(expr);
45         }
46
47         GlobFactory(Module* m) : RegexFactory(m, "regex/glob") {}
48 };
49
50 class ModuleRegexGlob : public Module
51 {
52         GlobFactory gf;
53 public:
54         ModuleRegexGlob() : gf(this) {
55                 ServerInstance->Modules->AddService(gf);
56         }
57
58         Version GetVersion()
59         {
60                 return Version("Regex module using plain wildcard matching.", VF_VENDOR);
61         }
62 };
63
64 MODULE_INIT(ModuleRegexGlob)