mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-19 20:48:09 +00:00
127 lines
4 KiB
C++
127 lines
4 KiB
C++
/*
|
|
* Copyright (c) 2010-2020 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "SearchSipAddressesModel.hpp"
|
|
|
|
#include <QDateTime>
|
|
#include <QElapsedTimer>
|
|
#include <QUrl>
|
|
#include <QtDebug>
|
|
|
|
#include "components/call/CallModel.hpp"
|
|
#include "components/chat-room/ChatRoomModel.hpp"
|
|
#include "components/contact/ContactModel.hpp"
|
|
#include "components/contact/VcardModel.hpp"
|
|
#include "components/contacts/ContactsListModel.hpp"
|
|
#include "components/core/CoreHandlers.hpp"
|
|
#include "components/core/CoreManager.hpp"
|
|
#include "components/history/HistoryModel.hpp"
|
|
#include "components/settings/AccountSettingsModel.hpp"
|
|
#include "utils/Utils.hpp"
|
|
|
|
#include "SearchResultModel.hpp"
|
|
|
|
|
|
|
|
// =============================================================================
|
|
|
|
using namespace std;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
SearchSipAddressesModel::SearchSipAddressesModel (QObject *parent) : QAbstractListModel(parent) {
|
|
|
|
mMagicSearch = CoreManager::getInstance()->getCore()->createMagicSearch();
|
|
mSearch = std::make_shared<SearchHandler>(this);
|
|
QObject::connect(mSearch.get(), &SearchHandler::searchReceived, this, &SearchSipAddressesModel::searchReceived, Qt::QueuedConnection);
|
|
mMagicSearch->addListener(mSearch);
|
|
|
|
}
|
|
|
|
SearchSipAddressesModel::~SearchSipAddressesModel(){
|
|
mMagicSearch->removeListener(mSearch);
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
int SearchSipAddressesModel::rowCount (const QModelIndex &) const {
|
|
return mAddresses.count();
|
|
}
|
|
|
|
QHash<int, QByteArray> SearchSipAddressesModel::roleNames () const {
|
|
QHash<int, QByteArray> roles;
|
|
roles[Qt::DisplayRole] = "$sipAddress";
|
|
return roles;
|
|
}
|
|
|
|
QVariant SearchSipAddressesModel::data (const QModelIndex &index, int role) const {
|
|
int row = index.row();
|
|
|
|
if (!index.isValid() || row < 0 || row >= mAddresses.count())
|
|
return QVariant();
|
|
|
|
if (role == Qt::DisplayRole)
|
|
return QVariant::fromValue(mAddresses[row].get());
|
|
|
|
return QVariant();
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
bool SearchSipAddressesModel::removeRow (int row, const QModelIndex &parent) {
|
|
return removeRows(row, 1, parent);
|
|
}
|
|
|
|
bool SearchSipAddressesModel::removeRows (int row, int count, const QModelIndex &parent) {
|
|
int limit = row + count - 1;
|
|
|
|
if (row < 0 || count < 0 || limit >= mAddresses.count())
|
|
return false;
|
|
|
|
beginRemoveRows(parent, row, limit);
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
mAddresses.removeAt(row);
|
|
|
|
endRemoveRows();
|
|
|
|
return true;
|
|
}
|
|
|
|
void SearchSipAddressesModel::setFilter(const QString& filter){
|
|
mMagicSearch->getContactListFromFilterAsync(filter.toStdString(),"");
|
|
//searchReceived(mMagicSearch->getContactListFromFilter(Utils::appStringToCoreString(filter),"")); // Just to show how to use sync method
|
|
}
|
|
|
|
void SearchSipAddressesModel::searchReceived(std::list<std::shared_ptr<linphone::SearchResult>> results){
|
|
QList<std::shared_ptr<SearchResultModel> > addresses;
|
|
for(auto it = results.begin() ; it != results.end() ; ++it){
|
|
auto linphoneFriend = (*it)->getFriend();
|
|
auto address = (*it)->getAddress();
|
|
if( linphoneFriend || address)
|
|
addresses << std::make_shared<SearchResultModel>(linphoneFriend,address );
|
|
}
|
|
beginResetModel();
|
|
mAddresses.clear();
|
|
mAddresses = addresses;
|
|
if(mAddresses.size() > 0 )// remove self
|
|
mAddresses.pop_back();
|
|
endResetModel();
|
|
}
|