modernize: Prefer default member init over ctor init
[quassel.git] / src / client / clientidentity.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 "client-export.h"
24
25 #include "identity.h"
26
27 class ClientCertManager;
28
29 class CLIENT_EXPORT CertIdentity : public Identity
30 {
31     Q_OBJECT
32
33 public:
34     CertIdentity(IdentityId id = 0, QObject *parent = nullptr);
35     CertIdentity(const Identity &other, QObject *parent = nullptr);
36     CertIdentity(const CertIdentity &other, QObject *parent = nullptr);
37
38 #ifdef HAVE_SSL
39     inline bool isDirty() const { return _isDirty; }
40 #else
41     inline bool isDirty() const { return false; }
42 #endif
43
44 #ifdef HAVE_SSL
45     void enableEditSsl(bool enable = true);
46     inline const QSslKey &sslKey() const { return _sslKey; }
47     inline const QSslCertificate &sslCert() const { return _sslCert; }
48
49     void setSslKey(const QSslKey &key);
50     void setSslCert(const QSslCertificate &cert);
51
52 public slots:
53     void requestUpdateSslSettings();
54
55 signals:
56     void sslSettingsUpdated();
57
58 private slots:
59     void markClean();
60
61 private:
62     ClientCertManager *_certManager{nullptr};
63     bool _isDirty{false};
64     QSslKey _sslKey;
65     QSslCertificate _sslCert;
66 #endif //HAVE_SSL
67 };
68
69
70 // ========================================
71 //  ClientCertManager
72 // ========================================
73 #ifdef HAVE_SSL
74
75 class ClientCertManager : public CertManager
76 {
77     Q_OBJECT
78
79 public:
80     ClientCertManager(IdentityId id, CertIdentity *parent) : CertManager(id, parent), _certIdentity(parent) {}
81
82     inline const QSslKey &sslKey() const override { return _certIdentity->sslKey(); }
83     inline const QSslCertificate &sslCert() const override { return _certIdentity->sslCert(); }
84
85 public slots:
86     void setSslKey(const QByteArray &encoded) override;
87     void setSslCert(const QByteArray &encoded) override;
88
89 private:
90     CertIdentity *_certIdentity;
91 };
92
93 #endif //HAVE_SSL