initial non-persistent support for cookies, #391

This commit is contained in:
Martin Rotter 2021-03-23 10:07:26 +01:00
parent edfb956cd9
commit bfe019f22c
9 changed files with 120 additions and 5 deletions

View File

@ -78,6 +78,7 @@
#define DOWNLOADER_ICON_SIZE 48 #define DOWNLOADER_ICON_SIZE 48
#define ENCRYPTION_FILE_NAME "key.private" #define ENCRYPTION_FILE_NAME "key.private"
#define RELOAD_MODEL_BORDER_NUM 10 #define RELOAD_MODEL_BORDER_NUM 10
#define COOKIE_URL_IDENTIFIER ":COOKIE:"
#define GOOGLE_SEARCH_URL "https://www.google.com/search?q=%1&ie=utf-8&oe=utf-8" #define GOOGLE_SEARCH_URL "https://www.google.com/search?q=%1&ie=utf-8&oe=utf-8"
#define GOOGLE_SUGGEST_URL "http://suggestqueries.google.com/complete/search?output=toolbar&hl=en&q=%1" #define GOOGLE_SUGGEST_URL "http://suggestqueries.google.com/complete/search?output=toolbar&hl=en&q=%1"

View File

@ -128,6 +128,7 @@ HEADERS += core/feeddownloader.h \
miscellaneous/templates.h \ miscellaneous/templates.h \
miscellaneous/textfactory.h \ miscellaneous/textfactory.h \
network-web/basenetworkaccessmanager.h \ network-web/basenetworkaccessmanager.h \
network-web/cookiejar.h \
network-web/downloader.h \ network-web/downloader.h \
network-web/downloadmanager.h \ network-web/downloadmanager.h \
network-web/httpresponse.h \ network-web/httpresponse.h \
@ -302,6 +303,7 @@ SOURCES += core/feeddownloader.cpp \
miscellaneous/systemfactory.cpp \ miscellaneous/systemfactory.cpp \
miscellaneous/textfactory.cpp \ miscellaneous/textfactory.cpp \
network-web/basenetworkaccessmanager.cpp \ network-web/basenetworkaccessmanager.cpp \
network-web/cookiejar.cpp \
network-web/downloader.cpp \ network-web/downloader.cpp \
network-web/downloadmanager.cpp \ network-web/downloadmanager.cpp \
network-web/httpresponse.cpp \ network-web/httpresponse.cpp \

View File

@ -0,0 +1,48 @@
// For license of this file, see <project-root-folder>/LICENSE.md.
#include "network-web/cookiejar.h"
#include "definitions/definitions.h"
#include <QDateTime>
#include <QNetworkCookie>
CookieJar::CookieJar(QObject* parent) : QNetworkCookieJar(parent) {}
QList<QNetworkCookie> CookieJar::extractCookiesFromUrl(const QString& url) const {
if (!url.contains(QSL(COOKIE_URL_IDENTIFIER))) {
return {};
}
int index = url.lastIndexOf(QSL(COOKIE_URL_IDENTIFIER), -1, Qt::CaseSensitivity::CaseInsensitive);
QString cookies_string = url.right(url.length() - index - QSL(COOKIE_URL_IDENTIFIER).size());
QStringList cookies_list = cookies_string.split(';');
QList<QNetworkCookie> cookies;
for (const QString& single_cookie : cookies_list) {
const QList<QNetworkCookie>& extracted_cookies = QNetworkCookie::parseCookies(single_cookie.toUtf8());
if (extracted_cookies.isEmpty()) {
continue;
}
QNetworkCookie cookie = extracted_cookies.at(0);
QDateTime date = QDateTime::currentDateTime();
date = date.addYears(30);
cookie.setExpirationDate(date);
cookies.append(cookie);
}
return cookies;
}
bool CookieJar::insertCookies(const QList<QNetworkCookie>& cookies) {
bool result = true;
for (const QNetworkCookie& cookie : cookies) {
result &= insertCookie(cookie);
}
return result;
}

View File

@ -0,0 +1,16 @@
// For license of this file, see <project-root-folder>/LICENSE.md.
#ifndef COOKIEJAR_H
#define COOKIEJAR_H
#include <QNetworkCookieJar>
class CookieJar : public QNetworkCookieJar {
public:
explicit CookieJar(QObject* parent = nullptr);
QList<QNetworkCookie> extractCookiesFromUrl(const QString& url) const;
bool insertCookies(const QList<QNetworkCookie>& cookies);
};
#endif // COOKIEJAR_H

View File

