mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-28 20:06:20 +00:00
122 lines
4.9 KiB
C++
122 lines
4.9 KiB
C++
/*
|
|
* SipAddressesModel.hpp
|
|
* 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: February 2, 2017
|
|
* Author: Ronan Abhamon
|
|
*/
|
|
|
|
#ifndef SIP_ADDRESSES_MODEL_H_
|
|
#define SIP_ADDRESSES_MODEL_H_
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include "SipAddressObserver.hpp"
|
|
|
|
// =============================================================================
|
|
|
|
class QUrl;
|
|
|
|
class ChatModel;
|
|
class CoreHandlers;
|
|
|
|
class SipAddressesModel : public QAbstractListModel {
|
|
Q_OBJECT;
|
|
|
|
public:
|
|
SipAddressesModel (QObject *parent = Q_NULLPTR);
|
|
|
|
int rowCount (const QModelIndex &index = QModelIndex()) const override;
|
|
|
|
QHash<int, QByteArray> roleNames () const override;
|
|
QVariant data (const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
|
|
Q_INVOKABLE QVariantMap find (const QString &sipAddress) const;
|
|
Q_INVOKABLE ContactModel *mapSipAddressToContact (const QString &sipAddress) const;
|
|
Q_INVOKABLE SipAddressObserver *getSipAddressObserver (const QString &sipAddress);
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Sip addresses helpers.
|
|
// ---------------------------------------------------------------------------
|
|
|
|
Q_INVOKABLE QString getTransportFromSipAddress (const QString &sipAddress) const;
|
|
Q_INVOKABLE QString addTransportToSipAddress (const QString &sipAddress, const QString &transport) const;
|
|
|
|
Q_INVOKABLE static QString interpretSipAddress (const QString &sipAddress, bool checkUsername = true);
|
|
Q_INVOKABLE static QString interpretSipAddress (const QUrl &sipAddress);
|
|
|
|
Q_INVOKABLE static bool addressIsValid (const QString &address);
|
|
Q_INVOKABLE static bool sipAddressIsValid (const QString &sipAddress);
|
|
|
|
Q_INVOKABLE static QString cleanSipAddress (const QString &sipAddress);
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
private:
|
|
bool removeRow (int row, const QModelIndex &parent = QModelIndex());
|
|
bool removeRows (int row, int count, const QModelIndex &parent = QModelIndex()) override;
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
void handleChatModelCreated (const std::shared_ptr<ChatModel> &chatModel);
|
|
|
|
void handleContactAdded (ContactModel *contact);
|
|
void handleContactRemoved (const ContactModel *contact);
|
|
|
|
void handleSipAddressAdded (ContactModel *contact, const QString &sipAddress);
|
|
void handleSipAddressRemoved (ContactModel *contact, const QString &sipAddress);
|
|
|
|
void handleMessageReceived (const std::shared_ptr<linphone::ChatMessage> &message);
|
|
void handleCallStateChanged (const std::shared_ptr<linphone::Call> &call, linphone::CallState state);
|
|
void handlePresenceReceived (const QString &sipAddress, const std::shared_ptr<const linphone::PresenceModel> &presenceModel);
|
|
|
|
void handleAllEntriesRemoved (const QString &sipAddress);
|
|
void handleMessageSent (const std::shared_ptr<linphone::ChatMessage> &message);
|
|
void handleMessagesCountReset (const QString &sipAddress);
|
|
|
|
void handlerIsComposingChanged (const std::shared_ptr<linphone::ChatRoom> &chatRoom);
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// A sip address exists in this list if a contact is linked to it, or a call, or a message.
|
|
|
|
void addOrUpdateSipAddress (QVariantMap &map, ContactModel *contact);
|
|
void addOrUpdateSipAddress (QVariantMap &map, const std::shared_ptr<linphone::Call> &call);
|
|
void addOrUpdateSipAddress (QVariantMap &map, const std::shared_ptr<linphone::ChatMessage> &message);
|
|
|
|
template<class T>
|
|
void addOrUpdateSipAddress (const QString &sipAddress, T data);
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
void removeContactOfSipAddress (const QString &sipAddress);
|
|
|
|
void initSipAddresses ();
|
|
|
|
void updateObservers (const QString &sipAddress, ContactModel *contact);
|
|
void updateObservers (const QString &sipAddress, const Presence::PresenceStatus &presenceStatus);
|
|
void updateObservers (const QString &sipAddress, int messagesCount);
|
|
|
|
QHash<QString, QVariantMap> mSipAddresses;
|
|
QList<const QVariantMap *> mRefs;
|
|
|
|
QMultiHash<QString, SipAddressObserver *> mObservers;
|
|
|
|
std::shared_ptr<CoreHandlers> mCoreHandlers;
|
|
};
|
|
|
|
#endif // SIP_ADDRESSES_MODEL_H_
|