modernize: Prefer default member init over ctor init
[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 <QSslKey>
27 #include <QSslCertificate>
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
60 #endif //HAVE_SSL
61
62 // =========================================
63 //  CoreIdentity
64 // =========================================
65 class CoreIdentity : public Identity
66 {
67     Q_OBJECT
68
69 public:
70     CoreIdentity(IdentityId id, QObject *parent = nullptr);
71     CoreIdentity(const Identity &other, QObject *parent = nullptr);
72     CoreIdentity(const CoreIdentity &other, QObject *parent = nullptr);
73
74     void synchronize(SignalProxy *proxy);
75
76 #ifdef HAVE_SSL
77     inline const QSslKey &sslKey() const { return _sslKey; }
78     inline void setSslKey(const QSslKey &key) { _sslKey = key; }
79     void setSslKey(const QByteArray &encoded);
80     inline const QSslCertificate &sslCert() const { return _sslCert; }
81     inline void setSslCert(const QSslCertificate &cert) { _sslCert = cert; }
82     void setSslCert(const QByteArray &encoded);
83 #endif /* HAVE_SSL */
84
85     CoreIdentity &operator=(const CoreIdentity &identity);
86
87 private:
88 #ifdef HAVE_SSL
89     QSslKey _sslKey;
90     QSslCertificate _sslCert;
91
92     CoreCertManager _certManager;
93 #endif
94 };
95
96
97 #ifdef HAVE_SSL
98 inline const QSslKey &CoreCertManager::sslKey() const
99 {
100     return identity.sslKey();
101 }
102
103
104 inline const QSslCertificate &CoreCertManager::sslCert() const
105 {
106     return identity.sslCert();
107 }
108
109 #endif