Files
jami-client-qt/src/app/accountadapter.h
Kateryna Kostiuk 33da15daba account: implement import-from-device using new API
- Implements new APIs
- Implements import-from-device mechanism (creation wizard)
- Minor refactoring of accountmodel and accountadapter

Gitlab: #1695
Change-Id: Ib3c6301b82b19a25320dd703f2f7e941f8048a8e
2025-03-07 15:54:15 -05:00

115 lines
4.1 KiB
C++

/*
* Copyright (C) 2021-2025 Savoir-faire Linux Inc.
*
* 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/>.
*/
#pragma once
#include "qmladapterbase.h"
#include "api/accountmodel.h"
#include <QSettings>
#include <QString>
#include <QQmlEngine> // QML registration
#include <QApplication> // QML registration
class AppSettingsManager;
class SystemTray;
class AccountAdapter final : public QmlAdapterBase
{
Q_OBJECT
QML_SINGLETON
Q_PROPERTY(lrc::api::AccountModel* model READ getModel NOTIFY modelChanged)
public:
lrc::api::AccountModel* getModel();
Q_SIGNALS:
void modelChanged();
public:
static AccountAdapter* create(QQmlEngine*, QJSEngine*);
explicit AccountAdapter(AppSettingsManager* settingsManager,
SystemTray* systemTray,
LRCInstance* instance,
QObject* parent = nullptr);
~AccountAdapter() = default;
// Change to account corresponding to combox box index.
Q_INVOKABLE void changeAccount(int row);
// Create normal Jami account, SIP account and JAMS accounts.
Q_INVOKABLE void createJamiAccount(const QVariantMap& settings);
Q_INVOKABLE void createSIPAccount(const QVariantMap& settings);
Q_INVOKABLE void createJAMSAccount(const QVariantMap& settings);
// Delete current account
Q_INVOKABLE void deleteCurrentAccount();
// Conf property
Q_INVOKABLE bool exportToFile(const QString& accountId,
const QString& path,
const QString& password = {}) const;
Q_INVOKABLE void setArchivePasswordAsync(const QString& accountID, const QString& password);
// Lrc instances functions wrappers
Q_INVOKABLE bool savePassword(const QString& accountId,
const QString& oldPassword,
const QString& newPassword);
Q_INVOKABLE bool hasVideoCall();
Q_INVOKABLE void setCurrAccDisplayName(const QString& text);
Q_INVOKABLE void setCurrentAccountAvatarFile(const QString& source);
Q_INVOKABLE void setCurrentAccountAvatarBase64(const QString& source = {});
Q_INVOKABLE void setDefaultModerator(const QString& accountId,
const QString& peerURI,
const bool& state);
Q_INVOKABLE QStringList getDefaultModerators(const QString& accountId);
// New import account / link device functions
// import: (note: Listen for: DeviceAuthStateChanged)
Q_INVOKABLE void startImportAccount();
Q_INVOKABLE void provideAccountAuthentication(const QString& password = {});
Q_INVOKABLE QString getImportErrorMessage(QVariantMap details);
Q_INVOKABLE void cancelImportAccount();
Q_SIGNALS:
// Trigger other components to reconnect account related signals.
void accountStatusChanged(QString accountId);
// Send report failure to QML to make it show the right UI state .
void reportFailure();
void accountCreationFailed();
void accountAdded(const QString& accountId, int index);
void accountRemoved(const QString& accountId);
void accountConfigFinalized();
private:
// Implement what to do when account creation fails.
void connectFailure();
QMetaObject::Connection registeredNameSavedConnection_;
// The account ID of the last used import account.
QString importAccountId_;
AppSettingsManager* settingsManager_;
SystemTray* systemTray_;
};
Q_DECLARE_METATYPE(AccountAdapter*)