2022-09-06 11:36:55 +08:00
|
|
|
// SPDX-FileCopyrightText: 2020 - 2022 UnionTech Software Technology Co., Ltd.
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
2021-11-06 16:30:46 +08:00
|
|
|
|
|
|
|
#include "airplanemodeplugin.h"
|
|
|
|
#include "airplanemodeitem.h"
|
2022-07-26 09:51:17 +08:00
|
|
|
#include <DConfig>
|
2021-11-06 16:30:46 +08:00
|
|
|
|
|
|
|
#define AIRPLANEMODE_KEY "airplane-mode-key"
|
|
|
|
#define STATE_KEY "enable"
|
2022-07-26 09:51:17 +08:00
|
|
|
DCORE_USE_NAMESPACE
|
2021-11-06 16:30:46 +08:00
|
|
|
|
|
|
|
AirplaneModePlugin::AirplaneModePlugin(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, m_item(new AirplaneModeItem)
|
2022-07-26 09:51:17 +08:00
|
|
|
, m_dconfig(DConfig::create("org.deepin.dde.network", "org.deepin.dde.network", QString(), this))
|
2021-11-06 16:30:46 +08:00
|
|
|
{
|
2022-02-15 10:19:12 +08:00
|
|
|
connect(m_item, &AirplaneModeItem::airplaneEnableChanged, this, &AirplaneModePlugin::onAirplaneEnableChanged);
|
2022-07-26 09:51:17 +08:00
|
|
|
connect(m_dconfig, &DConfig::valueChanged, this, &AirplaneModePlugin::onWirelessAccessPointsOrAdapterChange);
|
2021-11-06 16:30:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const QString AirplaneModePlugin::pluginName() const
|
|
|
|
{
|
|
|
|
return "airplane-mode";
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString AirplaneModePlugin::pluginDisplayName() const
|
|
|
|
{
|
|
|
|
return tr("Airplane Mode");
|
|
|
|
}
|
|
|
|
|
|
|
|
void AirplaneModePlugin::init(PluginProxyInterface *proxyInter)
|
|
|
|
{
|
|
|
|
m_proxyInter = proxyInter;
|
|
|
|
|
2022-08-25 16:55:57 +08:00
|
|
|
if (getAirplaneDconfig()) {
|
2022-07-26 09:51:17 +08:00
|
|
|
m_networkInter = new NetworkInter("com.deepin.daemon.Network", "/com/deepin/daemon/Network", QDBusConnection::sessionBus(), this);
|
|
|
|
connect(m_networkInter, &NetworkInter::WirelessAccessPointsChanged, this, &AirplaneModePlugin::onWirelessAccessPointsOrAdapterChange);
|
2022-07-18 13:44:09 +08:00
|
|
|
|
2022-07-26 09:51:17 +08:00
|
|
|
m_bluetoothInter = new BluetoothInter("com.deepin.daemon.Bluetooth", "/com/deepin/daemon/Bluetooth", QDBusConnection::sessionBus(), this);
|
|
|
|
connect(m_bluetoothInter, &BluetoothInter::AdapterAdded, this, &AirplaneModePlugin::onWirelessAccessPointsOrAdapterChange);
|
|
|
|
connect(m_bluetoothInter, &BluetoothInter::AdapterRemoved, this, &AirplaneModePlugin::onWirelessAccessPointsOrAdapterChange);
|
|
|
|
}
|
2022-07-10 15:44:44 +08:00
|
|
|
|
2022-07-14 15:56:51 +08:00
|
|
|
if (!pluginIsDisable()) {
|
2022-07-15 14:49:45 +08:00
|
|
|
if (supportAirplaneMode()) {
|
2022-07-14 15:56:51 +08:00
|
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-26 09:51:17 +08:00
|
|
|
refreshAirplaneEnableState();
|
2021-11-06 16:30:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void AirplaneModePlugin::pluginStateSwitched()
|
|
|
|
{
|
|
|
|
m_proxyInter->saveValue(this, STATE_KEY, pluginIsDisable());
|
2022-02-15 10:19:12 +08:00
|
|
|
|
|
|
|
refreshAirplaneEnableState();
|
2021-11-06 16:30:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AirplaneModePlugin::pluginIsDisable()
|
|
|
|
{
|
|
|
|
return !m_proxyInter->getValue(this, STATE_KEY, true).toBool();
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget *AirplaneModePlugin::itemWidget(const QString &itemKey)
|
|
|
|
{
|
|
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
|
|
return m_item;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget *AirplaneModePlugin::itemTipsWidget(const QString &itemKey)
|
|
|
|
{
|
|
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
|
|
return m_item->tipsWidget();
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2022-05-09 10:56:08 +08:00
|
|
|
QWidget *AirplaneModePlugin::itemPopupApplet(const QString &itemKey)
|
|
|
|
{
|
2022-07-26 09:51:17 +08:00
|
|
|
if (!supportAirplaneMode()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2022-05-09 10:56:08 +08:00
|
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
|
|
return m_item->popupApplet();
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString AirplaneModePlugin::itemContextMenu(const QString &itemKey)
|
|
|
|
{
|
2022-07-26 09:51:17 +08:00
|
|
|
if (!supportAirplaneMode()) {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2022-05-09 10:56:08 +08:00
|
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
|
|
return m_item->contextMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AirplaneModePlugin::invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked)
|
|
|
|
{
|
|
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
|
|
m_item->invokeMenuItem(menuId, checked);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-06 16:30:46 +08:00
|
|
|
int AirplaneModePlugin::itemSortKey(const QString &itemKey)
|
|
|
|
{
|
|
|
|
const QString key = QString("pos_%1_%2").arg(itemKey).arg(Dock::Efficient);
|
|
|
|
|
|
|
|
return m_proxyInter->getValue(this, key, 4).toInt();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AirplaneModePlugin::setSortKey(const QString &itemKey, const int order)
|
|
|
|
{
|
|
|
|
const QString key = QString("pos_%1_%2").arg(itemKey).arg(Dock::Efficient);
|
|
|
|
|
|
|
|
m_proxyInter->saveValue(this, key, order);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AirplaneModePlugin::refreshIcon(const QString &itemKey)
|
|
|
|
{
|
|
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
|
|
m_item->refreshIcon();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-15 10:19:12 +08:00
|
|
|
void AirplaneModePlugin::refreshAirplaneEnableState()
|
2022-01-05 11:13:49 +08:00
|
|
|
{
|
2022-02-15 10:19:12 +08:00
|
|
|
onAirplaneEnableChanged(m_item->airplaneEnable());
|
2022-01-05 11:13:49 +08:00
|
|
|
}
|
|
|
|
|
2022-02-15 10:19:12 +08:00
|
|
|
void AirplaneModePlugin::onAirplaneEnableChanged(bool enable)
|
2022-01-05 11:13:49 +08:00
|
|
|
{
|
|
|
|
if (!m_proxyInter)
|
|
|
|
return;
|
|
|
|
|
2022-07-26 09:51:17 +08:00
|
|
|
if (supportAirplaneMode()) {
|
|
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
|
|
|
if (enable) {
|
|
|
|
m_proxyInter->saveValue(this, STATE_KEY, true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_proxyInter->saveValue(this, STATE_KEY, false);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (enable) {
|
|
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
|
|
|
} else {
|
|
|
|
m_proxyInter->itemRemoved(this, AIRPLANEMODE_KEY);
|
|
|
|
}
|
2022-02-15 10:19:12 +08:00
|
|
|
}
|
2022-01-05 11:13:49 +08:00
|
|
|
}
|
2022-02-15 10:19:12 +08:00
|
|
|
|
2022-07-18 13:44:09 +08:00
|
|
|
void AirplaneModePlugin::onWirelessAccessPointsOrAdapterChange()
|
|
|
|
{
|
|
|
|
if (!supportAirplaneMode()) {
|
|
|
|
m_proxyInter->itemRemoved(this, AIRPLANEMODE_KEY);
|
|
|
|
} else {
|
|
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-15 14:49:45 +08:00
|
|
|
bool AirplaneModePlugin::supportAirplaneMode() const
|
|
|
|
{
|
2022-07-26 09:51:17 +08:00
|
|
|
// dde-dconfig配置优先级高于设备优先级
|
|
|
|
bool bAirplane = false;
|
|
|
|
if (m_dconfig && m_dconfig->isValid()) {
|
|
|
|
bAirplane = m_dconfig->value("networkAirplaneMode", false).toBool();
|
|
|
|
}
|
|
|
|
if (!bAirplane) {
|
|
|
|
return bAirplane;
|
|
|
|
}
|
|
|
|
|
2022-07-15 14:49:45 +08:00
|
|
|
// 蓝牙和无线网络,只要有其中一个就允许显示飞行模式
|
|
|
|
QDBusInterface inter("com.deepin.system.Bluetooth",
|
|
|
|
"/com/deepin/system/Bluetooth",
|
|
|
|
"com.deepin.system.Bluetooth",
|
|
|
|
QDBusConnection::systemBus());
|
|
|
|
if (inter.isValid()) {
|
|
|
|
QDBusReply<QString> reply = inter.call("GetAdapters");
|
|
|
|
QString replyStr = reply.value();
|
|
|
|
QJsonDocument json = QJsonDocument::fromJson(replyStr.toUtf8());
|
|
|
|
QJsonArray array = json.array();
|
|
|
|
if (array.size() > 0 && !array[0].toObject()["Path"].toString().isEmpty()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QDBusInterface networkInter("org.freedesktop.NetworkManager",
|
|
|
|
"/org/freedesktop/NetworkManager",
|
|
|
|
"org.freedesktop.NetworkManager",
|
|
|
|
QDBusConnection::systemBus());
|
|
|
|
if (networkInter.isValid()) {
|
|
|
|
QDBusReply<QList<QDBusObjectPath>> reply = networkInter.call("GetAllDevices");
|
|
|
|
QList<QDBusObjectPath> replyStrList = reply.value();
|
|
|
|
for (QDBusObjectPath objPath : replyStrList) {
|
|
|
|
QDBusInterface deviceInter("org.freedesktop.NetworkManager",
|
|
|
|
objPath.path(),
|
|
|
|
"org.freedesktop.NetworkManager.Device",
|
|
|
|
QDBusConnection::systemBus());
|
|
|
|
if (deviceInter.isValid()) {
|
|
|
|
QVariant reply = deviceInter.property("DeviceType");
|
2022-07-18 13:44:09 +08:00
|
|
|
// 2 NM_DEVICE_TYPE_WIFI
|
2022-07-15 14:49:45 +08:00
|
|
|
if (2 == reply.toUInt()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-08-25 16:55:57 +08:00
|
|
|
bool AirplaneModePlugin::getAirplaneDconfig() const
|
|
|
|
{
|
|
|
|
bool airplane = false;
|
|
|
|
if (m_dconfig && m_dconfig->isValid()) {
|
|
|
|
airplane = m_dconfig->value("networkAirplaneMode", false).toBool();
|
|
|
|
}
|
|
|
|
return airplane;
|
|
|
|
}
|
|
|
|
|
2022-02-15 10:19:12 +08:00
|
|
|
|