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

141 lines
4.1 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
2011-10-17 09:57:07 +02:00
* Copyright (C) 2010-2011 David Rosca
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"
#define COOKIE_DEBUG
//TODO: black/white listing
2011-03-17 17:03:04 +01:00
CookieJar::CookieJar(QupZilla* mainClass, QObject* parent) :
2011-03-02 16:57:41 +01:00
QNetworkCookieJar(parent)
,p_QupZilla(mainClass)
{
loadSettings();
m_activeProfil = mApp->getActiveProfilPath();
2011-03-02 16:57:41 +01:00
}
void CookieJar::loadSettings()
{
QSettings settings(m_activeProfil+"settings.ini", QSettings::IniFormat);
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();
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)
return QNetworkCookieJar::setCookiesFromUrl(QList<QNetworkCookie>(), url);
QList<QNetworkCookie> newList = cookieList;
QDateTime now = QDateTime::currentDateTime();
foreach (QNetworkCookie cok, newList) {
if (m_allowCookiesFromDomain && !url.toString().contains(cok.domain())) {
#ifdef COOKIE_DEBUG
qDebug() << "purged for domain mismatch" << cok;
#endif
newList.removeOne(cok);
continue;
}
if (m_filterTrackingCookie && cok.expirationDate() > now.addYears(2)) {
#ifdef COOKIE_DEBUG
qDebug() << "purged as tracking " << cok;
#endif
newList.removeOne(cok);
continue;
}
}
return QNetworkCookieJar::setCookiesFromUrl(newList, url);
}
void CookieJar::saveCookies()
{
if (m_deleteOnClose)
return;
QList<QNetworkCookie> allCookies = getAllCookies();
QFile file(m_activeProfil+"cookies.dat");
file.open(QIODevice::WriteOnly);
QDataStream stream(&file);
int count = allCookies.count();
stream << count;
for (int i = 0; i<count; i++) {
stream << allCookies.at(i).toRawForm();
}
file.close();
}
void CookieJar::restoreCookies()
{
if (!QFile::exists(m_activeProfil+"cookies.dat"))
return;
QDateTime now = QDateTime::currentDateTime();
QList<QNetworkCookie> restoredCookies;
QFile file(m_activeProfil+"cookies.dat");
file.open(QIODevice::ReadOnly);
QDataStream stream(&file);
int count;
stream >> count;
for (int i = 0; i<count; i++) {
QByteArray rawForm;
stream >> rawForm;
QNetworkCookie cok = QNetworkCookie::parseCookies(rawForm).at(0);
if (cok.expirationDate() < now)
continue;
if (cok.isSessionCookie())
continue;
restoredCookies.append(cok);
}
file.close();
setAllCookies(restoredCookies);
}
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();
}
}