modernize: Prefer default member init over ctor init
[quassel.git] / src / client / clientidentity.cpp
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 #include "clientidentity.h"
22
23 #include "client.h"
24 #include "signalproxy.h"
25
26 CertIdentity::CertIdentity(IdentityId id, QObject *parent)
27     : Identity(id, parent)
28 {
29 }
30
31
32 CertIdentity::CertIdentity(const Identity &other, QObject *parent)
33     : Identity(other, parent)
34 {
35 }
36
37
38 CertIdentity::CertIdentity(const CertIdentity &other, QObject *parent)
39     : Identity(other, parent)
40 #ifdef HAVE_SSL
41     , _isDirty(other._isDirty)
42     , _sslKey(other._sslKey)
43     , _sslCert(other._sslCert)
44 #endif
45 {
46 }
47
48
49 #ifdef HAVE_SSL
50 void CertIdentity::enableEditSsl(bool enable)
51 {
52     if (!enable || _certManager)
53         return;
54
55     _certManager = new ClientCertManager(id(), this);
56     if (isValid()) { // this means we are not a newly created Identity but have a proper Id
57         Client::signalProxy()->synchronize(_certManager);
58         connect(_certManager, SIGNAL(updated()), this, SLOT(markClean()));
59         connect(_certManager, SIGNAL(initDone()), this, SLOT(markClean()));
60     }
61 }
62
63
64 void CertIdentity::setSslKey(const QSslKey &key)
65 {
66     if (key.toPem() == _sslKey.toPem())
67         return;
68     _sslKey = key;
69     _isDirty = true;
70 }
71
72
73 void CertIdentity::setSslCert(const QSslCertificate &cert)
74 {
75     if (cert.toPem() == _sslCert.toPem())
76         return;
77     _sslCert = cert;
78     _isDirty = true;
79 }
80
81
82 void CertIdentity::requestUpdateSslSettings()
83 {
84     if (!_certManager)
85         return;
86
87     _certManager->requestUpdate(_certManager->toVariantMap());
88 }
89
90
91 void CertIdentity::markClean()
92 {
93     _isDirty = false;
94     emit sslSettingsUpdated();
95 }
96
97
98 // ========================================
99 //  ClientCertManager
100 // ========================================
101 void ClientCertManager::setSslKey(const QByteArray &encoded)
102 {
103     QSslKey key(encoded, QSsl::Rsa);
104     if (key.isNull() && Client::isCoreFeatureEnabled(Quassel::Feature::EcdsaCertfpKeys))
105         key = QSslKey(encoded, QSsl::Ec);
106     if (key.isNull())
107         key = QSslKey(encoded, QSsl::Dsa);
108     _certIdentity->setSslKey(key);
109 }
110
111
112 void ClientCertManager::setSslCert(const QByteArray &encoded)
113 {
114     _certIdentity->setSslCert(QSslCertificate(encoded));
115 }
116
117 #endif // HAVE_SSL