Finalizing changes to the identities interface -> breaking protocol
[quassel.git] / src / client / clientidentity.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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     _certManager(0),
29     _isDirty(false)
30 {
31 }
32
33 CertIdentity::CertIdentity(const Identity &other, QObject *parent)
34   : Identity(other, parent),
35     _certManager(0),
36     _isDirty(false)
37 {
38 }
39
40 CertIdentity::CertIdentity(const CertIdentity &other, QObject *parent)
41   : Identity(other, parent),
42     _certManager(0),
43     _isDirty(other._isDirty),
44     _sslKey(other._sslKey),
45     _sslCert(other._sslCert)
46 {
47 }
48
49 void CertIdentity::enableEditSsl(bool enable) {
50   if(!enable || _certManager)
51     return;
52
53   _certManager = new ClientCertManager(id(), this);
54   if(isValid()) { // this means we are not a newly created Identity but have a proper Id
55     Client::signalProxy()->synchronize(_certManager);
56     connect(_certManager, SIGNAL(updated(const QVariantMap &)), this, SLOT(markClean()));
57     connect(_certManager, SIGNAL(initDone()), this, SLOT(markClean()));
58   }
59 }
60
61 void CertIdentity::setSslKey(const QSslKey &key) {
62   if(key.toPem() == _sslKey.toPem())
63     return;
64   _sslKey = key;
65   _isDirty = true;
66 }
67
68 void CertIdentity::setSslCert(const QSslCertificate &cert) {
69   if(cert.toPem() == _sslCert.toPem())
70     return;
71   _sslCert = cert;
72   _isDirty = true;
73 }
74
75 void CertIdentity::requestUpdateSslSettings() {
76   if(!_certManager)
77     return;
78
79   _certManager->requestUpdate(_certManager->toVariantMap());
80 }
81
82 void CertIdentity::markClean() {
83   _isDirty = false;
84   emit sslSettingsUpdated();
85 }
86
87 // ========================================
88 //  ClientCertManager
89 // ========================================
90 void ClientCertManager::setSslKey(const QByteArray &encoded) {
91   QSslKey key(encoded, QSsl::Rsa);
92   if(key.isNull())
93     key = QSslKey(encoded, QSsl::Dsa);
94   _certIdentity->setSslKey(key);
95 }
96
97 void ClientCertManager::setSslCert(const QByteArray &encoded) {
98   _certIdentity->setSslCert(QSslCertificate(encoded));
99 }