aboutsummaryrefslogtreecommitdiff
path: root/staging/adblock/plugin.cpp
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2020-02-17 21:16:03 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2020-04-21 20:14:55 +0300
commit2c88c38a05c6c426792531fc928bc5a3e526b29d (patch)
tree711e11ceeca37a0ab109b66f7c140d195550e7cb /staging/adblock/plugin.cpp
parentstaging/adblock: implement FilterList::isUpToDate (diff)
downloadsmolbote-2c88c38a05c6c426792531fc928bc5a3e526b29d.tar.xz
staging/adblock: add AdblockPlusPlugin
Diffstat (limited to 'staging/adblock/plugin.cpp')
-rw-r--r--staging/adblock/plugin.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/staging/adblock/plugin.cpp b/staging/adblock/plugin.cpp
new file mode 100644
index 0000000..b4f1b56
--- /dev/null
+++ b/staging/adblock/plugin.cpp
@@ -0,0 +1,29 @@
+/*
+ * 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
+ */
+
+#include "plugin.h"
+#include "filterlist.h"
+#include <QTextStream>
+
+Filter* AdblockPlusFilterPlugin::load(QIODevice* from) const
+{
+ if(!from->isOpen())
+ return nullptr;
+
+ QTextStream stream(from);
+ auto *list = new AdblockPlus::FilterList;
+ const auto result = list->parse(stream);
+
+ if(result.state != AdblockPlus::FilterList::Ok) {
+ delete list;
+ list = nullptr;
+ }
+
+ return list;
+}
+