The BufferSyncer cache is now purged when an unknown bufferId is encountered.
[quassel.git] / src / client / clientidentity.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, 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 CertIdentity::CertIdentity(const Identity &other, QObject *parent)
36   : Identity(other, parent)
37 #ifdef HAVE_SSL
38   , _certManager(0),
39     _isDirty(false)
40 #endif
41 {
42 }
43
44 CertIdentity::CertIdentity(const CertIdentity &other, QObject *parent)
45   : Identity(other, parent)
46 #ifdef HAVE_SSL
47   , _certManager(0),
48     _isDirty(other._isDirty),
49     _sslKey(other._sslKey),
50     _sslCert(other._sslCert)
51 #endif
52 {
53 }
54
55 #ifdef HAVE_SSL
56 void CertIdentity::enableEditSsl(bool enable) {
57   if(!enable || _certManager)
58     return;
59
60   _certManager = new ClientCertManager(id(), this);
61   if(isValid()) { // this means we are not a newly created Identity but have a proper Id
62     Client::signalProxy()->synchronize(_certManager);
63     connect(_certManager, SIGNAL(updated(const QVariantMap &)), this, SLOT(markClean()));
64     connect(_certManager, SIGNAL(initDone()), this, SLOT(markClean()));
65   }
66 }
67
68 void CertIdentity::setSslKey(const QSslKey &key) {
69   if(key.toPem() == _sslKey.toPem())
70     return;
71   _sslKey = key;
72   _isDirty = true;
73 }
74
75 void CertIdentity::setSslCert(const QSslCertificate &cert) {
76   if(cert.toPem() == _sslCert.toPem())
77     return;
78   _sslCert = cert;
79   _isDirty = true;
80 }
81
82 void CertIdentity::requestUpdateSslSettings() {
83   if(!_certManager)
84     return;
85
86   _certManager->requestUpdate(_certManager->toVariantMap());
87 }
88
89 void CertIdentity::markClean() {
90   _isDirty = false;
91   emit sslSettingsUpdated();
92 }
93
94 // ========================================
95 //  ClientCertManager
96 // ========================================
97 void ClientCertManager::setSslKey(const QByteArray &encoded) {
98   QSslKey key(encoded, QSsl::Rsa);
99   if(key.isNull())
100     key = QSslKey(encoded, QSsl::Dsa);
101   _certIdentity->setSslKey(key);
102 }
103
104 void ClientCertManager::setSslCert(const QByteArray &encoded) {
105   _certIdentity->setSslCert(QSslCertificate(encoded));
106 }
107
108
109 #endif // HAVE_SSL