2021-03-12 23:27:16 +00:00
|
|
|
/**
|
|
|
|
* SPDX-FileCopyrightText: 2021 David Shlemayev <david.shlemayev@gmail.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "connectivity_reportplugin.h"
|
|
|
|
|
|
|
|
#include <KLocalizedString>
|
|
|
|
#include <KPluginFactory>
|
|
|
|
|
|
|
|
#include <core/daemon.h>
|
|
|
|
|
|
|
|
#include "plugin_connectivity_report_debug.h"
|
|
|
|
|
|
|
|
K_PLUGIN_CLASS_WITH_JSON(ConnectivityReportPlugin, "kdeconnect_connectivity_report.json")
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
ConnectivityReportPlugin::ConnectivityReportPlugin(QObject *parent, const QVariantList &args)
|
2021-03-12 23:27:16 +00:00
|
|
|
: KdeConnectPlugin(parent, args)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ConnectivityReportPlugin::cellularNetworkType() const
|
|
|
|
{
|
|
|
|
return m_cellularNetworkType;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ConnectivityReportPlugin::cellularNetworkStrength() const
|
|
|
|
{
|
|
|
|
return m_cellularNetworkStrength;
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
bool ConnectivityReportPlugin::receivePacket(const NetworkPacket &np)
|
2021-03-12 23:27:16 +00:00
|
|
|
{
|
2023-07-17 13:14:11 +01:00
|
|
|
if (PACKET_TYPE_CONNECTIVITY_REPORT != np.type()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto subscriptions = np.get<QVariantMap>(QStringLiteral("signalStrengths"), QVariantMap());
|
|
|
|
if (!subscriptions.isEmpty()) {
|
|
|
|
auto networkInfo = subscriptions.first().toMap();
|
2021-03-12 23:27:16 +00:00
|
|
|
|
2023-07-17 13:14:11 +01:00
|
|
|
const auto oldCellularNetworkType = m_cellularNetworkType;
|
|
|
|
const auto oldNetworkStrength = m_cellularNetworkStrength;
|
2021-11-30 22:33:30 +00:00
|
|
|
|
2023-07-17 13:14:11 +01:00
|
|
|
m_cellularNetworkType = networkInfo.value(QStringLiteral("networkType")).toString();
|
|
|
|
m_cellularNetworkStrength = networkInfo.value(QStringLiteral("signalStrength")).toInt();
|
2021-03-12 23:27:16 +00:00
|
|
|
|
2023-07-17 13:14:11 +01:00
|
|
|
if (oldCellularNetworkType != m_cellularNetworkType || oldNetworkStrength != m_cellularNetworkStrength) {
|
|
|
|
Q_EMIT refreshed(m_cellularNetworkType, m_cellularNetworkStrength);
|
2021-11-30 22:33:30 +00:00
|
|
|
}
|
2021-03-12 23:27:16 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ConnectivityReportPlugin::dbusPath() const
|
|
|
|
{
|
|
|
|
return QStringLiteral("/modules/kdeconnect/devices/") + device()->id() + QStringLiteral("/connectivity_report");
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "connectivity_reportplugin.moc"
|