modernize: Reformat ALL the source... again!
[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 CertIdentity::CertIdentity(const Identity& other, QObject* parent)
31     : Identity(other, parent)
32 {}
33
34 CertIdentity::CertIdentity(const CertIdentity& other, QObject* parent)
35     : Identity(other, parent)
36 #ifdef HAVE_SSL
37     , _isDirty(other._isDirty)
38     , _sslKey(other._sslKey)
39     , _sslCert(other._sslCert)
40 #endif
41 {}
42
43 #ifdef HAVE_SSL
44 void CertIdentity::enableEditSsl(bool enable)
45 {
46     if (!enable || _certManager)
47         return;
48
49     _certManager = new ClientCertManager(id(), this);
50     if (isValid()) {  // this means we are not a newly created Identity but have a proper Id
51         Client::signalProxy()->synchronize(_certManager);
52         connect(_certManager, &SyncableObject::updated, this, &CertIdentity::markClean);
53         connect(_certManager, &SyncableObject::initDone, this, &CertIdentity::markClean);
54     }
55 }
56
57 void CertIdentity::setSslKey(const QSslKey& key)
58 {
59     if (key.toPem() == _sslKey.toPem())
60         return;
61     _sslKey = key;
62     _isDirty = true;
63 }
64
65 void CertIdentity::setSslCert(const QSslCertificate& cert)
66 {
67     if (cert.toPem() == _sslCert.toPem())
68         return;
69     _sslCert = cert;
70     _isDirty = true;
71 }
72
73 void CertIdentity::requestUpdateSslSettings()
74 {
75     if (!_certManager)
76         return;
77
78     _certManager->requestUpdate(_certManager->toVariantMap());
79 }
80
81 void CertIdentity::markClean()
82 {
83     _isDirty = false;
84     emit sslSettingsUpdated();
85 }
86
87 // ========================================
88 //  ClientCertManager
89 // ========================================
90 void ClientCertManager::setSslKey(const QByteArray& encoded)
91 {
92     QSslKey key(encoded, QSsl::Rsa);
93     if (key.isNull() && Client::isCoreFeatureEnabled(Quassel::Feature::EcdsaCertfpKeys))
94         key = QSslKey(encoded, QSsl::Ec);
95     if (key.isNull())
96         key = QSslKey(encoded, QSsl::Dsa);
97     _certIdentity->setSslKey(key);
98 }
99
100 void ClientCertManager::setSslCert(const QByteArray& encoded)
101 {
102     _certIdentity->setSslCert(QSslCertificate(encoded));
103 }
104
105 #endif  // HAVE_SSL