X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.cpp;h=85eb333f68d15f1f9297caf9b808690c32d1c90b;hp=92db9b0588288d1788109361bdcf6dcc9203c668;hb=bd6311ec1d07e4daf082b5f752ef6b46d7808430;hpb=5aab75a546d5463195cac9cdb15c94979bf73925 diff --git a/src/core/coreircchannel.cpp b/src/core/coreircchannel.cpp index 92db9b05..85eb333f 100644 --- a/src/core/coreircchannel.cpp +++ b/src/core/coreircchannel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2010 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -19,9 +19,47 @@ ***************************************************************************/ #include "coreircchannel.h" +#include "corenetwork.h" +INIT_SYNCABLE_OBJECT(CoreIrcChannel) CoreIrcChannel::CoreIrcChannel(const QString &channelname, Network *network) : IrcChannel(channelname, network), _receivedWelcomeMsg(false) { +#ifdef HAVE_QCA2 + _cipher = 0; +#endif } + +CoreIrcChannel::~CoreIrcChannel() { +#ifdef HAVE_QCA2 + delete _cipher; +#endif +} + +#ifdef HAVE_QCA2 +Cipher *CoreIrcChannel::cipher() const { + if(!_cipher) + _cipher = new Cipher(); + + return _cipher; +} + +void CoreIrcChannel::setEncrypted(bool e) { + if(e) { + if(topic().isEmpty()) + return; + + QByteArray key = qobject_cast(network())->cipherKey(name()); + if(key.isEmpty()) + return; + + if(!cipher()->setKey(key)) + return; + + QByteArray decrypted = cipher()->decryptTopic(topic().toAscii()); + setTopic(decodeString(decrypted)); + } +} + +#endif