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