aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/filter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/webengine/filter.h')
-rw-r--r--src/webengine/filter.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/webengine/filter.h b/src/webengine/filter.h
deleted file mode 100644
index c49bed9..0000000
--- a/src/webengine/filter.h
+++ /dev/null
@@ -1,43 +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://neueland.iserlohn-fortress.net/gitea/aqua/smolbote
- *
- * SPDX-License-Identifier: GPL-3.0
- */
-
-#ifndef SMOLBOTE_FILTER_H
-#define SMOLBOTE_FILTER_H
-
-#include <QByteArray>
-#include <QMap>
-#include <QVector>
-#include <optional>
-#include <memory>
-#include "filtertree.h"
-
-class Configuration;
-class Filter : public QObject
-{
- Q_OBJECT
-public:
- struct HostRule {
- bool isBlocking;
- };
-
- explicit Filter(const std::unique_ptr<Configuration> &config, QObject *parent = nullptr);
- ~Filter() override = default;
-
- void filterRequest(QWebEngineUrlRequestInfo &info) const;
-
- const QMap<QByteArray, QByteArray> headers() const
- {
- return qAsConst(m_headers);
- }
-
-private:
- FilterTree filters;
- QMap<QByteArray, QByteArray> m_headers;
-};
-
-#endif // SMOLBOTE_FILTER_H