Simplify code, fix potential crash
[quassel.git] / src / client / clientidentity.h
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 #ifndef CLIENTIDENTITY_H
22 #define CLIENTIDENTITY_H
23
24 #include "identity.h"
25
26 class ClientCertManager;
27
28 class CertIdentity : public Identity {
29   SYNCABLE_OBJECT
30   Q_OBJECT
31
32 public:
33   CertIdentity(IdentityId id = 0, QObject *parent = 0);
34   CertIdentity(const Identity &other, QObject *parent = 0);
35   CertIdentity(const CertIdentity &other, QObject *parent = 0);
36
37 #ifdef HAVE_SSL
38   inline bool isDirty() const { return _isDirty; }
39 #else
40   inline bool isDirty() const { return false; }
41 #endif
42
43 #ifdef HAVE_SSL
44   void enableEditSsl(bool enable = true);
45   inline const QSslKey &sslKey() const { return _sslKey; }
46   inline const QSslCertificate &sslCert() const { return _sslCert; }
47
48   void setSslKey(const QSslKey &key);
49   void setSslCert(const QSslCertificate &cert);
50
51 public slots:
52   void requestUpdateSslSettings();
53
54 signals:
55   void sslSettingsUpdated();
56
57 private slots:
58   void markClean();
59
60 private:
61   ClientCertManager *_certManager;
62   bool _isDirty;
63   QSslKey _sslKey;
64   QSslCertificate _sslCert;
65 #endif //HAVE_SSL
66 };
67
68 // ========================================
69 //  ClientCertManager
70 // ========================================
71 #ifdef HAVE_SSL
72 class ClientCertManager : public CertManager {
73   Q_OBJECT
74
75 public:
76   ClientCertManager(IdentityId id, CertIdentity *parent) : CertManager(id, parent), _certIdentity(parent) {}
77
78   virtual inline const QSslKey &sslKey() const { return _certIdentity->sslKey(); }
79   virtual inline const QSslCertificate &sslCert() const { return _certIdentity->sslCert(); }
80
81 public slots:
82   virtual void setSslKey(const QByteArray &encoded);
83   virtual void setSslCert(const QByteArray &encoded);
84
85 private:
86   CertIdentity *_certIdentity;
87 };
88 #endif //HAVE_SSL
89
90 #endif //CLIENTIDENTITY_H