Correct base directory for adblock subscriptions + more fixes.

This commit is contained in:
Martin Rotter 2015-06-21 21:29:58 +02:00
parent 55c664afc4
commit 48891635fc
9 changed files with 55 additions and 31 deletions

View File

@ -93,8 +93,10 @@
#define PLACEHOLDER_UNREAD_COUNTS "%unread"
#define PLACEHOLDER_ALL_COUNTS "%all"
#define ADBLOCK_FILTERS_HELP "http://adblockplus.org/en/filters"
#define ADBLOCK_EASYLIST_URL "https://easylist-downloads.adblockplus.org/easylist.txt"
#define ADBLOCK_CUSTOM_LIST_FILENAME "customlist.txt"
#define ADBLOCK_BASE_DIRECTORY_NAME "data/adblock"
#define ADBLOCK_FILTERS_HELP "https://adblockplus.org/en/filters"
#define ADBLOCK_EASYLIST_URL "https://easylist-downloads.adblockplus.org/easylist.txt"
#define BACKUP_NAME_SETTINGS "config"
#define BACKUP_SUFFIX_SETTINGS ".ini.backup"

View File

@ -27,6 +27,8 @@ LineEditWithStatus::LineEditWithStatus(QWidget *parent)
: WidgetWithStatus(parent) {
m_wdgInput = new BaseLineEdit(this);
setFocusProxy(m_wdgInput);
// Set correct size for the tool button.
int txt_input_height = m_wdgInput->sizeHint().height();
m_btnStatus->setFixedSize(txt_input_height, txt_input_height);

View File

@ -34,6 +34,10 @@ AdBlockAddSubscriptionDialog::AdBlockAddSubscriptionDialog(QWidget *parent)
setWindowFlags(Qt::MSWindowsFixedSizeDialogHint | Qt::Dialog | Qt::WindowSystemMenuHint);
setWindowIcon(qApp->icons()->fromTheme("web-adblock"));
setTabOrder(m_ui->m_cmbPresets, m_ui->m_txtTitle->lineEdit());
setTabOrder(m_ui->m_txtTitle->lineEdit(), m_ui->m_txtUrl->lineEdit());
setTabOrder(m_ui->m_txtUrl->lineEdit(), m_ui->m_buttonBox);
m_knownSubscriptions << Subscription("EasyList (English)", ADBLOCK_EASYLIST_URL)
<< Subscription("Fanboy's List (English)", "http://www.fanboy.co.nz/adblock/fanboy-adblock.txt")
<< Subscription("Adversity (English)", "http://adversity.googlecode.com/hg/Adversity.txt")

View File

@ -22,6 +22,9 @@
<property name="text">
<string>Title:</string>
</property>
<property name="buddy">
<cstring>m_txtTitle</cstring>
</property>
</widget>
</item>
<item row="2" column="0">
@ -29,6 +32,9 @@
<property name="text">
<string>Address:</string>
</property>
<property name="buddy">
<cstring>m_txtUrl</cstring>
</property>
</widget>
</item>
<item row="4" column="1">

View File

@ -6,7 +6,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>451</width>
<width>535</width>
<height>408</height>
</rect>
</property>
@ -73,19 +73,6 @@
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item row="2" column="0">
@ -120,6 +107,13 @@
</item>
</layout>
</widget>
<tabstops>
<tabstop>m_checkEnable</tabstop>
<tabstop>m_tabs</tabstop>
<tabstop>m_btnOptions</tabstop>
<tabstop>m_txtFilter</tabstop>
<tabstop>m_checkUseLimitedEasyList</tabstop>
</tabstops>
<resources/>
<connections>
<connection>

View File

@ -35,7 +35,7 @@
AdBlockIcon::AdBlockIcon(QWidget *window, QWidget *parent)
: PlainToolButton(parent), m_window(window), m_menuAction(NULL), m_flashTimer(NULL), m_timerTicks(NULL), m_enabled(false) {
: PlainToolButton(parent), m_window(window), m_menuAction(NULL), m_flashTimer(NULL), m_timerTicks(0), m_enabled(false) {
connect(this, SIGNAL(clicked(QPoint)), this, SLOT(showMenu(QPoint)));
connect(AdBlockManager::instance(), SIGNAL(enabledChanged(bool)), this, SLOT(setEnabled(bool)));
}

View File

@ -27,6 +27,7 @@
#include "network-web/silentnetworkaccessmanager.h"
#include "miscellaneous/application.h"
#include "miscellaneous/settings.h"
#include "definitions/definitions.h"
#include "gui/formmain.h"
#include <QDateTime>
@ -36,11 +37,11 @@
#include <QWebFrame>
AdBlockManager* AdBlockManager::s_adBlockManager = NULL;
AdBlockManager *AdBlockManager::s_adBlockManager = NULL;
AdBlockManager::AdBlockManager(QObject* parent)
: QObject(parent), m_loaded(false), m_enabled(false), m_useLimitedEasyList(true),
m_matcher(new AdBlockMatcher(this)), m_subscriptions(QList<AdBlockSubscription*>()) {
m_subscriptions(QList<AdBlockSubscription*>()), m_matcher(new AdBlockMatcher(this)) {
load();
}
@ -85,21 +86,21 @@ QNetworkReply *AdBlockManager::block(const QNetworkRequest &request) {
return NULL;
}
const AdBlockRule* blocked_rule = m_matcher->match(request, url_domain, url_string);
const AdBlockRule *blocked_rule = m_matcher->match(request, url_domain, url_string);
if (blocked_rule != NULL) {
QVariant v = request.attribute((QNetworkRequest::Attribute)(QNetworkRequest::User + 100));
WebPage* webPage = static_cast<WebPage*>(v.value<void*>());
WebPage *web_page = static_cast<WebPage*>(v.value<void*>());
if (WebPage::isPointerSafeToUse(webPage)) {
if (!canBeBlocked(webPage->mainFrame()->url())) {
if (WebPage::isPointerSafeToUse(web_page)) {
if (!canBeBlocked(web_page->mainFrame()->url())) {
return NULL;
}
webPage->addAdBlockRule(blocked_rule, request.url());
web_page->addAdBlockRule(blocked_rule, request.url());
}
AdBlockBlockedNetworkReply* reply = new AdBlockBlockedNetworkReply(blocked_rule, this);
AdBlockBlockedNetworkReply *reply = new AdBlockBlockedNetworkReply(blocked_rule, this);
reply->setRequest(request);
return reply;
@ -126,7 +127,7 @@ AdBlockSubscription *AdBlockManager::addSubscription(const QString &title, const
}
QString file_name = IOFactory::filterBadCharsFromFilename(title.toLower()) + QL1S(".txt");
QString file_path = IOFactory::ensureUniqueFilename(qApp->homeFolderPath() + QL1S("/adblock/") + file_name);
QString file_path = IOFactory::ensureUniqueFilename(baseSubscriptionDirectory() + QDir::separator() + file_name);
QFile file(file_path);
if (!file.open(QFile::WriteOnly | QFile::Truncate | QFile::Unbuffered)) {
@ -180,6 +181,21 @@ AdBlockCustomList *AdBlockManager::customList() const {
return NULL;
}
QString AdBlockManager::baseSubscriptionDirectory() {
QString directory;
if (qApp->settings()->type() == SettingsProperties::Portable) {
directory = qApp->applicationDirPath();
}
else {
directory = qApp->homeFolderPath() + QDir::separator() + QString(APP_LOW_H_NAME);
}
directory += QDir::separator() + ADBLOCK_BASE_DIRECTORY_NAME;
return QDir::toNativeSeparators(directory);
}
bool AdBlockManager::shouldBeEnabled() {
return qApp->settings()->value(GROUP(AdBlock), SETTING(AdBlock::Enabled)).toBool();
}
@ -202,14 +218,14 @@ void AdBlockManager::load() {
return;
}
QDir adblock_dir(qApp->homeFolderPath() + QL1S("/adblock"));
QDir adblock_dir(baseSubscriptionDirectory());
if (!adblock_dir.exists()) {
QDir(qApp->homeFolderPath()).mkdir(QSL("adblock"));
adblock_dir.mkpath(adblock_dir.absolutePath());
}
foreach (const QString &file_name, adblock_dir.entryList(QStringList(QL1S("*.txt")), QDir::Files)) {
if (file_name == QSL("customlist.txt")) {
if (file_name == QSL(ADBLOCK_CUSTOM_LIST_FILENAME)) {
continue;
}

View File

@ -71,6 +71,7 @@ class AdBlockManager : public QObject {
bool shouldBeEnabled();
static QString baseSubscriptionDirectory();
static AdBlockManager *instance();
signals:

View File

@ -299,8 +299,7 @@ AdBlockSubscription::~AdBlockSubscription() {
AdBlockCustomList::AdBlockCustomList(QObject *parent) : AdBlockSubscription(tr("Custom rules"), parent) {
setTitle(tr("Custom rules"));
// TODO cesta
setFilePath(qApp->homeFolderPath() + "/adblock/customlist.txt");
setFilePath(AdBlockManager::baseSubscriptionDirectory() + QDir::separator() + ADBLOCK_CUSTOM_LIST_FILENAME);
}
AdBlockCustomList::~AdBlockCustomList() {