@ -2,10 +2,14 @@
#include "network-web/downloader.h" #include "network-web/downloader.h"
#include "miscellaneous/application.h"
#include "miscellaneous/iofactory.h" #include "miscellaneous/iofactory.h"
#include "network-web/cookiejar.h"
#include "network-web/silentnetworkaccessmanager.h" #include "network-web/silentnetworkaccessmanager.h"
#include "network-web/webfactory.h"
#include <QHttpMultiPart> #include <QHttpMultiPart>
#include <QNetworkCookie>
#include <QRegularExpression> #include <QRegularExpression>
#include <QTimer> #include <QTimer>
@ -17,6 +21,9 @@ Downloader::Downloader(QObject* parent)
m_timer->setInterval(DOWNLOAD_TIMEOUT); m_timer->setInterval(DOWNLOAD_TIMEOUT);
m_timer->setSingleShot(true); m_timer->setSingleShot(true);
connect(m_timer, &QTimer::timeout, this, &Downloader::cancel); connect(m_timer, &QTimer::timeout, this, &Downloader::cancel);
m_downloadManager->setCookieJar(qApp->web()->cookieJar());
qApp->web()->cookieJar()->setParent(nullptr);
} }
Downloader::~Downloader() { Downloader::~Downloader() {
@ -53,6 +60,13 @@ void Downloader::manipulateData(const QString& url,
bool protected_contents, bool protected_contents,
const QString& username, const QString& username,
const QString& password) { const QString& password) {
auto cookies = qApp->web()->cookieJar()->extractCookiesFromUrl(url);
if (!cookies.isEmpty()) {
qApp->web()->cookieJar()->setCookiesFromUrl(cookies, url);
}
QNetworkRequest request; QNetworkRequest request;
QString non_const_url = url; QString non_const_url = url;
QHashIterator<QByteArray, QByteArray> i(m_customHeaders); QHashIterator<QByteArray, QByteArray> i(m_customHeaders);

View File

@ -5,6 +5,7 @@
#include "gui/messagebox.h" #include "gui/messagebox.h"
#include "miscellaneous/application.h" #include "miscellaneous/application.h"
#include "miscellaneous/iconfactory.h" #include "miscellaneous/iconfactory.h"
#include "network-web/cookiejar.h"
#include <QDesktopServices> #include <QDesktopServices>
#include <QProcess> #include <QProcess>
@ -31,6 +32,8 @@ WebFactory::WebFactory(QObject* parent)
m_urlInterceptor = new NetworkUrlInterceptor(this); m_urlInterceptor = new NetworkUrlInterceptor(this);
#endif #endif
m_cookieJar = new CookieJar(nullptr);
#if defined(USE_WEBENGINE) #if defined(USE_WEBENGINE)
#if QT_VERSION >= 0x050D00 // Qt >= 5.13.0 #if QT_VERSION >= 0x050D00 // Qt >= 5.13.0
QWebEngineProfile::defaultProfile()->setUrlRequestInterceptor(m_urlInterceptor); QWebEngineProfile::defaultProfile()->setUrlRequestInterceptor(m_urlInterceptor);
@ -46,6 +49,10 @@ WebFactory::~WebFactory() {
m_engineSettings->menu()->deleteLater(); m_engineSettings->menu()->deleteLater();
} }
#endif #endif
if (m_cookieJar != nullptr) {
m_cookieJar->deleteLater();
}
} }
bool WebFactory::sendMessageViaEmail(const Message& message) { bool WebFactory::sendMessageViaEmail(const Message& message) {
@ -223,14 +230,18 @@ void WebFactory::updateProxy() {
} }
#if defined(USE_WEBENGINE) #if defined(USE_WEBENGINE)
AdBlockManager* WebFactory::adBlock() { AdBlockManager* WebFactory::adBlock() const {
return m_adBlock; return m_adBlock;
} }
NetworkUrlInterceptor* WebFactory::urlIinterceptor() { NetworkUrlInterceptor* WebFactory::urlIinterceptor() const {
return m_urlInterceptor; return m_urlInterceptor;
} }
CookieJar* WebFactory::cookieJar() const {
return m_cookieJar;
}
QAction* WebFactory::engineSettingsAction() { QAction* WebFactory::engineSettingsAction() {
if (m_engineSettings == nullptr) { if (m_engineSettings == nullptr) {
m_engineSettings = new QAction(qApp->icons()->fromTheme(QSL("applications-internet")), tr("Web engine settings"), this); m_engineSettings = new QAction(qApp->icons()->fromTheme(QSL("applications-internet")), tr("Web engine settings"), this);

View File

@ -19,6 +19,8 @@ class AdBlockManager;
class NetworkUrlInterceptor; class NetworkUrlInterceptor;
#endif #endif
class CookieJar;
class WebFactory : public QObject { class WebFactory : public QObject {
Q_OBJECT Q_OBJECT
@ -37,10 +39,12 @@ class WebFactory : public QObject {
#if defined(USE_WEBENGINE) #if defined(USE_WEBENGINE)
QAction* engineSettingsAction(); QAction* engineSettingsAction();
AdBlockManager* adBlock(); AdBlockManager* adBlock() const;
NetworkUrlInterceptor* urlIinterceptor(); NetworkUrlInterceptor* urlIinterceptor() const;
#endif #endif
CookieJar* cookieJar() const;
void updateProxy(); void updateProxy();
bool openUrlInExternalBrowser(const QString& url) const; bool openUrlInExternalBrowser(const QString& url) const;
bool sendMessageViaEmail(const Message& message); bool sendMessageViaEmail(const Message& message);
@ -64,6 +68,7 @@ class WebFactory : public QObject {
QAction* m_engineSettings; QAction* m_engineSettings;
#endif #endif
CookieJar* m_cookieJar;
QMap<QString, char16_t> m_htmlNamedEntities; QMap<QString, char16_t> m_htmlNamedEntities;
}; };

View File

@ -7,15 +7,19 @@
#include "gui/messagebox.h" #include "gui/messagebox.h"
#include "miscellaneous/application.h" #include "miscellaneous/application.h"
#include "miscellaneous/iconfactory.h" #include "miscellaneous/iconfactory.h"
#include "network-web/cookiejar.h"
#include "network-web/networkfactory.h" #include "network-web/networkfactory.h"
#include "network-web/webfactory.h"
#include "services/abstract/category.h" #include "services/abstract/category.h"
#include "services/abstract/gui/authenticationdetails.h" #include "services/abstract/gui/authenticationdetails.h"
#include "services/abstract/serviceroot.h" #include "services/abstract/serviceroot.h"
#include "services/standard/definitions.h"
#include "services/standard/gui/standardfeeddetails.h" #include "services/standard/gui/standardfeeddetails.h"
#include "services/standard/standardfeed.h" #include "services/standard/standardfeed.h"
#include "services/standard/standardserviceroot.h" #include "services/standard/standardserviceroot.h"
#include <QFileDialog> #include <QFileDialog>
#include <QNetworkCookie>
#include <QTextCodec> #include <QTextCodec>
FormStandardFeedDetails::FormStandardFeedDetails(ServiceRoot* service_root, RootItem* parent_to_select, FormStandardFeedDetails::FormStandardFeedDetails(ServiceRoot* service_root, RootItem* parent_to_select,
@ -85,6 +89,20 @@ void FormStandardFeedDetails::apply() {
try { try {
DatabaseQueries::createOverwriteFeed(database, std_feed, m_serviceRoot->accountId(), parent->id()); DatabaseQueries::createOverwriteFeed(database, std_feed, m_serviceRoot->accountId(), parent->id());
// Feed is added, save cookies.
/*if (std_feed->sourceType() == StandardFeed::SourceType::Url) {
auto cookies = qApp->web()->cookieJar()->extractCookiesFromUrl(std_feed->source());
if (!cookies.isEmpty()) {
qDebugNN << LOGSEC_NETWORK
<< "Detected some cookies in URL"
<< QUOTE_W_SPACE_DOT(std_feed->source());
qApp->web()->cookieJar()->insertCookies(cookies);
}
}*/
} }
catch (const ApplicationException& ex) { catch (const ApplicationException& ex) {
qFatal("Cannot save feed: '%s'.", qPrintable(ex.message())); qFatal("Cannot save feed: '%s'.", qPrintable(ex.message()));

View File

@ -2,6 +2,7 @@
#include "services/standard/standardfeed.h" #include "services/standard/standardfeed.h"
#include "3rd-party/sc/simplecrypt.h"
#include "core/feedsmodel.h" #include "core/feedsmodel.h"
#include "database/databasequeries.h" #include "database/databasequeries.h"
#include "definitions/definitions.h" #include "definitions/definitions.h"
@ -13,7 +14,6 @@
#include "gui/feedsview.h" #include "gui/feedsview.h"
#include "miscellaneous/iconfactory.h" #include "miscellaneous/iconfactory.h"
#include "miscellaneous/settings.h" #include "miscellaneous/settings.h"
#include "3rd-party/sc/simplecrypt.h"
#include "miscellaneous/textfactory.h" #include "miscellaneous/textfactory.h"
#include "network-web/networkfactory.h" #include "network-web/networkfactory.h"
#include "services/abstract/recyclebin.h" #include "services/abstract/recyclebin.h"