2011-09-28 13:16:26 +00:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2019-01-31 14:07:06 +00:00
|
|
|
/* exported Indicator */
|
2010-07-24 11:57:53 +00:00
|
|
|
|
2020-04-03 18:27:34 +00:00
|
|
|
const { Gio, GLib, GnomeBluetooth, GObject } = imports.gi;
|
2010-07-24 11:57:53 +00:00
|
|
|
|
|
|
|
const Main = imports.ui.main;
|
|
|
|
const PanelMenu = imports.ui.panelMenu;
|
|
|
|
const PopupMenu = imports.ui.popupMenu;
|
|
|
|
|
2018-09-06 00:55:20 +00:00
|
|
|
const { loadInterfaceXML } = imports.misc.fileUtils;
|
|
|
|
|
2013-11-26 13:06:41 +00:00
|
|
|
const BUS_NAME = 'org.gnome.SettingsDaemon.Rfkill';
|
|
|
|
const OBJECT_PATH = '/org/gnome/SettingsDaemon/Rfkill';
|
|
|
|
|
2018-09-06 00:55:20 +00:00
|
|
|
const RfkillManagerInterface = loadInterfaceXML('org.gnome.SettingsDaemon.Rfkill');
|
2013-11-26 13:06:41 +00:00
|
|
|
const RfkillManagerProxy = Gio.DBusProxy.makeProxyWrapper(RfkillManagerInterface);
|
|
|
|
|
2014-11-13 09:58:35 +00:00
|
|
|
const HAD_BLUETOOTH_DEVICES_SETUP = 'had-bluetooth-devices-setup';
|
|
|
|
|
2019-10-28 18:35:33 +00:00
|
|
|
var Indicator = GObject.registerClass(
|
|
|
|
class Indicator extends PanelMenu.SystemIndicator {
|
2019-07-16 09:24:13 +00:00
|
|
|
_init() {
|
|
|
|
super._init();
|
2013-06-06 21:27:25 +00:00
|
|
|
|
2013-07-19 10:05:47 +00:00
|
|
|
this._indicator = this._addIndicator();
|
|
|
|
this._indicator.icon_name = 'bluetooth-active-symbolic';
|
2014-11-13 09:58:35 +00:00
|
|
|
this._hadSetupDevices = global.settings.get_boolean(HAD_BLUETOOTH_DEVICES_SETUP);
|
2022-01-18 10:14:47 +00:00
|
|
|
|
2022-01-18 10:14:47 +00:00
|
|
|
this._client = new GnomeBluetooth.Client();
|
2022-02-24 18:35:06 +00:00
|
|
|
this._client.connect('notify::default-adapter', () => {
|
|
|
|
const newAdapter = this._client.default_adapter ?? null;
|
|
|
|
|
|
|
|
if (newAdapter && this._adapter)
|
|
|
|
this._setHadSetupDevices(this._getDeviceInfos().length > 0);
|
|
|
|
|
|
|
|
this._adapter = newAdapter;
|
|
|
|
|
|
|
|
this._deviceNotifyConnected.clear();
|
|
|
|
this._sync();
|
|
|
|
});
|
2022-01-18 10:14:47 +00:00
|
|
|
this._client.connect('notify::default-adapter-powered', this._sync.bind(this));
|
2010-07-24 11:57:53 +00:00
|
|
|
|
2013-11-26 13:06:41 +00:00
|
|
|
this._proxy = new RfkillManagerProxy(Gio.DBus.session, BUS_NAME, OBJECT_PATH,
|
2017-10-31 00:38:18 +00:00
|
|
|
(proxy, error) => {
|
2013-11-26 13:06:41 +00:00
|
|
|
if (error) {
|
|
|
|
log(error.message);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-28 20:47:37 +00:00
|
|
|
|
|
|
|
this._sync();
|
2017-10-31 00:38:18 +00:00
|
|
|
});
|
2020-04-03 18:27:34 +00:00
|
|
|
this._proxy.connect('g-properties-changed', this._queueSync.bind(this));
|
2013-11-26 13:06:41 +00:00
|
|
|
|
2014-11-13 09:58:35 +00:00
|
|
|
this._item = new PopupMenu.PopupSubMenuMenuItem(_("Bluetooth"), true);
|
|
|
|
|
|
|
|
this._toggleItem = new PopupMenu.PopupMenuItem('');
|
2017-10-31 00:38:18 +00:00
|
|
|
this._toggleItem.connect('activate', () => {
|
2022-01-18 10:14:47 +00:00
|
|
|
if (!this._client.default_adapter_powered) {
|
|
|
|
this._proxy.BluetoothAirplaneMode = false;
|
2022-01-18 10:14:47 +00:00
|
|
|
this._client.default_adapter_powered = true;
|
2022-01-18 10:14:47 +00:00
|
|
|
} else {
|
|
|
|
this._proxy.BluetoothAirplaneMode = true;
|
|
|
|
}
|
2017-10-31 00:38:18 +00:00
|
|
|
});
|
2014-11-13 09:58:35 +00:00
|
|
|
this._item.menu.addMenuItem(this._toggleItem);
|
|
|
|
|
2013-07-15 17:51:42 +00:00
|
|
|
this._item.menu.addSettingsAction(_("Bluetooth Settings"), 'gnome-bluetooth-panel.desktop');
|
2013-09-21 16:57:41 +00:00
|
|
|
this.menu.addMenuItem(this._item);
|
2010-07-24 11:57:53 +00:00
|
|
|
|
2020-04-03 18:27:34 +00:00
|
|
|
this._syncId = 0;
|
2020-04-03 18:44:41 +00:00
|
|
|
this._adapter = null;
|
2020-04-03 18:27:34 +00:00
|
|
|
|
2021-12-02 10:44:47 +00:00
|
|
|
this._deviceNotifyConnected = new Set();
|
|
|
|
|
|
|
|
const deviceStore = this._client.get_devices();
|
|
|
|
for (let i = 0; i < deviceStore.get_n_items(); i++)
|
|
|
|
this._connectDeviceNotify(deviceStore.get_item(i));
|
|
|
|
|
2021-12-02 10:44:47 +00:00
|
|
|
this._client.connect('device-removed', (c, path) => {
|
2021-12-02 10:44:47 +00:00
|
|
|
this._deviceNotifyConnected.delete(path);
|
2021-12-02 10:44:47 +00:00
|
|
|
this._queueSync.bind(this);
|
|
|
|
});
|
|
|
|
this._client.connect('device-added', (c, device) => {
|
|
|
|
this._connectDeviceNotify(device);
|
|
|
|
this._sync();
|
|
|
|
});
|
2017-12-02 00:27:35 +00:00
|
|
|
Main.sessionMode.connect('updated', this._sync.bind(this));
|
2013-07-15 17:51:42 +00:00
|
|
|
this._sync();
|
2017-10-31 01:19:44 +00:00
|
|
|
}
|
2010-07-24 11:57:53 +00:00
|
|
|
|
2020-04-03 18:44:41 +00:00
|
|
|
_setHadSetupDevices(value) {
|
|
|
|
if (this._hadSetupDevices === value)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this._hadSetupDevices = value;
|
|
|
|
global.settings.set_boolean(
|
|
|
|
HAD_BLUETOOTH_DEVICES_SETUP, this._hadSetupDevices);
|
|
|
|
}
|
|
|
|
|
2021-12-02 10:44:47 +00:00
|
|
|
_connectDeviceNotify(device) {
|
2021-12-02 10:44:47 +00:00
|
|
|
const path = device.get_object_path();
|
|
|
|
|
|
|
|
if (this._deviceNotifyConnected.has(path))
|
2021-12-02 10:44:47 +00:00
|
|
|
return;
|
2021-12-02 10:44:47 +00:00
|
|
|
|
2021-12-02 10:44:47 +00:00
|
|
|
device.connect('notify::alias', this._queueSync.bind(this));
|
|
|
|
device.connect('notify::paired', this._queueSync.bind(this));
|
|
|
|
device.connect('notify::trusted', this._queueSync.bind(this));
|
|
|
|
device.connect('notify::connected', this._queueSync.bind(this));
|
2021-12-02 10:44:47 +00:00
|
|
|
|
|
|
|
this._deviceNotifyConnected.add(path);
|
2017-10-31 01:19:44 +00:00
|
|
|
}
|
2013-11-26 13:46:13 +00:00
|
|
|
|
2021-12-02 10:44:47 +00:00
|
|
|
_getDeviceInfos() {
|
2021-12-02 10:44:47 +00:00
|
|
|
const deviceStore = this._client.get_devices();
|
2020-03-30 08:48:06 +00:00
|
|
|
let deviceInfos = [];
|
2021-12-02 10:44:47 +00:00
|
|
|
|
2021-12-02 10:44:47 +00:00
|
|
|
for (let i = 0; i < deviceStore.get_n_items(); i++) {
|
|
|
|
const device = deviceStore.get_item(i);
|
2021-12-02 10:44:47 +00:00
|
|
|
|
|
|
|
if (device.paired || device.trusted) {
|
2020-04-02 10:42:41 +00:00
|
|
|
deviceInfos.push({
|
2021-12-02 10:44:47 +00:00
|
|
|
connected: device.connected,
|
|
|
|
name: device.alias,
|
2020-04-02 10:42:41 +00:00
|
|
|
});
|
|
|
|
}
|
2013-11-26 13:46:13 +00:00
|
|
|
}
|
2014-11-13 09:58:35 +00:00
|
|
|
|
2020-03-30 08:48:06 +00:00
|
|
|
return deviceInfos;
|
2017-10-31 01:19:44 +00:00
|
|
|
}
|
2013-11-26 13:46:13 +00:00
|
|
|
|
2020-04-03 18:27:34 +00:00
|
|
|
_queueSync() {
|
|
|
|
if (this._syncId)
|
|
|
|
return;
|
|
|
|
this._syncId = GLib.idle_add(GLib.PRIORITY_DEFAULT, () => {
|
|
|
|
this._syncId = 0;
|
|
|
|
this._sync();
|
|
|
|
return GLib.SOURCE_REMOVE;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-10-31 00:03:21 +00:00
|
|
|
_sync() {
|
2022-01-31 22:40:39 +00:00
|
|
|
const devices = this._getDeviceInfos();
|
2020-03-30 08:48:06 +00:00
|
|
|
const connectedDevices = devices.filter(dev => dev.connected);
|
|
|
|
const nConnectedDevices = connectedDevices.length;
|
|
|
|
|
2014-03-15 07:53:54 +00:00
|
|
|
let sensitive = !Main.sessionMode.isLocked && !Main.sessionMode.isGreeter;
|
2010-07-24 11:57:53 +00:00
|
|
|
|
2014-03-15 07:53:54 +00:00
|
|
|
this.menu.setSensitive(sensitive);
|
2014-11-13 09:58:35 +00:00
|
|
|
this._indicator.visible = nConnectedDevices > 0;
|
2010-07-24 11:57:53 +00:00
|
|
|
|
2022-01-18 10:14:47 +00:00
|
|
|
const adapterPowered = this._client.default_adapter_powered;
|
|
|
|
|
2014-11-13 09:58:35 +00:00
|
|
|
// Remember if there were setup devices and show the menu
|
|
|
|
// if we've seen setup devices and we're not hard blocked
|
2020-04-03 12:34:21 +00:00
|
|
|
if (this._hadSetupDevices)
|
2019-04-12 21:00:49 +00:00
|
|
|
this._item.visible = !this._proxy.BluetoothHardwareAirplaneMode;
|
2014-11-13 09:58:35 +00:00
|
|
|
else
|
2022-01-18 10:14:47 +00:00
|
|
|
this._item.visible = adapterPowered;
|
2014-11-13 09:58:35 +00:00
|
|
|
|
2022-02-18 20:02:20 +00:00
|
|
|
this._item.icon.icon_name = adapterPowered
|
|
|
|
? 'bluetooth-active-symbolic' : 'bluetooth-disabled-symbolic';
|
|
|
|
|
2020-03-28 18:56:20 +00:00
|
|
|
if (nConnectedDevices > 1)
|
2015-08-06 09:19:37 +00:00
|
|
|
/* Translators: this is the number of connected bluetooth devices */
|
2020-08-21 19:30:03 +00:00
|
|
|
this._item.label.text = ngettext('%d Connected', '%d Connected', nConnectedDevices).format(nConnectedDevices);
|
2020-03-28 18:56:20 +00:00
|
|
|
else if (nConnectedDevices === 1)
|
|
|
|
this._item.label.text = connectedDevices[0].name;
|
2022-01-18 10:14:47 +00:00
|
|
|
else if (adapterPowered)
|
2020-03-28 18:56:20 +00:00
|
|
|
this._item.label.text = _('Bluetooth On');
|
2022-01-18 10:14:47 +00:00
|
|
|
else
|
|
|
|
this._item.label.text = _('Bluetooth Off');
|
2014-11-13 09:58:35 +00:00
|
|
|
|
2022-01-18 10:14:47 +00:00
|
|
|
this._toggleItem.label.text = adapterPowered ? _('Turn Off') : _('Turn On');
|
2017-10-31 01:19:44 +00:00
|
|
|
}
|
2019-07-16 09:24:13 +00:00
|
|
|
});
|