2012-04-06 10:53:57 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Klaas Freitag <freitag@kde.org>
|
|
|
|
*
|
|
|
|
* 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 2 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.
|
|
|
|
*/
|
|
|
|
#ifndef SSLERRORDIALOG_H
|
|
|
|
#define SSLERRORDIALOG_H
|
|
|
|
|
|
|
|
#include <QtCore>
|
|
|
|
#include <QDialog>
|
2012-04-12 13:37:48 +04:00
|
|
|
#include <QSslCertificate>
|
|
|
|
#include <QList>
|
2012-04-06 10:53:57 +04:00
|
|
|
|
2014-07-11 02:31:24 +04:00
|
|
|
#include "account.h"
|
2013-10-24 02:29:08 +04:00
|
|
|
|
2012-04-06 10:53:57 +04:00
|
|
|
class QSslError;
|
2013-03-22 14:18:16 +04:00
|
|
|
class QSslCertificate;
|
2012-04-12 13:37:48 +04:00
|
|
|
|
2017-05-17 11:55:42 +03:00
|
|
|
namespace OCC {
|
2013-09-18 16:06:23 +04:00
|
|
|
|
2013-07-04 21:59:40 +04:00
|
|
|
namespace Ui {
|
2017-05-17 11:55:42 +03:00
|
|
|
class SslErrorDialog;
|
2013-07-04 21:59:40 +04:00
|
|
|
}
|
2012-04-06 10:53:57 +04:00
|
|
|
|
2015-06-29 19:56:09 +03:00
|
|
|
/**
|
|
|
|
* @brief The SslDialogErrorHandler class
|
|
|
|
* @ingroup gui
|
2015-06-26 18:07:47 +03:00
|
|
|
*/
|
2017-05-17 11:55:42 +03:00
|
|
|
class SslDialogErrorHandler : public AbstractSslErrorHandler
|
|
|
|
{
|
2013-10-24 02:29:08 +04:00
|
|
|
public:
|
2018-11-11 13:09:29 +03:00
|
|
|
bool handleErrors(QList<QSslError> errors, const QSslConfiguration &conf, QList<QSslCertificate> *certs, AccountPtr) override;
|
2013-10-24 02:29:08 +04:00
|
|
|
};
|
|
|
|
|
2015-06-29 19:56:09 +03:00
|
|
|
/**
|
|
|
|
* @brief The SslErrorDialog class
|
|
|
|
* @ingroup gui
|
2015-06-26 18:07:47 +03:00
|
|
|
*/
|
2013-07-04 21:59:40 +04:00
|
|
|
class SslErrorDialog : public QDialog
|
2012-04-06 10:53:57 +04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2018-11-11 12:56:22 +03:00
|
|
|
explicit SslErrorDialog(AccountPtr account, QWidget *parent = nullptr);
|
2021-08-17 13:39:31 +03:00
|
|
|
~SslErrorDialog() override;
|
2017-05-17 11:55:42 +03:00
|
|
|
bool checkFailingCertsKnown(const QList<QSslError> &errors);
|
2012-04-12 13:37:48 +04:00
|
|
|
bool trustConnection();
|
2022-09-30 20:12:08 +03:00
|
|
|
[[nodiscard]] QList<QSslCertificate> unknownCerts() const { return _unknownCerts; }
|
2012-04-06 10:53:57 +04:00
|
|
|
|
2012-04-06 11:00:15 +04:00
|
|
|
private:
|
2022-09-30 20:12:08 +03:00
|
|
|
[[nodiscard]] QString styleSheet() const;
|
2023-02-06 12:38:59 +03:00
|
|
|
bool _allTrusted = false;
|
2012-04-12 13:37:48 +04:00
|
|
|
|
2022-09-30 20:12:08 +03:00
|
|
|
[[nodiscard]] QString certDiv(QSslCertificate) const;
|
2012-04-12 13:37:48 +04:00
|
|
|
|
|
|
|
QList<QSslCertificate> _unknownCerts;
|
2017-05-17 11:55:42 +03:00
|
|
|
QString _customConfigHandle;
|
|
|
|
Ui::SslErrorDialog *_ui;
|
|
|
|
AccountPtr _account;
|
2012-04-06 10:53:57 +04:00
|
|
|
};
|
|
|
|
} // end namespace
|
|
|
|
|
|
|
|
#endif // SSLERRORDIALOG_H
|