ssl: Remove fallback code for missing SSL support
[quassel.git] / src / core / coreidentity.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2020 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #pragma once
22
23 #include "core-export.h"
24
25 #include "identity.h"
26
27 #include <QSslCertificate>
28 #include <QSslKey>
29
30 class SignalProxy;
31
32 // ========================================
33 //  CoreCertManager
34 // ========================================
35 class CoreIdentity;
36 class CORE_EXPORT CoreCertManager : public CertManager
37 {
38     Q_OBJECT
39
40 public:
41     CoreCertManager(CoreIdentity* identity);
42
43     const QSslKey& sslKey() const override;
44     const QSslCertificate& sslCert() const override;
45
46 public slots:
47     void setSslKey(const QByteArray& encoded) override;
48     void setSslCert(const QByteArray& encoded) override;
49
50     void setId(IdentityId id);
51
52 private:
53     CoreIdentity* _identity{nullptr};
54 };
55
56 // =========================================
57 //  CoreIdentity
58 // =========================================
59 class CORE_EXPORT CoreIdentity : public Identity
60 {
61     Q_OBJECT
62
63 public:
64     CoreIdentity(IdentityId id, QObject* parent = nullptr);
65     CoreIdentity(const Identity& other, QObject* parent = nullptr);
66     CoreIdentity(const CoreIdentity& other, QObject* parent = nullptr);
67
68     void synchronize(SignalProxy* proxy);
69
70     inline const QSslKey& sslKey() const { return _sslKey; }
71     inline void setSslKey(const QSslKey& key) { _sslKey = key; }
72     void setSslKey(const QByteArray& encoded);
73     inline const QSslCertificate& sslCert() const { return _sslCert; }
74     inline void setSslCert(const QSslCertificate& cert) { _sslCert = cert; }
75     void setSslCert(const QByteArray& encoded);
76
77 private:
78     QSslKey _sslKey;
79     QSslCertificate _sslCert;
80
81     CoreCertManager _certManager;
82 };
83
84 inline const QSslKey& CoreCertManager::sslKey() const
85 {
86     return _identity->sslKey();
87 }
88
89 inline const QSslCertificate& CoreCertManager::sslCert() const
90 {
91     return _identity->sslCert();
92 }