/* * 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 "MagicSearchProxy.hpp" #include "MagicSearchList.hpp" #include "core/friend/FriendGui.hpp" MagicSearchProxy::MagicSearchProxy(QObject *parent) : LimitProxy(parent) { mSourceFlags = (int)LinphoneEnums::MagicSearchSource::Friends | (int)LinphoneEnums::MagicSearchSource::LdapServers; mAggregationFlag = LinphoneEnums::MagicSearchAggregation::Friend; setList(MagicSearchList::create()); sort(0); connect(this, &MagicSearchProxy::forceUpdate, [this] { if (mList) emit mList->lSearch(mSearchText); }); } MagicSearchProxy::~MagicSearchProxy() { setSourceModel(nullptr); } void MagicSearchProxy::setList(QSharedPointer newList) { if (mList == newList) return; if (mList) { disconnect(mList.get()); } auto oldModel = dynamic_cast(sourceModel()); mList = newList; if (mList) { connect(mList.get(), &MagicSearchList::sourceFlagsChanged, this, &MagicSearchProxy::sourceFlagsChanged, Qt::QueuedConnection); connect(mList.get(), &MagicSearchList::aggregationFlagChanged, this, &MagicSearchProxy::aggregationFlagChanged, Qt::QueuedConnection); connect( mList.get(), &MagicSearchList::friendCreated, this, [this](int index) { auto proxyIndex = dynamic_cast(sourceModel())->mapFromSource(mList->index(index, 0)).row(); // auto proxyIndex = mapFromSource(sourceModel()->index(index, 0)); // OLD (keep for checking new proxy // behavior) emit friendCreated(proxyIndex); }, Qt::QueuedConnection); connect( mList.get(), &MagicSearchList::initialized, this, [this, newList = mList.get()] { emit newList->lSetSourceFlags(mSourceFlags); emit newList->lSetAggregationFlag(mAggregationFlag); emit initialized(); }, Qt::QueuedConnection); } auto sortFilterList = new SortFilterList(mList.get(), Qt::AscendingOrder); if (oldModel) { sortFilterList->mShowFavoritesOnly = oldModel->mShowFavoritesOnly; sortFilterList->mShowLdapContacts = oldModel->mShowLdapContacts; } setSourceModels(sortFilterList); } int MagicSearchProxy::findFriendIndexByAddress(const QString &address) { auto magicSearchList = getListModel(); if (magicSearchList) return mapFromSource(magicSearchList->index(magicSearchList->findFriendIndexByAddress(address), 0)).row(); else return -1; } QString MagicSearchProxy::getSearchText() const { return mSearchText; } void MagicSearchProxy::setSearchText(const QString &search) { if (mSearchText != search) { mSearchText = search; mList->setSearch(mSearchText); } } int MagicSearchProxy::getSourceFlags() const { return mSourceFlags; } void MagicSearchProxy::setSourceFlags(int flags) { if (flags != mSourceFlags) { mSourceFlags = flags; emit mList->lSetSourceFlags(flags); } } bool MagicSearchProxy::showFavoritesOnly() const { return dynamic_cast(sourceModel())->mShowFavoritesOnly; } void MagicSearchProxy::setShowFavoritesOnly(bool show) { auto list = dynamic_cast(sourceModel()); if (list->mShowFavoritesOnly != show) { list->mShowFavoritesOnly = show; list->invalidate(); emit showFavoriteOnlyChanged(); } } void MagicSearchProxy::setParentProxy(MagicSearchProxy *proxy) { setList(proxy->mList); emit parentProxyChanged(); } LinphoneEnums::MagicSearchAggregation MagicSearchProxy::getAggregationFlag() const { return mAggregationFlag; } void MagicSearchProxy::setAggregationFlag(LinphoneEnums::MagicSearchAggregation flag) { if (flag != mAggregationFlag) { mAggregationFlag = flag; emit mList->lSetAggregationFlag(flag); } } bool MagicSearchProxy::SortFilterList::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const { auto friendCore = getItemAtSource(sourceRow); if (friendCore) { return (!mShowFavoritesOnly || friendCore->getStarred()) && (mShowLdapContacts || !friendCore->isLdap()); } return false; } bool MagicSearchProxy::SortFilterList::lessThan(const QModelIndex &sourceLeft, const QModelIndex &sourceRight) const { auto l = getItemAtSource(sourceLeft.row()); auto r = getItemAtSource(sourceRight.row()); if (l && r) { auto lName = l->getDisplayName().toLower(); auto rName = r->getDisplayName().toLower(); return lName < rName; } return true; } bool MagicSearchProxy::showLdapContacts() const { return dynamic_cast(sourceModel())->mShowLdapContacts; } void MagicSearchProxy::setShowLdapContacts(bool show) { auto list = dynamic_cast(sourceModel()); if (list->mShowLdapContacts != show) { list->mShowLdapContacts = show; list->invalidate(); } }