src: Yearly copyright bump
[quassel.git] / src / client / clientidentity.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2019 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #pragma once
22
23 #include "client-export.h"
24
25 #include "identity.h"
26
27 class ClientCertManager;
28
29 class CLIENT_EXPORT CertIdentity : public Identity
30 {
31     Q_OBJECT
32
33 public:
34     CertIdentity(IdentityId id = 0, QObject* parent = nullptr);
35     CertIdentity(const Identity& other, QObject* parent = nullptr);
36     CertIdentity(const CertIdentity& other, QObject* parent = nullptr);
37
38 #ifdef HAVE_SSL
39     inline bool isDirty() const { return _isDirty; }
40 #else
41     inline bool isDirty() const { return false; }
42 #endif
43
44 #ifdef HAVE_SSL
45     void enableEditSsl(bool enable = true);
46     inline const QSslKey& sslKey() const { return _sslKey; }
47     inline const QSslCertificate& sslCert() const { return _sslCert; }
48
49     void setSslKey(const QSslKey& key);
50     void setSslCert(const QSslCertificate& cert);
51
52 public slots:
53     void requestUpdateSslSettings();
54
55 signals:
56     void sslSettingsUpdated();
57
58 private slots:
59     void markClean();
60
61 private:
62     ClientCertManager* _certManager{nullptr};
63     bool _isDirty{false};
64     QSslKey _sslKey;
65     QSslCertificate _sslCert;
66 #endif  // HAVE_SSL
67 };
68
69 // ========================================
70 //  ClientCertManager
71 // ========================================
72 #ifdef HAVE_SSL
73
74 class ClientCertManager : public CertManager
75 {
76     Q_OBJECT
77
78 public:
79     ClientCertManager(IdentityId id, CertIdentity* parent)
80         : CertManager(id, parent)
81         , _certIdentity(parent)
82     {}
83
84     inline const QSslKey& sslKey() const override { return _certIdentity->sslKey(); }
85     inline const QSslCertificate& sslCert() const override { return _certIdentity->sslCert(); }
86
87 public slots:
88     void setSslKey(const QByteArray& encoded) override;
89     void setSslCert(const QByteArray& encoded) override;
90
91 private:
92     CertIdentity* _certIdentity;
93 };
94
95 #endif  // HAVE_SSL