mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 03:18:07 +00:00
291 lines
12 KiB
C++
291 lines
12 KiB
C++
/*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef ACCOUNT_CORE_H_
|
|
#define ACCOUNT_CORE_H_
|
|
|
|
#include "model/account/AccountModel.hpp"
|
|
#include "tool/LinphoneEnums.hpp"
|
|
#include "tool/thread/SafeConnection.hpp"
|
|
#include <QObject>
|
|
#include <QSharedPointer>
|
|
#include <linphone++/linphone.hh>
|
|
|
|
class AccountCore : public QObject, public AbstractObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Q_PROPERTY(QString contactAddress READ getContactAddress CONSTANT)
|
|
Q_PROPERTY(QString identityAddress READ getIdentityAddress CONSTANT)
|
|
Q_PROPERTY(QString pictureUri READ getPictureUri WRITE lSetPictureUri NOTIFY pictureUriChanged)
|
|
Q_PROPERTY(
|
|
LinphoneEnums::RegistrationState registrationState READ getRegistrationState NOTIFY registrationStateChanged)
|
|
Q_PROPERTY(bool isDefaultAccount READ getIsDefaultAccount NOTIFY defaultAccountChanged)
|
|
Q_PROPERTY(int unreadNotifications READ getUnreadNotifications NOTIFY unreadNotificationsChanged)
|
|
Q_PROPERTY(int unreadCallNotifications READ getUnreadCallNotifications NOTIFY unreadCallNotificationsChanged)
|
|
Q_PROPERTY(
|
|
int unreadMessageNotifications READ getUnreadMessageNotifications NOTIFY unreadMessageNotificationsChanged)
|
|
Q_PROPERTY(QString displayName READ getDisplayName WRITE lSetDisplayName NOTIFY displayNameChanged)
|
|
Q_PROPERTY(QVariantList dialPlans READ getDialPlans CONSTANT)
|
|
Q_PROPERTY(QVariantMap dialPlan READ getDialPlan WRITE lSetDialPlan NOTIFY dialPlanChanged)
|
|
Q_PROPERTY(
|
|
QString humaneReadableRegistrationState READ getHumanReadableRegistrationState NOTIFY registrationStateChanged)
|
|
Q_PROPERTY(QString humaneReadableRegistrationStateExplained READ getHumanReadableRegistrationStateExplained NOTIFY
|
|
registrationStateChanged)
|
|
Q_PROPERTY(bool registerEnabled READ getRegisterEnabled WRITE lSetRegisterEnabled NOTIFY registerEnabledChanged)
|
|
Q_PROPERTY(QVariantList devices MEMBER mDevices NOTIFY devicesChanged)
|
|
|
|
Q_PROPERTY(bool notificationsAllowed READ getNotificationsAllowed WRITE lSetNotificationsAllowed NOTIFY
|
|
notificationsAllowedChanged)
|
|
Q_PROPERTY(
|
|
QString mwiServerAddress READ getMwiServerAddress WRITE setMwiServerAddress NOTIFY mwiServerAddressChanged)
|
|
Q_PROPERTY(QStringList transports READ getTransports CONSTANT)
|
|
Q_PROPERTY(QString transport READ getTransport WRITE setTransport NOTIFY transportChanged)
|
|
Q_PROPERTY(QString registrarUri READ getRegistrarUri WRITE setRegistrarUri NOTIFY registrarUriChanged)
|
|
Q_PROPERTY(
|
|
QString outboundProxyUri READ getOutboundProxyUri WRITE setOutboundProxyUri NOTIFY outboundProxyUriChanged)
|
|
Q_PROPERTY(QString stunServer READ getStunServer WRITE setStunServer NOTIFY stunServerChanged)
|
|
Q_PROPERTY(bool iceEnabled READ getIceEnabled WRITE setIceEnabled NOTIFY iceEnabledChanged)
|
|
Q_PROPERTY(bool avpfEnabled READ getAvpfEnabled WRITE setAvpfEnabled NOTIFY avpfEnabledChanged)
|
|
Q_PROPERTY(
|
|
bool bundleModeEnabled READ getBundleModeEnabled WRITE setBundleModeEnabled NOTIFY bundleModeEnabledChanged)
|
|
Q_PROPERTY(int expire READ getExpire WRITE setExpire NOTIFY expireChanged)
|
|
Q_PROPERTY(QString conferenceFactoryAddress READ getConferenceFactoryAddress WRITE setConferenceFactoryAddress
|
|
NOTIFY conferenceFactoryAddressChanged)
|
|
Q_PROPERTY(QString audioVideoConferenceFactoryAddress READ getAudioVideoConferenceFactoryAddress WRITE
|
|
setAudioVideoConferenceFactoryAddress NOTIFY audioVideoConferenceFactoryAddressChanged)
|
|
Q_PROPERTY(QString limeServerUrl READ getLimeServerUrl WRITE setLimeServerUrl NOTIFY limeServerUrlChanged)
|
|
Q_PROPERTY(bool isSaved READ isSaved WRITE setIsSaved NOTIFY isSavedChanged)
|
|
Q_PROPERTY(
|
|
QString voicemailAddress READ getVoicemailAddress WRITE setVoicemailAddress NOTIFY voicemailAddressChanged)
|
|
Q_PROPERTY(LinphoneEnums::Presence presence READ getPresence WRITE lSetPresence NOTIFY presenceChanged)
|
|
Q_PROPERTY(QColor presenceColor READ getPresenceColor NOTIFY presenceChanged)
|
|
Q_PROPERTY(QUrl presenceIcon READ getPresenceIcon NOTIFY presenceChanged)
|
|
Q_PROPERTY(QString presenceStatus READ getPresenceStatus NOTIFY presenceChanged)
|
|
Q_PROPERTY(QColor registrationColor READ getRegistrationColor NOTIFY registrationStateChanged)
|
|
Q_PROPERTY(QUrl registrationIcon READ getRegistrationIcon NOTIFY registrationStateChanged)
|
|
Q_PROPERTY(LinphoneEnums::Presence explicitPresence MEMBER mExplicitPresence NOTIFY presenceChanged)
|
|
Q_PROPERTY(QString presenceNote READ getPresenceNote WRITE setPresenceNote NOTIFY presenceChanged)
|
|
Q_PROPERTY(int maxPresenceNoteSize MEMBER mMaxPresenceNoteSize CONSTANT)
|
|
Q_PROPERTY(QString ccmpServerUrl READ getCcmpServerUrl WRITE setCcmpServerUrl NOTIFY ccmpServerUrlChanged)
|
|
|
|
DECLARE_CORE_GET(int, voicemailCount, VoicemailCount)
|
|
static QSharedPointer<AccountCore> create(const std::shared_ptr<linphone::Account> &account);
|
|
// Should be call from model Thread. Will be automatically in App thread after initialization
|
|
AccountCore(const std::shared_ptr<linphone::Account> &account);
|
|
~AccountCore();
|
|
AccountCore(const AccountCore &accountCore);
|
|
void setSelf(QSharedPointer<AccountCore> me);
|
|
void reset(const AccountCore &accountCore);
|
|
|
|
const std::shared_ptr<AccountModel> &getModel() const;
|
|
|
|
QString getContactAddress() const;
|
|
QString getIdentityAddress() const;
|
|
QString getPictureUri() const;
|
|
void onPictureUriChanged(QString uri);
|
|
LinphoneEnums::RegistrationState getRegistrationState() const;
|
|
bool getIsDefaultAccount() const;
|
|
int getUnreadNotifications() const;
|
|
void setUnreadNotifications(int unread);
|
|
int getUnreadCallNotifications() const;
|
|
void setUnreadCallNotifications(int unread);
|
|
int getUnreadMessageNotifications() const;
|
|
void setUnreadMessageNotifications(int unread);
|
|
|
|
void onRegistrationStateChanged(const std::shared_ptr<linphone::Account> &account,
|
|
linphone::RegistrationState state,
|
|
const std::string &message);
|
|
|
|
void onDefaultAccountChanged(bool isDefault);
|
|
Q_INVOKABLE void removeAccount();
|
|
QString getDisplayName() const;
|
|
void onDisplayNameChanged(QString displayName);
|
|
QVariantList getDialPlans();
|
|
int getDialPlanIndex(QVariantMap dialPlanString);
|
|
QVariantMap getDialPlan() const;
|
|
void onDialPlanChanged(QVariantMap internationalPrefix);
|
|
QString getHumanReadableRegistrationState() const;
|
|
QString getHumanReadableRegistrationStateExplained() const;
|
|
QColor getRegistrationColor() const;
|
|
QUrl getRegistrationIcon() const;
|
|
bool getRegisterEnabled() const;
|
|
void onRegisterEnabledChanged(bool enabled);
|
|
|
|
bool getNotificationsAllowed();
|
|
QString getMwiServerAddress();
|
|
QString getTransport();
|
|
QStringList getTransports();
|
|
QString getRegistrarUri();
|
|
QString getOutboundProxyUri();
|
|
QString getStunServer();
|
|
bool getIceEnabled();
|
|
bool getAvpfEnabled();
|
|
bool getBundleModeEnabled();
|
|
int getExpire();
|
|
QString getConferenceFactoryAddress();
|
|
QString getAudioVideoConferenceFactoryAddress();
|
|
QString getLimeServerUrl();
|
|
QString getVoicemailAddress();
|
|
QString getCcmpServerUrl();
|
|
|
|
void setMwiServerAddress(QString value);
|
|
void setTransport(QString value);
|
|
void setRegistrarUri(QString value);
|
|
void setOutboundProxyUri(QString value);
|
|
void setStunServer(QString value);
|
|
void setIceEnabled(bool value);
|
|
void setAvpfEnabled(bool value);
|
|
void setBundleModeEnabled(bool value);
|
|
void setExpire(int value);
|
|
void setConferenceFactoryAddress(QString value);
|
|
void setAudioVideoConferenceFactoryAddress(QString value);
|
|
void setLimeServerUrl(QString value);
|
|
void setVoicemailAddress(QString value);
|
|
void setCcmpServerUrl(QString value);
|
|
|
|
bool isSaved() const;
|
|
void setIsSaved(bool saved);
|
|
|
|
void onNotificationsAllowedChanged(bool value);
|
|
void onMwiServerAddressChanged(QString value);
|
|
void onVoicemailAddressChanged(QString value);
|
|
void onTransportChanged(QString value);
|
|
void onRegistrarUriChanged(QString value);
|
|
void onOutboundProxyUriChanged(QString value);
|
|
void onStunServerChanged(QString value);
|
|
void onIceEnabledChanged(bool value);
|
|
void onAvpfEnabledChanged(bool value);
|
|
void onBundleModeEnabledChanged(bool value);
|
|
void onExpireChanged(int value);
|
|
void onConferenceFactoryAddressChanged(QString value);
|
|
void onAudioVideoConferenceFactoryAddressChanged(QString value);
|
|
void onLimeServerUrlChanged(QString value);
|
|
void onCcmpServerUrlChanged(QString value);
|
|
|
|
DECLARE_CORE_GET(bool, showMwi, ShowMwi)
|
|
|
|
Q_INVOKABLE void save();
|
|
Q_INVOKABLE void undo();
|
|
|
|
QColor getPresenceColor();
|
|
QUrl getPresenceIcon();
|
|
QString getPresenceStatus();
|
|
LinphoneEnums::Presence getPresence();
|
|
Q_INVOKABLE void resetToAutomaticPresence();
|
|
LinphoneEnums::Presence getExplicitPresence();
|
|
void setPresenceNote(QString presenceNote);
|
|
QString getPresenceNote();
|
|
|
|
signals:
|
|
void pictureUriChanged();
|
|
void registrationStateChanged(const QString &message);
|
|
void conferenceInformationUpdated();
|
|
void defaultAccountChanged(bool isDefault);
|
|
void unreadNotificationsChanged(int unread);
|
|
void unreadCallNotificationsChanged(int unread);
|
|
void unreadMessageNotificationsChanged(int unread);
|
|
void displayNameChanged();
|
|
void dialPlanChanged();
|
|
void registerEnabledChanged();
|
|
void allAddressesChanged();
|
|
void devicesChanged();
|
|
void notificationsAllowedChanged();
|
|
void mwiServerAddressChanged();
|
|
void transportChanged();
|
|
void registrarUriChanged();
|
|
void outboundProxyUriChanged();
|
|
void stunServerChanged();
|
|
void iceEnabledChanged();
|
|
void avpfEnabledChanged();
|
|
void bundleModeEnabledChanged();
|
|
void expireChanged();
|
|
void conferenceFactoryAddressChanged();
|
|
void audioVideoConferenceFactoryAddressChanged();
|
|
void limeServerUrlChanged();
|
|
void removed();
|
|
void isSavedChanged();
|
|
void voicemailAddressChanged();
|
|
void presenceChanged();
|
|
void ccmpServerUrlChanged();
|
|
|
|
void setValueFailed(const QString &error);
|
|
|
|
// Account requests
|
|
void lSetPictureUri(QString pictureUri);
|
|
void lSetDefaultAccount();
|
|
void lResetMissedCalls();
|
|
void lResetUnreadMessages();
|
|
void lRefreshNotifications();
|
|
void lSetDisplayName(QString displayName);
|
|
void lSetDialPlan(QVariantMap internationalPrefix);
|
|
void lSetRegisterEnabled(bool enabled);
|
|
void lSetNotificationsAllowed(bool value);
|
|
void lSetPresence(LinphoneEnums::Presence presence, bool userInitiated = true, bool resetToAuto = false);
|
|
|
|
protected:
|
|
void writeIntoModel(std::shared_ptr<AccountModel> model) const;
|
|
void writeFromModel(const std::shared_ptr<AccountModel> &model);
|
|
|
|
private:
|
|
QString mContactAddress;
|
|
QString mIdentityAddress;
|
|
QString mPictureUri;
|
|
QString mDisplayName;
|
|
QVariantList mDialPlans;
|
|
QVariantMap mDialPlan;
|
|
bool mRegisterEnabled;
|
|
bool mIsDefaultAccount = false;
|
|
LinphoneEnums::RegistrationState mRegistrationState;
|
|
int mUnreadNotifications = 0;
|
|
int mUnreadCallNotifications = 0;
|
|
int mUnreadMessageNotifications = 0;
|
|
QVariantList mDevices;
|
|
bool mNotificationsAllowed;
|
|
QString mMwiServerAddress;
|
|
QString mTransport;
|
|
QStringList mTransports;
|
|
QString mRegistrarUri;
|
|
QString mOutboundProxyUri;
|
|
QString mStunServer;
|
|
bool mIceEnabled;
|
|
bool mAvpfEnabled;
|
|
bool mBundleModeEnabled;
|
|
int mExpire;
|
|
QString mConferenceFactoryAddress;
|
|
QString mAudioVideoConferenceFactoryAddress;
|
|
QString mLimeServerUrl;
|
|
QString mVoicemailAddress;
|
|
QString mCcmpServerUrl;
|
|
LinphoneEnums::Presence mPresence = LinphoneEnums::Presence::Undefined;
|
|
LinphoneEnums::Presence mExplicitPresence;
|
|
QString mPresenceNote;
|
|
int mMaxPresenceNoteSize;
|
|
|
|
bool mIsSaved = true;
|
|
|
|
std::shared_ptr<AccountModel> mAccountModel;
|
|
QSharedPointer<SafeConnection<AccountCore, AccountModel>> mAccountModelConnection;
|
|
QSharedPointer<SafeConnection<AccountCore, CoreModel>> mCoreModelConnection;
|
|
|
|
DECLARE_ABSTRACT_OBJECT
|
|
};
|
|
|
|
#endif
|