cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / client / clientidentity.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2022 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     , _isDirty(other._isDirty)
37     , _sslKey(other._sslKey)
38     , _sslCert(other._sslCert)
39 {}
40
41 void CertIdentity::enableEditSsl(bool enable)
42 {
43     if (!enable || _certManager)
44         return;
45
46     _certManager = new ClientCertManager(id(), this);
47     if (isValid()) {  // this means we are not a newly created Identity but have a proper Id
48         Client::signalProxy()->synchronize(_certManager);
49         connect(_certManager, &SyncableObject::updated, this, &CertIdentity::markClean);
50         connect(_certManager, &SyncableObject::initDone, this, &CertIdentity::markClean);
51     }
52 }
53
54 void CertIdentity::setSslKey(const QSslKey& key)
55 {
56     if (key.toPem() == _sslKey.toPem())
57         return;
58     _sslKey = key;
59     _isDirty = true;
60 }
61
62 void CertIdentity::setSslCert(const QSslCertificate& cert)
63 {
64     if (cert.toPem() == _sslCert.toPem())
65         return;
66     _sslCert = cert;
67     _isDirty = true;
68 }
69
70 void CertIdentity::requestUpdateSslSettings()
71 {
72     if (!_certManager)
73         return;
74
75     _certManager->requestUpdate(_certManager->toVariantMap());
76 }
77
78 void CertIdentity::markClean()
79 {
80     _isDirty = false;
81     emit sslSettingsUpdated();
82 }
83
84 // ========================================
85 //  ClientCertManager
86 // ========================================
87 void ClientCertManager::setSslKey(const QByteArray& encoded)
88 {
89     QSslKey key(encoded, QSsl::Rsa);
90     if (key.isNull() && Client::isCoreFeatureEnabled(Quassel::Feature::EcdsaCertfpKeys))
91         key = QSslKey(encoded, QSsl::Ec);
92     if (key.isNull())
93         key = QSslKey(encoded, QSsl::Dsa);
94     _certIdentity->setSslKey(key);
95 }
96
97 void ClientCertManager::setSslCert(const QByteArray& encoded)
98 {
99     _certIdentity->setSslCert(QSslCertificate(encoded));
100 }