core: Fix SQLite realname/avatarurl handling
[quassel.git] / src / core / coreircuser.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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 #include "coreircuser.h"
22 #include "corenetwork.h"
23
24 CoreIrcUser::CoreIrcUser(const QString &hostmask, Network *network) : IrcUser(hostmask, network)
25 {
26 #ifdef HAVE_QCA2
27     _cipher = 0;
28
29     // Get the cipher key from CoreNetwork if present
30     CoreNetwork *coreNetwork = qobject_cast<CoreNetwork *>(network);
31     if (coreNetwork) {
32         QByteArray key = coreNetwork->readChannelCipherKey(nick().toLower());
33         if (!key.isEmpty()) {
34             if (!_cipher) {
35                 _cipher = new Cipher();
36             }
37             setEncrypted(_cipher->setKey(key));
38         }
39     }
40 #endif
41 }
42
43
44 CoreIrcUser::~CoreIrcUser()
45 {
46 #ifdef HAVE_QCA2
47     // Store the cipher key in CoreNetwork, including empty keys if a cipher
48     // exists. There is no need to store the empty key if no cipher exists; no
49     // key was present when instantiating and no key was set during the
50     // channel's lifetime.
51     CoreNetwork *coreNetwork = qobject_cast<CoreNetwork *>(network());
52     if (coreNetwork && _cipher) {
53         coreNetwork->storeChannelCipherKey(nick().toLower(), _cipher->key());
54     }
55
56     delete _cipher;
57 #endif
58 }
59
60
61 #ifdef HAVE_QCA2
62 Cipher *CoreIrcUser::cipher() const
63 {
64     if (!_cipher)
65         _cipher = new Cipher();
66
67     return _cipher;
68 }
69
70
71 #endif