X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircuser.cpp;h=4dd946ead319d6d4ed5bdf9d5f79fea6495515ed;hp=b4d02f06b42f03ef6dabd984dea6170c641e2c29;hb=aec9c711900a443bfa7860fa86c6e9c86b81a3e7;hpb=e50ae7a06fc4e5d3a911c361d30953410deab609 diff --git a/src/core/coreircuser.cpp b/src/core/coreircuser.cpp index b4d02f06..4dd946ea 100644 --- a/src/core/coreircuser.cpp +++ b/src/core/coreircuser.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -19,11 +19,24 @@ ***************************************************************************/ #include "coreircuser.h" +#include "corenetwork.h" CoreIrcUser::CoreIrcUser(const QString &hostmask, Network *network) : IrcUser(hostmask, network) { #ifdef HAVE_QCA2 _cipher = 0; + + // Get the cipher key from CoreNetwork if present + CoreNetwork *coreNetwork = qobject_cast(network); + if (coreNetwork) { + QByteArray key = coreNetwork->readChannelCipherKey(nick().toLower()); + if (!key.isEmpty()) { + if (!_cipher) { + _cipher = new Cipher(); + } + setEncrypted(_cipher->setKey(key)); + } + } #endif } @@ -31,6 +44,15 @@ CoreIrcUser::CoreIrcUser(const QString &hostmask, Network *network) : IrcUser(ho CoreIrcUser::~CoreIrcUser() { #ifdef HAVE_QCA2 + // Store the cipher key in CoreNetwork, including empty keys if a cipher + // exists. There is no need to store the empty key if no cipher exists; no + // key was present when instantiating and no key was set during the + // channel's lifetime. + CoreNetwork *coreNetwork = qobject_cast(network()); + if (coreNetwork && _cipher) { + coreNetwork->storeChannelCipherKey(nick().toLower(), _cipher->key()); + } + delete _cipher; #endif }