72d331c62613c4cf19689f1302dd7853b5f7a9ea
[quassel.git] / src / core / coreidentity.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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 "identity.h"
24
25 #ifdef HAVE_SSL
26 #    include <QSslCertificate>
27 #    include <QSslKey>
28 #endif  // HAVE_SSL
29
30 class SignalProxy;
31
32 // ========================================
33 //  CoreCertManager
34 // ========================================
35 #ifdef HAVE_SSL
36 class CoreIdentity;
37 class CoreCertManager : public CertManager
38 {
39     Q_OBJECT
40
41 public:
42     CoreCertManager(CoreIdentity& identity);
43
44 #    ifdef HAVE_SSL
45     const QSslKey& sslKey() const override;
46     const QSslCertificate& sslCert() const override;
47
48 public slots:
49     void setSslKey(const QByteArray& encoded) override;
50     void setSslCert(const QByteArray& encoded) override;
51 #    endif
52
53     void setId(IdentityId id);
54
55 private:
56     CoreIdentity& identity;
57 };
58
59 #endif  // HAVE_SSL
60
61 // =========================================
62 //  CoreIdentity
63 // =========================================
64 class CoreIdentity : public Identity
65 {
66     Q_OBJECT
67
68 public:
69     CoreIdentity(IdentityId id, QObject* parent = nullptr);
70     CoreIdentity(const Identity& other, QObject* parent = nullptr);
71     CoreIdentity(const CoreIdentity& other, QObject* parent = nullptr);
72
73     void synchronize(SignalProxy* proxy);
74
75 #ifdef HAVE_SSL
76     inline const QSslKey& sslKey() const { return _sslKey; }
77     inline void setSslKey(const QSslKey& key) { _sslKey = key; }
78     void setSslKey(const QByteArray& encoded);
79     inline const QSslCertificate& sslCert() const { return _sslCert; }
80     inline void setSslCert(const QSslCertificate& cert) { _sslCert = cert; }
81     void setSslCert(const QByteArray& encoded);
82 #endif /* HAVE_SSL */
83
84     CoreIdentity& operator=(const CoreIdentity& identity);
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