aboutsummaryrefslogtreecommitdiff
path: root/include/smolbote/filterinterface.hpp
blob: 9c78c97ae59f42694f1865796f0fcda0eacc5d47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * 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: MIT
 */

#ifndef SMOLBOTE_FILTER_HPP
#define SMOLBOTE_FILTER_HPP

#include <QWebEngineUrlRequestInfo>
#include <QtPlugin>

class Filter
{
public:
    virtual ~Filter() = default;

    virtual void filter(QWebEngineUrlRequestInfo &info) const = 0;
    virtual bool isUpToDate() const = 0;
};

// A class to provide filter interfaces
class QIODevice;
class FilterPlugin
{
public:
    virtual ~FilterPlugin() = default;

    virtual Filter* load(QIODevice* from) const = 0;
};

#define FilterPluginIid "net.iserlohn-fortress.smolbote.FilterPlugin"
Q_DECLARE_INTERFACE(FilterPlugin, FilterPluginIid)

#endif // SMOLBOTE_FILTER_HPP