/* * Copyright (c) 2010-2024 Belledonne Communications SARL. * * This file is part of linphone-desktop * (see https://www.linphone.org). * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "LdapModel.hpp" #include "model/core/CoreModel.hpp" #include "tool/Utils.hpp" DEFINE_ABSTRACT_OBJECT(LdapModel) LdapModel::LdapModel(const std::shared_ptr &ldap, QObject *parent) { mustBeInLinphoneThread(getClassName()); if (ldap) { mLdap = ldap; mLdapParamsClone = mLdap->getParams()->clone(); } else { mLdap = nullptr; mLdapParamsClone = CoreModel::getInstance()->getCore()->createLdapParams(); mLdapParamsClone->setTimeout(5); mLdapParamsClone->setDelay(2000); mLdapParamsClone->setMinChars(3); mLdapParamsClone->enableTls(true); } } LdapModel::~LdapModel() { mustBeInLinphoneThread(log().arg(Q_FUNC_INFO)); } void LdapModel::save() { mustBeInLinphoneThread(log().arg(Q_FUNC_INFO)); if (mLdap) CoreModel::getInstance()->getCore()->removeLdap( mLdap); // Need to do remove/add when updating, as setParams on existing one also adds it to core. mLdap = CoreModel::getInstance()->getCore()->createLdapWithParams(mLdapParamsClone); CoreModel::getInstance()->getCore()->addLdap(mLdap); lDebug() << log().arg("LDAP Server saved"); mLdapParamsClone = mLdap->getParams()->clone(); emit saved(); } void LdapModel::remove() { mustBeInLinphoneThread(log().arg(Q_FUNC_INFO)); CoreModel::getInstance()->getCore()->removeLdap(mLdap); lDebug() << log().arg("LDAP Server removed"); emit removed(); } DEFINE_GETSET(LdapModel, bool, enabled, Enabled, mLdapParamsClone) DEFINE_GETSET_MODEL_STRING(LdapModel, server, Server, mLdapParamsClone) DEFINE_GETSET_MODEL_STRING(LdapModel, bindDn, BindDn, mLdapParamsClone) DEFINE_GETSET_MODEL_STRING(LdapModel, password, Password, mLdapParamsClone) DEFINE_GETSET(LdapModel, linphone::Ldap::AuthMethod, authMethod, AuthMethod, mLdapParamsClone) DEFINE_GETSET_ENABLED(LdapModel, tls, Tls, mLdapParamsClone) DEFINE_GETSET(LdapModel, linphone::Ldap::CertVerificationMode, serverCertificatesVerificationMode, ServerCertificatesVerificationMode, mLdapParamsClone) DEFINE_GETSET_MODEL_STRING(LdapModel, baseObject, BaseObject, mLdapParamsClone) DEFINE_GETSET_MODEL_STRING(LdapModel, filter, Filter, mLdapParamsClone) DEFINE_GETSET(LdapModel, int, maxResults, MaxResults, mLdapParamsClone) DEFINE_GETSET(LdapModel, int, timeout, Timeout, mLdapParamsClone) DEFINE_GETSET(LdapModel, int, delay, Delay, mLdapParamsClone) DEFINE_GETSET(LdapModel, int, minChars, MinChars, mLdapParamsClone) DEFINE_GETSET_MODEL_STRING(LdapModel, nameAttribute, NameAttribute, mLdapParamsClone) DEFINE_GETSET_MODEL_STRING(LdapModel, sipAttribute, SipAttribute, mLdapParamsClone) DEFINE_GETSET_MODEL_STRING(LdapModel, sipDomain, SipDomain, mLdapParamsClone) DEFINE_GETSET(LdapModel, linphone::Ldap::DebugLevel, debugLevel, DebugLevel, mLdapParamsClone)