/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2014 David Rosca * * 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 . * ============================================================ */ #include "networkmanager.h" #include "autofill.h" #include "qztools.h" #include "mainapplication.h" #include "passwordmanager.h" #include "sslerrordialog.h" #include "network/schemehandlers/qupzillaschemehandler.h" #include #include #include #include #include #include #include #include #include #include #include NetworkManager::NetworkManager(QObject *parent) : QNetworkAccessManager(parent) { // Create scheme handlers mApp->webProfile()->installUrlSchemeHandler(new QupZillaSchemeHandler(this)); connect(this, &QNetworkAccessManager::authenticationRequired, this, [this](QNetworkReply *reply, QAuthenticator *auth) { authentication(reply->url(), auth); }); connect(this, &QNetworkAccessManager::proxyAuthenticationRequired, this, [this](const QNetworkProxy &proxy, QAuthenticator *auth) { proxyAuthentication(proxy.hostName(), auth); }); } bool NetworkManager::certificateError(const QWebEngineCertificateError &error, QWidget *parent) { const QString &host = error.url().host(); if (m_ignoredSslErrors.contains(host) && m_ignoredSslErrors.value(host) == error.error()) return true; QString title = tr("SSL Certificate Error!"); QString text1 = tr("The page you are trying to access has the following errors in the SSL certificate:"); QString text2 = tr("Would you like to make an exception for this certificate?"); QString message = QSL("%1

%2

  • %3

%4

").arg(title, text1, error.errorDescription(), text2); SslErrorDialog dialog(parent); dialog.setText(message); dialog.exec(); switch (dialog.result()) { case SslErrorDialog::Yes: // TODO: Permanent exceptions case SslErrorDialog::OnlyForThisSession: m_ignoredSslErrors[error.url().host()] = error.error(); return true; case SslErrorDialog::No: default: return false; } } void NetworkManager::authentication(const QUrl &url, QAuthenticator *auth, QWidget *parent) { QDialog* dialog = new QDialog(parent); dialog->setWindowTitle(tr("Authorisation required")); QFormLayout* formLa = new QFormLayout(dialog); QLabel* label = new QLabel(dialog); QLabel* userLab = new QLabel(dialog); QLabel* passLab = new QLabel(dialog); userLab->setText(tr("Username: ")); passLab->setText(tr("Password: ")); QLineEdit* user = new QLineEdit(dialog); QLineEdit* pass = new QLineEdit(dialog); pass->setEchoMode(QLineEdit::Password); QCheckBox* save = new QCheckBox(dialog); save->setText(tr("Save username and password for this site")); QDialogButtonBox* box = new QDialogButtonBox(dialog); box->addButton(QDialogButtonBox::Ok); box->addButton(QDialogButtonBox::Cancel); connect(box, SIGNAL(rejected()), dialog, SLOT(reject())); connect(box, SIGNAL(accepted()), dialog, SLOT(accept())); label->setText(tr("A username and password are being requested by %1. " "The site says: \"%2\"").arg(url.host(), QzTools::escape(auth->realm()))); formLa->addRow(label); formLa->addRow(userLab, user); formLa->addRow(passLab, pass); formLa->addRow(save); formLa->addWidget(box); AutoFill* fill = mApp->autoFill(); QString storedUser; QString storedPassword; bool shouldUpdateEntry = false; if (fill->isStored(url)) { const QVector &data = fill->getFormData(url); if (!data.isEmpty()) { save->setChecked(true); shouldUpdateEntry = true; storedUser = data.first().username; storedPassword = data.first().password; user->setText(storedUser); pass->setText(storedPassword); } } // Do not save when private browsing is enabled if (mApp->isPrivate()) { save->setVisible(false); } if (dialog->exec() != QDialog::Accepted) { return; } auth->setUser(user->text()); auth->setPassword(pass->text()); if (save->isChecked()) { if (shouldUpdateEntry) { if (storedUser != user->text() || storedPassword != pass->text()) { fill->updateEntry(url, user->text(), pass->text()); } } else { fill->addEntry(url, user->text(), pass->text()); } } } void NetworkManager::proxyAuthentication(const QString &proxyHost, QAuthenticator *auth, QWidget *parent) { QVector passwords = mApp->autoFill()->getFormData(QUrl(proxyHost)); if (!passwords.isEmpty()) { auth->setUser(passwords.at(0).username); auth->setPassword(passwords.at(0).password); return; } QDialog* dialog = new QDialog(parent); dialog->setWindowTitle(tr("Proxy authorisation required")); QFormLayout* formLa = new QFormLayout(dialog); QLabel* label = new QLabel(dialog); QLabel* userLab = new QLabel(dialog); QLabel* passLab = new QLabel(dialog); userLab->setText(tr("Username: ")); passLab->setText(tr("Password: ")); QLineEdit* user = new QLineEdit(dialog); QLineEdit* pass = new QLineEdit(dialog); pass->setEchoMode(QLineEdit::Password); QCheckBox* save = new QCheckBox(dialog); save->setText(tr("Remember username and password for this proxy.")); QDialogButtonBox* box = new QDialogButtonBox(dialog); box->addButton(QDialogButtonBox::Ok); box->addButton(QDialogButtonBox::Cancel); connect(box, SIGNAL(rejected()), dialog, SLOT(reject())); connect(box, SIGNAL(accepted()), dialog, SLOT(accept())); label->setText(tr("A username and password are being requested by proxy %1. ").arg(proxyHost)); formLa->addRow(label); formLa->addRow(userLab, user); formLa->addRow(passLab, pass); formLa->addRow(save); formLa->addWidget(box); if (dialog->exec() != QDialog::Accepted) { return; } if (save->isChecked()) { mApp->autoFill()->addEntry(QUrl(proxyHost), user->text(), pass->text()); } auth->setUser(user->text()); auth->setPassword(pass->text()); }