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 "clearprivatedata.h"
|
|
|
|
#include "qupzilla.h"
|
2012-01-21 23:19:38 +01:00
|
|
|
#include "tabwidget.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
#include "cookiejar.h"
|
2012-04-30 16:33:14 +02:00
|
|
|
#include "history.h"
|
2012-04-20 15:29:04 +02:00
|
|
|
#include "settings.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
#include "mainapplication.h"
|
|
|
|
#include "networkmanager.h"
|
|
|
|
#include "clickablelabel.h"
|
2011-03-18 16:08:24 +01:00
|
|
|
#include "ui_clearprivatedata.h"
|
2011-04-28 18:31:48 +02:00
|
|
|
#include "iconprovider.h"
|
2012-03-23 17:29:12 +01:00
|
|
|
#include "globalfunctions.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-03-23 17:29:12 +01:00
|
|
|
#include <QWebDatabase>
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QWebSettings>
|
|
|
|
#include <QNetworkDiskCache>
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QSqlQuery>
|
2012-04-20 15:29:04 +02:00
|
|
|
#include <QCloseEvent>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2011-10-26 19:23:50 +02:00
|
|
|
ClearPrivateData::ClearPrivateData(QupZilla* mainClass, QWidget* parent)
|
|
|
|
: QDialog(parent)
|
|
|
|
, p_QupZilla(mainClass)
|
|
|
|
, ui(new Ui::ClearPrivateData)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-03-18 18:35:09 +01:00
|
|
|
ui->setupUi(this);
|
|
|
|
ui->buttonBox->setFocus();
|
|
|
|
connect(ui->clearAdobeCookies, SIGNAL(clicked(QPoint)), this, SLOT(clearFlash()));
|
|
|
|
connect(ui->history, SIGNAL(clicked(bool)), this, SLOT(historyClicked(bool)));
|
|
|
|
connect(ui->buttonBox, SIGNAL(accepted()), this, SLOT(dialogAccepted()));
|
2011-10-26 19:23:50 +02:00
|
|
|
|
|
|
|
//Resizing +2 of sizeHint to get visible underlined link
|
|
|
|
resize(sizeHint().width(), sizeHint().height() + 2);
|
2012-04-20 15:29:04 +02:00
|
|
|
|
|
|
|
Settings settings;
|
|
|
|
settings.beginGroup("ClearPrivateData");
|
|
|
|
restoreState(settings.value("state", QByteArray()).toByteArray());
|
|
|
|
settings.endGroup();
|
2011-03-18 18:35:09 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-03-18 18:35:09 +01:00
|
|
|
void ClearPrivateData::historyClicked(bool state)
|
|
|
|
{
|
|
|
|
ui->historyLength->setEnabled(state);
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-03-23 17:29:12 +01:00
|
|
|
void ClearPrivateData::clearLocalStorage()
|
|
|
|
{
|
2012-04-04 18:48:54 +02:00
|
|
|
const QString &profile = mApp->currentProfilePath();
|
2012-03-23 17:29:12 +01:00
|
|
|
|
|
|
|
qz_removeDir(profile + "LocalStorage");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClearPrivateData::clearWebDatabases()
|
|
|
|
{
|
2012-04-04 18:48:54 +02:00
|
|
|
const QString &profile = mApp->currentProfilePath();
|
2012-03-23 17:29:12 +01:00
|
|
|
|
|
|
|
QWebDatabase::removeAllDatabases();
|
|
|
|
qz_removeDir(profile + "Databases");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClearPrivateData::clearCache()
|
|
|
|
{
|
2012-06-15 17:43:19 +02:00
|
|
|
mApp->networkCache()->clear();
|
2012-03-23 17:29:12 +01:00
|
|
|
mApp->webSettings()->clearMemoryCaches();
|
|
|
|
|
2012-04-04 18:48:54 +02:00
|
|
|
QFile::remove(mApp->currentProfilePath() + "ApplicationCache.db");
|
2012-03-23 17:29:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClearPrivateData::clearIcons()
|
|
|
|
{
|
|
|
|
mApp->webSettings()->clearIconDatabase();
|
2012-04-22 20:51:28 +02:00
|
|
|
qIconProvider->clearIconDatabase();
|
2012-03-23 17:29:12 +01:00
|
|
|
}
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
void ClearPrivateData::clearFlash()
|
|
|
|
{
|
2011-03-18 18:35:09 +01:00
|
|
|
p_QupZilla->tabWidget()->addView(QUrl("http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html"));
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-04-20 15:29:04 +02:00
|
|
|
void ClearPrivateData::closeEvent(QCloseEvent* e)
|
|
|
|
{
|
|
|
|
Settings settings;
|
|
|
|
settings.beginGroup("ClearPrivateData");
|
|
|
|
settings.setValue("state", saveState());
|
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
e->accept();
|
|
|
|
}
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
void ClearPrivateData::dialogAccepted()
|
|
|
|
{
|
2011-07-30 17:57:14 +02:00
|
|
|
QApplication::setOverrideCursor(Qt::WaitCursor);
|
2012-03-23 17:29:12 +01:00
|
|
|
|
2011-03-18 18:35:09 +01:00
|
|
|
if (ui->history->isChecked()) {
|
2012-04-30 16:33:14 +02:00
|
|
|
qint64 start = QDateTime::currentMSecsSinceEpoch();
|
|
|
|
qint64 end = 0;
|
|
|
|
|
|
|
|
const QDate &today = QDate::currentDate();
|
|
|
|
const QDate &week = today.addDays(1 - today.dayOfWeek());
|
|
|
|
const QDate &month = QDate(today.year(), today.month(), 1);
|
2011-03-18 18:35:09 +01:00
|
|
|
|
|
|
|
switch (ui->historyLength->currentIndex()) {
|
|
|
|
case 0: //Later Today
|
2012-04-30 16:33:14 +02:00
|
|
|
end = QDateTime(today).toMSecsSinceEpoch();
|
2011-03-18 18:35:09 +01:00
|
|
|
break;
|
|
|
|
case 1: //Week
|
2012-04-30 16:33:14 +02:00
|
|
|
end = QDateTime(week).toMSecsSinceEpoch();
|
2011-03-18 18:35:09 +01:00
|
|
|
break;
|
|
|
|
case 2: //Month
|
2012-04-30 16:33:14 +02:00
|
|
|
end = QDateTime(month).toMSecsSinceEpoch();
|
2011-03-18 18:35:09 +01:00
|
|
|
break;
|
|
|
|
case 3: //All
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-04-30 16:33:14 +02:00
|
|
|
if (end == 0) {
|
|
|
|
mApp->history()->clearHistory();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const QList<int> &indexes = mApp->history()->indexesFromTimeRange(start, end);
|
|
|
|
mApp->history()->deleteHistoryEntry(indexes);
|
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
2012-03-23 17:29:12 +01:00
|
|
|
|
2011-03-18 18:35:09 +01:00
|
|
|
if (ui->cookies->isChecked()) {
|
2012-03-23 17:29:12 +01:00
|
|
|
mApp->cookieJar()->setAllCookies(QList<QNetworkCookie>());
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
2012-03-23 17:29:12 +01:00
|
|
|
|
2011-03-18 18:35:09 +01:00
|
|
|
if (ui->cache->isChecked()) {
|
2012-03-23 17:29:12 +01:00
|
|
|
clearCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ui->databases->isChecked()) {
|
|
|
|
clearWebDatabases();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ui->localStorage->isChecked()) {
|
|
|
|
clearLocalStorage();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
2012-03-23 17:29:12 +01:00
|
|
|
|
2011-03-18 18:35:09 +01:00
|
|
|
if (ui->icons->isChecked()) {
|
2012-03-23 17:29:12 +01:00
|
|
|
clearIcons();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
2012-03-23 17:29:12 +01:00
|
|
|
|
2011-07-30 17:57:14 +02:00
|
|
|
QApplication::restoreOverrideCursor();
|
2012-03-23 17:29:12 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
close();
|
|
|
|
}
|
2012-04-20 15:29:04 +02:00
|
|
|
|
|
|
|
static const int stateDataVersion = 0x0001;
|
|
|
|
|
|
|
|
void ClearPrivateData::restoreState(const QByteArray &state)
|
|
|
|
{
|
|
|
|
QDataStream stream(state);
|
|
|
|
if (stream.atEnd()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int version = -1;
|
|
|
|
int historyIndex = -1;
|
|
|
|
bool databases = false;
|
|
|
|
bool localStorage = false;
|
|
|
|
bool cache = false;
|
|
|
|
bool cookies = false;
|
|
|
|
bool icons = false;
|
|
|
|
|
|
|
|
stream >> version;
|
|
|
|
if (version != stateDataVersion) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream >> historyIndex;
|
|
|
|
stream >> databases;
|
|
|
|
stream >> localStorage;
|
|
|
|
stream >> cache;
|
|
|
|
stream >> cookies;
|
|
|
|
stream >> icons;
|
|
|
|
|
|
|
|
if (historyIndex != -1) {
|
|
|
|
ui->history->setChecked(true);
|
|
|
|
ui->historyLength->setEnabled(true);
|
|
|
|
ui->historyLength->setCurrentIndex(historyIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->databases->setChecked(databases);
|
|
|
|
ui->localStorage->setChecked(localStorage);
|
|
|
|
ui->cache->setChecked(cache);
|
|
|
|
ui->cookies->setChecked(cookies);
|
|
|
|
ui->icons->setChecked(icons);
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray ClearPrivateData::saveState()
|
|
|
|
{
|
|
|
|
// history - web database - local storage - cache - cookies - icons
|
|
|
|
QByteArray data;
|
|
|
|
QDataStream stream(&data, QIODevice::WriteOnly);
|
|
|
|
|
|
|
|
stream << stateDataVersion;
|
|
|
|
|
|
|
|
if (!ui->history->isChecked()) {
|
|
|
|
stream << -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
stream << ui->historyLength->currentIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
stream << ui->databases->isChecked();
|
|
|
|
stream << ui->localStorage->isChecked();
|
|
|
|
stream << ui->cache->isChecked();
|
|
|
|
stream << ui->cookies->isChecked();
|
|
|
|
stream << ui->icons->isChecked();
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|