0265881c42e05aaaedea49a467a2861bb4a28ea8
[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 #ifdef HAVE_SSL
28 #    include <QSslCertificate>
29 #    include <QSslKey>
30 #endif  // HAVE_SSL
31
32 class SignalProxy;
33
34 // ========================================
35 //  CoreCertManager
36 // ========================================
37 #ifdef HAVE_SSL
38 class CoreIdentity;
39 class CORE_EXPORT CoreCertManager : public CertManager
40 {
41     Q_OBJECT
42
43 public:
44     CoreCertManager(CoreIdentity* identity);
45
46 #    ifdef HAVE_SSL
47     const QSslKey& sslKey() const override;
48     const QSslCertificate& sslCert() const override;
49
50 public slots:
51     void setSslKey(const QByteArray& encoded) override;
52     void setSslCert(const QByteArray& encoded) override;
53 #    endif
54
55     void setId(IdentityId id);
56
57 private:
58     CoreIdentity* _identity{nullptr};
59 };
60
61 #endif  // HAVE_SSL
62
63 // =========================================
64 //  CoreIdentity
65 // =========================================
66 class CORE_EXPORT CoreIdentity : public Identity
67 {
68     Q_OBJECT
69
70 public:
71     CoreIdentity(IdentityId id, QObject* parent = nullptr);
72     CoreIdentity(const Identity& other, QObject* parent = nullptr);
73     CoreIdentity(const CoreIdentity& other, QObject* parent = nullptr);
74
75     void synchronize(SignalProxy* proxy);
76
77 #ifdef HAVE_SSL
78     inline const QSslKey& sslKey() const { return _sslKey; }
79     inline void setSslKey(const QSslKey& key) { _sslKey = key; }
80     void setSslKey(const QByteArray& encoded);
81     inline const QSslCertificate& sslCert() const { return _sslCert; }
82     inline void setSslCert(const QSslCertificate& cert) { _sslCert = cert; }
83     void setSslCert(const QByteArray& encoded);
84 #endif /* HAVE_SSL */
85
86 private:
87 #ifdef HAVE_SSL
88     QSslKey _sslKey;
89     QSslCertificate _sslCert;
90
91     CoreCertManager _certManager;
92 #endif
93 };
94
95 #ifdef HAVE_SSL
96 inline const QSslKey& CoreCertManager::sslKey() const
97 {
98     return _identity->sslKey();
99 }
100
101 inline const QSslCertificate& CoreCertManager::sslCert() const
102 {
103     return _identity->sslCert();
104 }
105
106 #endif