From 2c88c38a05c6c426792531fc928bc5a3e526b29d Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Mon, 17 Feb 2020 21:16:03 +0200 Subject: staging/adblock: add AdblockPlusPlugin --- staging/adblock/plugin.cpp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 staging/adblock/plugin.cpp (limited to 'staging/adblock/plugin.cpp') 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 + +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; +} + -- cgit v1.2.1