this should fix crashes in the nick/bufer view delegates when receiving an invalid...
[quassel.git] / src / core / coreidentity.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 COREIDENTITY_H
22 #define COREIDENTITY_H
23
24 #include "identity.h"
25
26 #ifdef HAVE_SSL
27 #include <QSslKey>
28 #include <QSslCertificate>
29 #endif //HAVE_SSL
30
31 class SignalProxy;
32
33 // ========================================
34 //  CoreCertManager
35 // ========================================
36 #ifdef HAVE_SSL
37 class CoreIdentity;
38 class CoreCertManager : public CertManager {
39   Q_OBJECT
40
41 public:
42   CoreCertManager(CoreIdentity &identity);
43
44 #ifdef HAVE_SSL
45   virtual const QSslKey &sslKey() const;
46   virtual const QSslCertificate &sslCert() const;
47
48 public slots:
49   virtual void setSslKey(const QByteArray &encoded);
50   virtual void setSslCert(const QByteArray &encoded);
51 #endif
52
53   void setId(IdentityId id);
54
55 private:
56   CoreIdentity &identity;
57 };
58 #endif //HAVE_SSL
59
60 // =========================================
61 //  CoreIdentity
62 // =========================================
63 class CoreIdentity : public Identity {
64   Q_OBJECT
65
66 public:
67   CoreIdentity(IdentityId id, QObject *parent = 0);
68   CoreIdentity(const Identity &other, QObject *parent = 0);
69   CoreIdentity(const CoreIdentity &other, QObject *parent = 0);
70
71   void synchronize(SignalProxy *proxy);
72
73 #ifdef HAVE_SSL
74   inline const QSslKey &sslKey() const { return _sslKey; }
75   inline void setSslKey(const QSslKey &key) { _sslKey = key; }
76   void setSslKey(const QByteArray &encoded);
77   inline const QSslCertificate &sslCert() const { return _sslCert; }
78   inline void setSslCert(const QSslCertificate &cert) { _sslCert = cert; }
79   void setSslCert(const QByteArray &encoded);
80 #endif /* HAVE_SSL */
81
82   CoreIdentity& operator=(const CoreIdentity &identity);
83
84 private:
85 #ifdef HAVE_SSL
86   QSslKey _sslKey;
87   QSslCertificate _sslCert;
88
89   CoreCertManager _certManager;
90 #endif
91 };
92
93 #ifdef HAVE_SSL
94 inline const QSslKey &CoreCertManager::sslKey() const {
95   return identity.sslKey();
96 }
97 inline const QSslCertificate &CoreCertManager::sslCert() const {
98   return identity.sslCert();
99 }
100 #endif
101
102 #endif //COREIDENTITY_H