2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01: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/>.
|
|
|
|
* ============================================================ */
|
2011-03-02 16:57:41 +01:00
|
|
|
#include "cookiemanager.h"
|
|
|
|
#include "ui_cookiemanager.h"
|
|
|
|
#include "qupzilla.h"
|
|
|
|
#include "cookiejar.h"
|
|
|
|
#include "mainapplication.h"
|
2011-09-21 14:20:49 +02:00
|
|
|
#include "globalfunctions.h"
|
2012-02-17 18:55:34 +01:00
|
|
|
#include "settings.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QShortcut>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QInputDialog>
|
|
|
|
#include <QCloseEvent>
|
|
|
|
|
2011-10-26 19:23:50 +02:00
|
|
|
CookieManager::CookieManager(QWidget* parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
, ui(new Ui::CookieManager)
|
2012-02-13 16:59:30 +01:00
|
|
|
, m_refreshCookieJar(true)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2011-09-21 14:20:49 +02:00
|
|
|
qz_centerWidgetOnScreen(this);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-17 18:55:34 +01:00
|
|
|
// Stored Cookies
|
2011-11-06 17:01:23 +01:00
|
|
|
connect(ui->cookieTree, SIGNAL(currentItemChanged(QTreeWidgetItem*, QTreeWidgetItem*)), this, SLOT(currentItemChanged(QTreeWidgetItem*, QTreeWidgetItem*)));
|
2011-03-02 16:57:41 +01:00
|
|
|
connect(ui->removeAll, SIGNAL(clicked()), this, SLOT(removeAll()));
|
2011-11-06 12:05:16 +01:00
|
|
|
connect(ui->removeOne, SIGNAL(clicked()), this, SLOT(removeCookie()));
|
2012-02-17 18:55:34 +01:00
|
|
|
connect(ui->close, SIGNAL(clicked(QAbstractButton*)), this, SLOT(close()));
|
|
|
|
connect(ui->close2, SIGNAL(clicked(QAbstractButton*)), this, SLOT(close()));
|
2011-07-30 17:57:14 +02:00
|
|
|
connect(ui->search, SIGNAL(textChanged(QString)), ui->cookieTree, SLOT(filterString(QString)));
|
2012-02-17 18:55:34 +01:00
|
|
|
// Cookie Filtering
|
|
|
|
connect(ui->whiteAdd, SIGNAL(clicked()), this, SLOT(addWhitelist()));
|
|
|
|
connect(ui->whiteRemove, SIGNAL(clicked()), this, SLOT(removeWhitelist()));
|
|
|
|
connect(ui->blackAdd, SIGNAL(clicked()), this, SLOT(addBlacklist()));
|
|
|
|
connect(ui->blackRemove, SIGNAL(clicked()), this, SLOT(removeBlacklist()));
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
ui->search->setInactiveText(tr("Search"));
|
2011-07-30 17:57:14 +02:00
|
|
|
ui->cookieTree->setDefaultItemShowMode(TreeWidget::ItemsCollapsed);
|
2011-12-10 13:15:07 +01:00
|
|
|
ui->cookieTree->sortItems(0, Qt::AscendingOrder);
|
2012-02-17 18:55:34 +01:00
|
|
|
ui->cookieTree->header()->setDefaultSectionSize(220);
|
|
|
|
ui->cookieTree->setFocus();
|
2012-02-13 18:22:24 +01:00
|
|
|
|
|
|
|
QShortcut* removeShortcut = new QShortcut(QKeySequence("Del"), this);
|
2012-02-17 18:55:34 +01:00
|
|
|
connect(removeShortcut, SIGNAL(activated()), this, SLOT(deletePressed()));
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CookieManager::removeAll()
|
|
|
|
{
|
|
|
|
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
2011-11-06 17:01:23 +01:00
|
|
|
tr("Are you sure to delete all cookies on your computer?"), QMessageBox::Yes | QMessageBox::No);
|
|
|
|
if (button != QMessageBox::Yes) {
|
2011-03-02 16:57:41 +01:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-13 18:22:24 +01:00
|
|
|
QList<QNetworkCookie> emptyList;
|
|
|
|
mApp->cookieJar()->setAllCookies(emptyList);
|
2011-03-02 16:57:41 +01:00
|
|
|
ui->cookieTree->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CookieManager::removeCookie()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem* current = ui->cookieTree->currentItem();
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!current) {
|
2011-03-02 16:57:41 +01:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-13 18:22:24 +01:00
|
|
|
QList<QNetworkCookie> allCookies = mApp->cookieJar()->getAllCookies();
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
if (current->text(1).isEmpty()) { //Remove whole cookie group
|
2012-03-13 17:51:06 +01:00
|
|
|
const QString &domain = current->data(0, Qt::UserRole + 10).toString();
|
2012-02-13 18:22:24 +01:00
|
|
|
foreach(const QNetworkCookie & cookie, allCookies) {
|
2012-03-13 17:51:06 +01:00
|
|
|
if (cookie.domain() == domain || cookie.domain() == domain.mid(1)) {
|
2012-02-13 18:22:24 +01:00
|
|
|
allCookies.removeOne(cookie);
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-02-13 16:59:30 +01:00
|
|
|
ui->cookieTree->deleteItem(current);
|
2011-11-06 12:05:16 +01:00
|
|
|
}
|
|
|
|
else {
|
2012-02-13 18:22:24 +01:00
|
|
|
const QNetworkCookie &cookie = qvariant_cast<QNetworkCookie>(current->data(0, Qt::UserRole + 10));
|
|
|
|
allCookies.removeOne(cookie);
|
2012-02-13 16:59:30 +01:00
|
|
|
|
2012-02-17 18:55:34 +01:00
|
|
|
QTreeWidgetItem* parentItem = current->parent();
|
2012-02-13 16:59:30 +01:00
|
|
|
ui->cookieTree->deleteItem(current);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-17 18:55:34 +01:00
|
|
|
if (parentItem->childCount() == 0) {
|
|
|
|
ui->cookieTree->deleteItem(parentItem);
|
2012-02-13 16:59:30 +01:00
|
|
|
}
|
2011-11-06 12:05:16 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-17 18:55:34 +01:00
|
|
|
mApp->cookieJar()->setAllCookies(allCookies);
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-03-17 17:03:04 +01:00
|
|
|
void CookieManager::currentItemChanged(QTreeWidgetItem* current, QTreeWidgetItem* parent)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_UNUSED(parent);
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!current) {
|
2011-03-02 16:57:41 +01:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
if (current->text(1).isEmpty()) {
|
|
|
|
ui->name->setText(tr("<cookie not selected>"));
|
|
|
|
ui->value->setText(tr("<cookie not selected>"));
|
|
|
|
ui->server->setText(tr("<cookie not selected>"));
|
|
|
|
ui->path->setText(tr("<cookie not selected>"));
|
|
|
|
ui->secure->setText(tr("<cookie not selected>"));
|
|
|
|
ui->expiration->setText(tr("<cookie not selected>"));
|
2011-11-06 12:05:16 +01:00
|
|
|
|
|
|
|
ui->removeOne->setText(tr("Remove cookies"));
|
2011-03-02 16:57:41 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-11-06 12:05:16 +01:00
|
|
|
|
2012-02-13 18:22:24 +01:00
|
|
|
const QNetworkCookie &cookie = qvariant_cast<QNetworkCookie>(current->data(0, Qt::UserRole + 10));
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-13 18:22:24 +01:00
|
|
|
ui->name->setText(cookie.name());
|
|
|
|
ui->value->setText(cookie.value());
|
|
|
|
ui->server->setText(cookie.domain());
|
|
|
|
ui->path->setText(cookie.path());
|
|
|
|
cookie.isSecure() ? ui->secure->setText(tr("Secure only")) : ui->secure->setText(tr("All connections"));
|
|
|
|
cookie.isSessionCookie() ? ui->expiration->setText(tr("Session cookie")) : ui->expiration->setText(QDateTime(cookie.expirationDate()).toString("hh:mm:ss dddd d. MMMM yyyy"));
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-13 18:22:24 +01:00
|
|
|
ui->removeOne->setText(tr("Remove cookie"));
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-02-13 18:22:24 +01:00
|
|
|
void CookieManager::refreshTable()
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2012-02-13 16:59:30 +01:00
|
|
|
QTimer::singleShot(0, this, SLOT(slotRefreshTable()));
|
2012-02-17 18:55:34 +01:00
|
|
|
QTimer::singleShot(0, this, SLOT(slotRefreshFilters()));
|
2012-02-13 16:59:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CookieManager::slotRefreshTable()
|
|
|
|
{
|
2012-06-15 17:43:19 +02:00
|
|
|
const QList<QNetworkCookie> &allCookies = mApp->cookieJar()->getAllCookies();
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-13 16:59:30 +01:00
|
|
|
QApplication::setOverrideCursor(Qt::WaitCursor);
|
2011-03-02 16:57:41 +01:00
|
|
|
ui->cookieTree->clear();
|
|
|
|
|
2012-02-13 16:59:30 +01:00
|
|
|
int counter = 0;
|
2012-04-02 16:00:08 +02:00
|
|
|
QWeakPointer<CookieManager> guard = this;
|
2012-02-17 16:45:18 +01:00
|
|
|
QHash<QString, QTreeWidgetItem*> hash;
|
2012-02-13 18:22:24 +01:00
|
|
|
for (int i = 0; i < allCookies.count(); ++i) {
|
2012-02-15 21:21:16 +01:00
|
|
|
const QNetworkCookie &cookie = allCookies.at(i);
|
2011-03-02 16:57:41 +01:00
|
|
|
QTreeWidgetItem* item;
|
|
|
|
|
2012-02-17 16:45:18 +01:00
|
|
|
QString cookieDomain = cookie.domain();
|
2012-02-13 18:22:24 +01:00
|
|
|
if (cookieDomain.startsWith(".")) {
|
|
|
|
cookieDomain = cookieDomain.mid(1);
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-17 16:45:18 +01:00
|
|
|
QTreeWidgetItem* findParent = hash[cookieDomain];
|
|
|
|
if (findParent) {
|
|
|
|
item = new QTreeWidgetItem(findParent);
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
|
|
|
else {
|
2011-03-02 16:57:41 +01:00
|
|
|
QTreeWidgetItem* newParent = new QTreeWidgetItem(ui->cookieTree);
|
2012-02-13 18:22:24 +01:00
|
|
|
newParent->setText(0, cookieDomain);
|
2011-03-02 16:57:41 +01:00
|
|
|
newParent->setIcon(0, style()->standardIcon(QStyle::SP_DirIcon));
|
2012-03-13 17:51:06 +01:00
|
|
|
newParent->setData(0, Qt::UserRole + 10, cookie.domain());
|
2011-03-02 16:57:41 +01:00
|
|
|
ui->cookieTree->addTopLevelItem(newParent);
|
2012-02-17 16:45:18 +01:00
|
|
|
hash[cookieDomain] = newParent;
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
item = new QTreeWidgetItem(newParent);
|
|
|
|
}
|
|
|
|
|
2012-02-13 18:22:24 +01:00
|
|
|
item->setText(0, "." + cookieDomain);
|
|
|
|
item->setText(1, cookie.name());
|
|
|
|
item->setData(0, Qt::UserRole + 10, qVariantFromValue(cookie));
|
2011-03-02 16:57:41 +01:00
|
|
|
ui->cookieTree->addTopLevelItem(item);
|
2012-02-13 16:59:30 +01:00
|
|
|
|
|
|
|
++counter;
|
2012-02-17 16:45:18 +01:00
|
|
|
if (counter > 200) {
|
2012-02-13 16:59:30 +01:00
|
|
|
QApplication::processEvents();
|
|
|
|
counter = 0;
|
|
|
|
}
|
2012-04-02 16:00:08 +02:00
|
|
|
|
|
|
|
if (!guard) {
|
|
|
|
break;
|
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-02-13 16:59:30 +01:00
|
|
|
QApplication::restoreOverrideCursor();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-02-17 18:55:34 +01:00
|
|
|
void CookieManager::slotRefreshFilters()
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2012-02-17 18:55:34 +01:00
|
|
|
Settings settings;
|
|
|
|
settings.beginGroup("Cookie-Settings");
|
|
|
|
QStringList whiteList = settings.value("whitelist", QStringList()).toStringList();
|
|
|
|
QStringList blackList = settings.value("blacklist", QStringList()).toStringList();
|
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
ui->whiteList->addItems(whiteList);
|
|
|
|
ui->blackList->addItems(blackList);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CookieManager::addWhitelist()
|
|
|
|
{
|
|
|
|
const QString &server = QInputDialog::getText(this, tr("Add to whitelist"), tr("Server:"));
|
|
|
|
if (server.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->whiteList->addItem(server);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CookieManager::removeWhitelist()
|
|
|
|
{
|
|
|
|
QListWidgetItem* current = ui->whiteList->currentItem();
|
|
|
|
if (!current) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete current;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CookieManager::addBlacklist()
|
|
|
|
{
|
|
|
|
const QString &server = QInputDialog::getText(this, tr("Add to blacklist"), tr("Server:"));
|
|
|
|
if (server.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->blackList->addItem(server);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CookieManager::removeBlacklist()
|
|
|
|
{
|
|
|
|
QListWidgetItem* current = ui->blackList->currentItem();
|
|
|
|
if (!current) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete current;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CookieManager::deletePressed()
|
|
|
|
{
|
|
|
|
if (ui->cookieTree->hasFocus()) {
|
|
|
|
removeCookie();
|
|
|
|
}
|
|
|
|
else if (ui->whiteList->hasFocus()) {
|
|
|
|
removeWhitelist();
|
|
|
|
}
|
|
|
|
else if (ui->blackList->hasFocus()) {
|
|
|
|
removeBlacklist();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CookieManager::closeEvent(QCloseEvent* e)
|
|
|
|
{
|
|
|
|
QStringList whitelist;
|
|
|
|
QStringList blacklist;
|
|
|
|
|
|
|
|
for (int i = 0; i < ui->whiteList->count(); ++i) {
|
|
|
|
whitelist.append(ui->whiteList->item(i)->text());
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < ui->blackList->count(); ++i) {
|
|
|
|
blacklist.append(ui->blackList->item(i)->text());
|
|
|
|
}
|
|
|
|
|
|
|
|
Settings settings;
|
|
|
|
settings.beginGroup("Cookie-Settings");
|
|
|
|
settings.setValue("whitelist", whitelist);
|
|
|
|
settings.setValue("blacklist", blacklist);
|
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
mApp->cookieJar()->loadSettings();
|
|
|
|
|
|
|
|
e->accept();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-04-20 14:49:16 +02:00
|
|
|
void CookieManager::keyPressEvent(QKeyEvent* e)
|
|
|
|
{
|
|
|
|
if (e->key() == Qt::Key_Escape) {
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget::keyPressEvent(e);
|
|
|
|
}
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
CookieManager::~CookieManager()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|