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