100 lines
2.7 KiB
C++
100 lines
2.7 KiB
C++
// SPDX-FileCopyrightText: Tobias Fella <tobias.fella@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QAbstractListModel>
|
|
#include <QPointer>
|
|
#include <QQmlEngine>
|
|
|
|
#include <Quotient/csapi/definitions/client_device.h>
|
|
|
|
class NeoChatConnection;
|
|
|
|
/**
|
|
* @class DevicesModel
|
|
*
|
|
* This class defines the model for managing the devices of the local user.
|
|
*
|
|
* A device is any session where the local user is logged into a client. This means
|
|
* the same physical device can have multiple sessions for example if the user uses
|
|
* multiple clients on the same machine.
|
|
*/
|
|
class DevicesModel : public QAbstractListModel
|
|
{
|
|
Q_OBJECT
|
|
QML_ELEMENT
|
|
|
|
/**
|
|
* @brief The current connection that the model is getting its devices from.
|
|
*/
|
|
Q_PROPERTY(NeoChatConnection *connection READ connection WRITE setConnection NOTIFY connectionChanged REQUIRED)
|
|
|
|
public:
|
|
/**
|
|
* @brief Defines the model roles.
|
|
*/
|
|
enum Roles {
|
|
Id, /**< The device ID. */
|
|
DisplayName, /**< Display name set by the user for this device. */
|
|
LastIp, /**< The IP address where this device was last seen. */
|
|
LastTimestamp, /**< The timestamp when this devices was last seen. */
|
|
TimestampString, /**< String for the timestamp when this devices was last seen. */
|
|
Type, /**< The category to sort this device into. */
|
|
};
|
|
Q_ENUM(Roles)
|
|
|
|
enum DeviceType {
|
|
This,
|
|
Verified,
|
|
Unverified,
|
|
Unencrypted,
|
|
};
|
|
Q_ENUM(DeviceType);
|
|
|
|
/**
|
|
* @brief Get the given role value at the given index.
|
|
*
|
|
* @sa QAbstractItemModel::data
|
|
*/
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
/**
|
|
* @brief Number of rows in the model.
|
|
*
|
|
* @sa QAbstractItemModel::rowCount
|
|
*/
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
|
|
/**
|
|
* @brief Returns a mapping from Role enum values to role names.
|
|
*
|
|
* @sa Roles, QAbstractItemModel::roleNames()
|
|
*/
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
|
|
/**
|
|
* @brief Logout the device with the given id.
|
|
*/
|
|
Q_INVOKABLE void logout(const QString &deviceId, const QString &password);
|
|
|
|
/**
|
|
* @brief Set the display name of the device with the given id.
|
|
*/
|
|
Q_INVOKABLE void setName(const QString &deviceId, const QString &name);
|
|
|
|
explicit DevicesModel(QObject *parent = nullptr);
|
|
|
|
[[nodiscard]] NeoChatConnection *connection() const;
|
|
void setConnection(NeoChatConnection *connection);
|
|
|
|
Q_SIGNALS:
|
|
void connectionChanged();
|
|
void countChanged();
|
|
|
|
private:
|
|
void fetchDevices();
|
|
QList<Quotient::Device> m_devices;
|
|
QPointer<NeoChatConnection> m_connection;
|
|
};
|