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