2011-03-29 20:30:05 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2011-03-29 20:30:05 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#include "adblockicon.h"
|
2012-07-01 18:13:49 +02:00
|
|
|
#include "adblockrule.h"
|
2011-03-29 20:30:05 +02:00
|
|
|
#include "adblockmanager.h"
|
2012-08-09 19:02:25 +02:00
|
|
|
#include "adblocksubscription.h"
|
2012-02-04 18:45:59 +01:00
|
|
|
#include "mainapplication.h"
|
2014-02-19 22:07:21 +01:00
|
|
|
#include "browserwindow.h"
|
2011-03-29 20:30:05 +02:00
|
|
|
#include "webpage.h"
|
2012-01-21 23:19:38 +01:00
|
|
|
#include "tabbedwebview.h"
|
|
|
|
#include "tabwidget.h"
|
2012-02-04 18:45:59 +01:00
|
|
|
#include "desktopnotificationsfactory.h"
|
2011-03-29 20:30:05 +02:00
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QMenu>
|
|
|
|
#include <QTimer>
|
|
|
|
|
2014-02-19 22:07:21 +01:00
|
|
|
AdBlockIcon::AdBlockIcon(BrowserWindow* window, QWidget* parent)
|
2011-11-06 17:01:23 +01:00
|
|
|
: ClickableLabel(parent)
|
2014-02-19 22:07:21 +01:00
|
|
|
, m_window(window)
|
2012-02-04 18:45:59 +01:00
|
|
|
, m_menuAction(0)
|
|
|
|
, m_flashTimer(0)
|
|
|
|
, m_timerTicks(0)
|
|
|
|
, m_enabled(false)
|
2011-03-29 20:30:05 +02:00
|
|
|
{
|
|
|
|
setCursor(Qt::PointingHandCursor);
|
2012-01-07 20:56:58 +01:00
|
|
|
setToolTip(tr("AdBlock lets you block unwanted content on web pages"));
|
2011-03-29 20:30:05 +02:00
|
|
|
|
|
|
|
connect(this, SIGNAL(clicked(QPoint)), this, SLOT(showMenu(QPoint)));
|
2014-03-09 12:49:45 +01:00
|
|
|
connect(AdBlockManager::instance(), SIGNAL(enabledChanged(bool)), this, SLOT(setEnabled(bool)));
|
|
|
|
}
|
|
|
|
|
|
|
|
AdBlockIcon::~AdBlockIcon()
|
|
|
|
{
|
2011-03-29 20:30:05 +02:00
|
|
|
}
|
|
|
|
|
2012-07-01 18:13:49 +02:00
|
|
|
void AdBlockIcon::popupBlocked(const QString &ruleString, const QUrl &url)
|
2012-02-04 18:45:59 +01:00
|
|
|
{
|
2012-09-04 12:42:45 +02:00
|
|
|
int index = ruleString.lastIndexOf(QLatin1String(" ("));
|
2012-07-01 18:13:49 +02:00
|
|
|
|
2013-12-30 13:43:48 +01:00
|
|
|
const QString subscriptionName = ruleString.left(index);
|
|
|
|
const QString filter = ruleString.mid(index + 2, ruleString.size() - index - 3);
|
2012-07-01 18:13:49 +02:00
|
|
|
AdBlockSubscription* subscription = AdBlockManager::instance()->subscriptionByName(subscriptionName);
|
|
|
|
if (filter.isEmpty() || !subscription) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
AdBlockRule rule(filter, subscription);
|
|
|
|
|
|
|
|
QPair<AdBlockRule, QUrl> pair;
|
2012-02-04 18:45:59 +01:00
|
|
|
pair.first = rule;
|
|
|
|
pair.second = url;
|
|
|
|
m_blockedPopups.append(pair);
|
|
|
|
|
2012-07-08 14:03:50 +02:00
|
|
|
mApp->desktopNotifications()->showNotification(QPixmap(":html/adblock_big.png"), tr("Blocked popup window"), tr("AdBlock blocked unwanted popup window."));
|
2012-02-04 18:45:59 +01:00
|
|
|
|
|
|
|
if (!m_flashTimer) {
|
|
|
|
m_flashTimer = new QTimer(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_flashTimer->isActive()) {
|
|
|
|
stopAnimation();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_flashTimer->setInterval(500);
|
|
|
|
m_flashTimer->start();
|
|
|
|
|
|
|
|
connect(m_flashTimer, SIGNAL(timeout()), this, SLOT(animateIcon()));
|
|
|
|
}
|
|
|
|
|
|
|
|
QAction* AdBlockIcon::menuAction()
|
2011-03-29 20:30:05 +02:00
|
|
|
{
|
2012-02-04 18:45:59 +01:00
|
|
|
if (!m_menuAction) {
|
|
|
|
m_menuAction = new QAction(tr("AdBlock"), this);
|
|
|
|
m_menuAction->setMenu(new QMenu);
|
|
|
|
connect(m_menuAction->menu(), SIGNAL(aboutToShow()), this, SLOT(createMenu()));
|
|
|
|
}
|
|
|
|
|
|
|
|
m_menuAction->setIcon(QIcon(m_enabled ? ":icons/other/adblock.png" : ":icons/other/adblock-disabled.png"));
|
|
|
|
|
|
|
|
return m_menuAction;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AdBlockIcon::createMenu(QMenu* menu)
|
|
|
|
{
|
|
|
|
if (!menu) {
|
|
|
|
menu = qobject_cast<QMenu*>(sender());
|
|
|
|
if (!menu) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
menu->clear();
|
|
|
|
|
2011-03-29 20:30:05 +02:00
|
|
|
AdBlockManager* manager = AdBlockManager::instance();
|
2012-08-09 19:02:25 +02:00
|
|
|
AdBlockCustomList* customList = manager->customList();
|
|
|
|
|
2014-02-19 22:07:21 +01:00
|
|
|
WebPage* page = m_window->weView()->page();
|
2013-12-30 13:43:48 +01:00
|
|
|
const QUrl pageUrl = page->url();
|
2011-03-29 20:30:05 +02:00
|
|
|
|
2012-02-04 18:45:59 +01:00
|
|
|
menu->addAction(tr("Show AdBlock &Settings"), manager, SLOT(showDialog()));
|
|
|
|
menu->addSeparator();
|
2012-08-09 19:02:25 +02:00
|
|
|
|
2012-12-22 12:14:55 +01:00
|
|
|
if (!pageUrl.host().isEmpty() && m_enabled && manager->canRunOnScheme(pageUrl.scheme())) {
|
2013-12-30 13:43:48 +01:00
|
|
|
const QString host = page->url().host().contains(QLatin1String("www.")) ? pageUrl.host().mid(4) : pageUrl.host();
|
|
|
|
const QString hostFilter = QString("@@||%1^$document").arg(host);
|
|
|
|
const QString pageFilter = QString("@@|%1|$document").arg(pageUrl.toString());
|
2012-08-09 19:02:25 +02:00
|
|
|
|
|
|
|
QAction* act = menu->addAction(tr("Disable on %1").arg(host));
|
|
|
|
act->setCheckable(true);
|
|
|
|
act->setChecked(customList->containsFilter(hostFilter));
|
|
|
|
act->setData(hostFilter);
|
|
|
|
connect(act, SIGNAL(triggered()), this, SLOT(toggleCustomFilter()));
|
|
|
|
|
|
|
|
act = menu->addAction(tr("Disable only on this page"));
|
|
|
|
act->setCheckable(true);
|
|
|
|
act->setChecked(customList->containsFilter(pageFilter));
|
|
|
|
act->setData(pageFilter);
|
|
|
|
connect(act, SIGNAL(triggered()), this, SLOT(toggleCustomFilter()));
|
|
|
|
|
|
|
|
menu->addSeparator();
|
|
|
|
}
|
|
|
|
|
2012-02-04 18:45:59 +01:00
|
|
|
if (!m_blockedPopups.isEmpty()) {
|
|
|
|
menu->addAction(tr("Blocked Popup Windows"))->setEnabled(false);
|
|
|
|
for (int i = 0; i < m_blockedPopups.count(); i++) {
|
2012-07-01 18:13:49 +02:00
|
|
|
const QPair<AdBlockRule, QUrl> &pair = m_blockedPopups.at(i);
|
|
|
|
|
2012-02-04 18:45:59 +01:00
|
|
|
QString address = pair.second.toString().right(55);
|
2012-09-04 12:42:45 +02:00
|
|
|
QString actionText = tr("%1 with (%2)").arg(address, pair.first.filter()).replace(QLatin1Char('&'), QLatin1String("&&"));
|
2012-07-01 18:13:49 +02:00
|
|
|
|
|
|
|
QAction* action = menu->addAction(actionText, manager, SLOT(showRule()));
|
2013-02-05 22:33:54 +01:00
|
|
|
action->setData(QVariant::fromValue((void*)&pair.first));
|
2012-02-04 18:45:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
menu->addSeparator();
|
2013-02-26 12:56:11 +01:00
|
|
|
|
|
|
|
QVector<WebPage::AdBlockedEntry> entries = page->adBlockedEntries();
|
2011-11-06 17:01:23 +01:00
|
|
|
if (entries.isEmpty()) {
|
2012-02-04 18:45:59 +01:00
|
|
|
menu->addAction(tr("No content blocked"))->setEnabled(false);
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-29 20:30:05 +02:00
|
|
|
else {
|
2012-02-04 18:45:59 +01:00
|
|
|
menu->addAction(tr("Blocked URL (AdBlock Rule) - click to edit rule"))->setEnabled(false);
|
2013-03-06 09:05:41 +01:00
|
|
|
foreach (const WebPage::AdBlockedEntry &entry, entries) {
|
2011-03-29 20:30:05 +02:00
|
|
|
QString address = entry.url.toString().right(55);
|
2012-09-04 12:42:45 +02:00
|
|
|
QString actionText = tr("%1 with (%2)").arg(address, entry.rule->filter()).replace(QLatin1Char('&'), QLatin1String("&&"));
|
2012-07-01 18:13:49 +02:00
|
|
|
|
|
|
|
QAction* action = menu->addAction(actionText, manager, SLOT(showRule()));
|
2013-02-05 22:33:54 +01:00
|
|
|
action->setData(QVariant::fromValue((void*)entry.rule));
|
2011-03-29 20:30:05 +02:00
|
|
|
}
|
|
|
|
}
|
2012-02-04 18:45:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AdBlockIcon::showMenu(const QPoint &pos)
|
|
|
|
{
|
|
|
|
QMenu menu;
|
|
|
|
createMenu(&menu);
|
2011-03-29 20:30:05 +02:00
|
|
|
|
|
|
|
menu.exec(pos);
|
|
|
|
}
|
|
|
|
|
2012-08-09 19:02:25 +02:00
|
|
|
void AdBlockIcon::toggleCustomFilter()
|
|
|
|
{
|
|
|
|
QAction* action = qobject_cast<QAction*>(sender());
|
|
|
|
if (!action) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-30 13:43:48 +01:00
|
|
|
const QString filter = action->data().toString();
|
2012-08-09 19:02:25 +02:00
|
|
|
AdBlockManager* manager = AdBlockManager::instance();
|
|
|
|
AdBlockCustomList* customList = manager->customList();
|
|
|
|
|
|
|
|
if (customList->containsFilter(filter)) {
|
|
|
|
customList->removeFilter(filter);
|
|
|
|
}
|
|
|
|
else {
|
2013-02-26 10:42:48 +01:00
|
|
|
AdBlockRule* rule = new AdBlockRule(filter, customList);
|
2012-08-09 19:02:25 +02:00
|
|
|
customList->addRule(rule);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-04 18:45:59 +01:00
|
|
|
void AdBlockIcon::animateIcon()
|
|
|
|
{
|
|
|
|
++m_timerTicks;
|
|
|
|
if (m_timerTicks > 10) {
|
|
|
|
stopAnimation();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pixmap()->isNull()) {
|
|
|
|
setPixmap(QPixmap(":icons/other/adblock.png"));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
setPixmap(QPixmap());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AdBlockIcon::stopAnimation()
|
|
|
|
{
|
|
|
|
m_timerTicks = 0;
|
|
|
|
m_flashTimer->stop();
|
|
|
|
disconnect(m_flashTimer, SIGNAL(timeout()), this, SLOT(animateIcon()));
|
|
|
|
|
|
|
|
setEnabled(m_enabled);
|
|
|
|
}
|
|
|
|
|
2011-10-15 16:37:32 +02:00
|
|
|
void AdBlockIcon::setEnabled(bool enabled)
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (enabled) {
|
2011-10-15 16:37:32 +02:00
|
|
|
setPixmap(QPixmap(":icons/other/adblock.png"));
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
|
|
|
else {
|
2011-10-15 16:37:32 +02:00
|
|
|
setPixmap(QPixmap(":icons/other/adblock-disabled.png"));
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2012-02-04 18:45:59 +01:00
|
|
|
|
|
|
|
m_enabled = enabled;
|
2011-10-15 16:37:32 +02:00
|
|
|
}
|