X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreidentity.cpp;h=e567c90506318ef93b82119e875f980d7e4beffe;hp=91b6519f548fcc3efaed2b019b047ca44cbf7c44;hb=HEAD;hpb=b8ce41ef6c0036d854f5bef0fb52e2a69dc5def2 diff --git a/src/core/coreidentity.cpp b/src/core/coreidentity.cpp index 91b6519f..2480433f 100644 --- a/src/core/coreidentity.cpp +++ b/src/core/coreidentity.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -24,51 +24,36 @@ CoreIdentity::CoreIdentity(IdentityId id, QObject* parent) : Identity(id, parent) -#ifdef HAVE_SSL - , _certManager(*this) -#endif + , _certManager(this) { -#ifdef HAVE_SSL connect(this, &Identity::idSet, &_certManager, &CoreCertManager::setId); connect(&_certManager, &SyncableObject::updated, this, &SyncableObject::updated); -#endif } CoreIdentity::CoreIdentity(const Identity& other, QObject* parent) : Identity(other, parent) -#ifdef HAVE_SSL - , _certManager(*this) -#endif + , _certManager(this) { -#ifdef HAVE_SSL connect(this, &Identity::idSet, &_certManager, &CoreCertManager::setId); connect(&_certManager, &SyncableObject::updated, this, &SyncableObject::updated); -#endif } CoreIdentity::CoreIdentity(const CoreIdentity& other, QObject* parent) : Identity(other, parent) -#ifdef HAVE_SSL , _sslKey(other._sslKey) , _sslCert(other._sslCert) - , _certManager(*this) -#endif + , _certManager(this) { -#ifdef HAVE_SSL connect(this, &Identity::idSet, &_certManager, &CoreCertManager::setId); connect(&_certManager, &SyncableObject::updated, this, &SyncableObject::updated); -#endif } void CoreIdentity::synchronize(SignalProxy* proxy) { proxy->synchronize(this); -#ifdef HAVE_SSL proxy->synchronize(&_certManager); -#endif } -#ifdef HAVE_SSL void CoreIdentity::setSslKey(const QByteArray& encoded) { QSslKey key(encoded, QSsl::Rsa); @@ -84,26 +69,13 @@ void CoreIdentity::setSslCert(const QByteArray& encoded) setSslCert(QSslCertificate(encoded)); } -#endif - -CoreIdentity& CoreIdentity::operator=(const CoreIdentity& identity) -{ - Identity::operator=(identity); -#ifdef HAVE_SSL - _sslKey = identity._sslKey; - _sslCert = identity._sslCert; -#endif - return *this; -} - -#ifdef HAVE_SSL // ======================================== // CoreCertManager // ======================================== -CoreCertManager::CoreCertManager(CoreIdentity& identity) - : CertManager(identity.id()) - , identity(identity) +CoreCertManager::CoreCertManager(CoreIdentity* identity) + : CertManager(identity->id()) + , _identity(identity) { setAllowClientUpdates(true); } @@ -115,14 +87,12 @@ void CoreCertManager::setId(IdentityId id) void CoreCertManager::setSslKey(const QByteArray& encoded) { - identity.setSslKey(encoded); + _identity->setSslKey(encoded); CertManager::setSslKey(encoded); } void CoreCertManager::setSslCert(const QByteArray& encoded) { - identity.setSslCert(encoded); + _identity->setSslCert(encoded); CertManager::setSslCert(encoded); } - -#endif // HAVE_SSL