linphone-desktop/src/components/conference/ConferenceHelperModel.cpp

90 lines
3.2 KiB
C++

/*
* ConferenceHelperModel.cpp
* Copyright (C) 2017-2018 Belledonne Communications, Grenoble, France
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Created on: May 11, 2017
* Author: Ronan Abhamon
*/
#include <QQmlApplicationEngine>
#include "app/App.hpp"
#include "components/calls/CallsListModel.hpp"
#include "components/core/CoreManager.hpp"
#include "components/sip-addresses/SipAddressesProxyModel.hpp"
#include "utils/Utils.hpp"
#include "ConferenceAddModel.hpp"
#include "ConferenceHelperModel.hpp"
// =============================================================================
using namespace std;
ConferenceHelperModel::ConferenceHelperModel (QObject *parent) : QSortFilterProxyModel(parent) {
mCore = CoreManager::getInstance()->getCore();
mConference = mCore->getConference();
if (!mConference)
mConference = mCore->createConferenceWithParams(mCore->createConferenceParams());
mConferenceAddModel = new ConferenceAddModel(this);
App::getInstance()->getEngine()->setObjectOwnership(mConferenceAddModel, QQmlEngine::CppOwnership);
QObject::connect(this, &CallsListModel::rowsRemoved, [this] {
invalidate();
});
QObject::connect(this, &CallsListModel::rowsInserted, [this] {
invalidate();
});
setSourceModel(new SipAddressesProxyModel(this));
sort(0);
}
QHash<int, QByteArray> ConferenceHelperModel::roleNames () const {
QHash<int, QByteArray> roles;
roles[Qt::DisplayRole] = "$sipAddress";
return roles;
}
// -----------------------------------------------------------------------------
void ConferenceHelperModel::setFilter (const QString &pattern) {
static_cast<SipAddressesProxyModel *>(sourceModel())->setFilter(pattern);
}
// -----------------------------------------------------------------------------
bool ConferenceHelperModel::filterAcceptsRow (int sourceRow, const QModelIndex &sourceParent) const {
const QModelIndex index = sourceModel()->index(sourceRow, 0, sourceParent);
const QVariantMap data = index.data().toMap();
return !mConferenceAddModel->contains(data["sipAddress"].toString());
}
// -----------------------------------------------------------------------------
bool ConferenceHelperModel::lessThan (const QModelIndex &left, const QModelIndex &right) const {
shared_ptr<linphone::Call> callA = mCore->findCallFromUri(
Utils::appStringToCoreString(left.data().toMap()["sipAddress"].toString())
);
shared_ptr<linphone::Call> callB = mCore->findCallFromUri(
Utils::appStringToCoreString(right.data().toMap()["sipAddress"].toString())
);
return callA && !callB;
}