aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/urlinterceptor.cpp
blob: 2bd50b84d39af5c4adef22ba0ba9b7fffdb80a0f (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
#include "urlinterceptor.h"

UrlRequestInterceptor::UrlRequestInterceptor(QObject *parent) :
    QWebEngineUrlRequestInterceptor(parent)
{
}

void UrlRequestInterceptor::interceptRequest(QWebEngineUrlRequestInfo &info)
{
    for(BlockerRule *rule : m_sub->urlWhitelist()) {
        if(rule->match(info.requestUrl())) {
            qDebug("OK %s", qUtf8Printable(info.requestUrl().toString()));
            return;
        }
    }

    for(BlockerRule *rule : m_sub->urlBlacklist()) {
        if(rule->match(info.requestUrl())) {
            info.block(true);
            qDebug("   %s", qUtf8Printable(info.requestUrl().toString()));
            return;
        }
    }

    qDebug("OK %s", qUtf8Printable(info.requestUrl().toString()));

}

void UrlRequestInterceptor::setSubscription(BlockerSubscription *subscription)
{
    m_sub = subscription;
}