aboutsummaryrefslogtreecommitdiff
path: root/subprojects/plugin_hostlist/filterlist.hpp
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2020-04-23 16:50:01 +0300
committerAqua-sama <aqua@iserlohn-fortress.net>2020-04-23 16:50:01 +0300
commit54cc702419163c416e5511f487fcb80cb37b2561 (patch)
treec93ef759f2973bb4149b806ee4da055a749a5222 /subprojects/plugin_hostlist/filterlist.hpp
parentRemove plugin_hostlist:interface (diff)
downloadsmolbote-54cc702419163c416e5511f487fcb80cb37b2561.tar.xz
plugin_hostlist: add fuzzer
Diffstat (limited to 'subprojects/plugin_hostlist/filterlist.hpp')
-rw-r--r--subprojects/plugin_hostlist/filterlist.hpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/subprojects/plugin_hostlist/filterlist.hpp b/subprojects/plugin_hostlist/filterlist.hpp
deleted file mode 100644
index 7301f20..0000000
--- a/subprojects/plugin_hostlist/filterlist.hpp
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * This file is part of smolbote. It's copyrighted by the contributors recorded
- * in the version control history of the file, available from its original
- * location: https://library.iserlohn-fortress.net/aqua/smolbote.git
- *
- * SPDX-License-Identifier: GPL-3.0
- */
-
-#pragma once
-
-#include <map>
-#include <smolbote/filterinterface.hpp>
-
-namespace Hostlist
-{
-
-class Filterlist final : public FilterList
-{
-public:
- typedef uint DomainHash;
- struct Rule {
- QString domain;
- QString redirect;
- };
-
- Filterlist() = default;
- ~Filterlist() = default;
-
- [[nodiscard]] bool findMatch(const QString &domain) const
- {
- const auto hash = qHash(domain, 0);
- const auto found = rules.find(hash);
- if(found != rules.end()) {
- return true;
- }
- return false;
- }
- int count() const
- {
- return rules.size();
- }
-
- [[nodiscard]] bool filter(QWebEngineUrlRequestInfo &info) const
- {
- return false;
- }
- [[nodiscard]] bool isUpToDate() const
- {
- return true;
- }
-
- bool load(QIODevice &device);
- [[nodiscard]] static std::map<DomainHash, Rule> parseRule(const QString &line);
-
-private:
- std::map<DomainHash, Rule> rules;
-};
-} // namespace Hostlist