1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-13 10:32:11 +01:00
falkonOfficial/src/cookies/cookiejar.cpp

165 lines
4.4 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
* 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 "cookiejar.h"
#include "qupzilla.h"
#include "settings.h"
//#define COOKIE_DEBUG
2011-03-02 16:57:41 +01:00
//TODO: black/white listing
CookieJar::CookieJar(QupZilla* mainClass, QObject* parent)
: QNetworkCookieJar(parent)
, p_QupZilla(mainClass)
2011-03-02 16:57:41 +01:00
{
m_activeProfil = mApp->getActiveProfilPath();
loadSettings();
2011-03-02 16:57:41 +01:00
}
void CookieJar::loadSettings()
{
Settings settings;
2011-03-02 16:57:41 +01:00
settings.beginGroup("Web-Browser-Settings");
m_allowCookies = settings.value("allowCookies", true).toBool();
m_allowCookiesFromDomain = settings.value("allowCookiesFromVisitedDomainOnly", false).toBool();
m_filterTrackingCookie = settings.value("filterTrackingCookie", false).toBool();
2011-03-02 16:57:41 +01:00
m_deleteOnClose = settings.value("deleteCookiesOnClose", false).toBool();
}
void CookieJar::setAllowCookies(bool allow)
{
m_allowCookies = allow;
}
bool CookieJar::setCookiesFromUrl(const QList<QNetworkCookie> &cookieList, const QUrl &url)
{
if (!m_allowCookies) {
2011-03-02 16:57:41 +01:00
return QNetworkCookieJar::setCookiesFromUrl(QList<QNetworkCookie>(), url);
}
2011-03-02 16:57:41 +01:00
QList<QNetworkCookie> newList = cookieList;
foreach(QNetworkCookie cok, newList) {
if (m_allowCookiesFromDomain && !QString("." + url.host()).contains(cok.domain().remove("www."))) {
2011-03-02 16:57:41 +01:00
#ifdef COOKIE_DEBUG
qDebug() << "purged for domain mismatch" << cok;
#endif
newList.removeOne(cok);
continue;
}
if (m_filterTrackingCookie && cok.name().startsWith("__utm")) {
2011-03-02 16:57:41 +01:00
#ifdef COOKIE_DEBUG
qDebug() << "purged as tracking " << cok;
#endif
newList.removeOne(cok);
continue;
}
}
return QNetworkCookieJar::setCookiesFromUrl(newList, url);
}
void CookieJar::saveCookies()
{
if (m_deleteOnClose) {
2011-03-02 16:57:41 +01:00
return;
}
2011-03-02 16:57:41 +01:00
QList<QNetworkCookie> allCookies;
if (m_tempList.isEmpty()) {
allCookies = getAllCookies();
}
else {
allCookies = m_tempList;
}
QFile file(m_activeProfil + "cookies.dat");
2011-03-02 16:57:41 +01:00
file.open(QIODevice::WriteOnly);
QDataStream stream(&file);
int count = allCookies.count();
stream << count;
for (int i = 0; i < count; i++) {
2011-03-02 16:57:41 +01:00
stream << allCookies.at(i).toRawForm();
}
file.close();
}
void CookieJar::restoreCookies()
{
if (!QFile::exists(m_activeProfil + "cookies.dat")) {
2011-03-02 16:57:41 +01:00
return;
}
2011-03-02 16:57:41 +01:00
QDateTime now = QDateTime::currentDateTime();
QList<QNetworkCookie> restoredCookies;
QFile file(m_activeProfil + "cookies.dat");
2011-03-02 16:57:41 +01:00
file.open(QIODevice::ReadOnly);
QDataStream stream(&file);
int count;
stream >> count;
for (int i = 0; i < count; i++) {
2011-03-02 16:57:41 +01:00
QByteArray rawForm;
stream >> rawForm;
QNetworkCookie cok = QNetworkCookie::parseCookies(rawForm).at(0);
if (cok.expirationDate() < now) {
2011-03-02 16:57:41 +01:00
continue;
}
if (cok.isSessionCookie()) {
2011-03-02 16:57:41 +01:00
continue;
}
2011-03-02 16:57:41 +01:00
restoredCookies.append(cok);
}
file.close();
setAllCookies(restoredCookies);
}
void CookieJar::clearCookies()
{
if (m_tempList.isEmpty()) {
setAllCookies(QList<QNetworkCookie>());
}
else {
m_tempList.clear();
}
}
2011-03-02 16:57:41 +01:00
QList<QNetworkCookie> CookieJar::getAllCookies()
{
return QNetworkCookieJar::allCookies();
}
void CookieJar::setAllCookies(const QList<QNetworkCookie> &cookieList)
{
QNetworkCookieJar::setAllCookies(cookieList);
}
void CookieJar::turnPrivateJar(bool state)
{
if (state) {
m_tempList = QNetworkCookieJar::allCookies();
QNetworkCookieJar::setAllCookies(QList<QNetworkCookie>());
}
else {
QNetworkCookieJar::setAllCookies(m_tempList);
m_tempList.clear();
}
}