bumblebee-status/modules/contrib/bluetooth2.py

98 lines
3.1 KiB
Python
Raw Normal View History

2020-04-29 20:19:45 +02:00
"""Displays bluetooth status. Left mouse click launches manager app,
right click toggles bluetooth. Needs dbus-send to toggle bluetooth state and
python-dbus to count the number of connections
Parameters:
* bluetooth.manager : application to launch on click (blueman-manager)
"""
import os
import re
import subprocess
import dbus
import dbus.mainloop.glib
import logging
import core.module
import core.widget
import core.input
2020-04-29 20:19:45 +02:00
import util.cli
2020-04-29 20:19:45 +02:00
class Module(core.module.Module):
def __init__(self, config, theme):
super().__init__(config, theme, core.widget.Widget(self.status))
2020-04-29 20:19:45 +02:00
2020-04-29 20:20:04 +02:00
self.manager = self.parameter('manager', 'blueman-manager')
self._status = 'Off'
2020-04-29 20:19:45 +02:00
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
self._bus = dbus.SystemBus()
core.input.register(self, button=core.input.LEFT_MOUSE,
2020-04-29 20:19:45 +02:00
cmd=self.manager)
core.input.register(self, button=core.input.RIGHT_MOUSE,
2020-04-29 20:19:45 +02:00
cmd=self._toggle)
def status(self, widget):
"""Get status."""
return self._status
def update(self):
2020-04-29 20:19:45 +02:00
"""Update current state."""
state = len(subprocess.run(['bluetoothctl', 'list'], stdout=subprocess.PIPE).stdout)
if state > 0:
connected_devices = self.get_connected_devices()
2020-04-29 20:20:04 +02:00
self._status = 'On - {}'.format(connected_devices)
2020-04-29 20:19:45 +02:00
else:
2020-04-29 20:20:04 +02:00
self._status = 'Off'
2020-04-29 20:19:45 +02:00
adapters_cmd = 'rfkill list | grep Bluetooth'
if not len(subprocess.run(adapters_cmd, shell=True, stdout=subprocess.PIPE).stdout):
2020-04-29 20:20:04 +02:00
self._status = 'No Adapter Found'
2020-04-29 20:19:45 +02:00
return
def _toggle(self, widget=None):
"""Toggle bluetooth state."""
2020-04-29 20:20:04 +02:00
if 'On' in self._status:
state = 'false'
2020-04-29 20:19:45 +02:00
else:
2020-04-29 20:20:04 +02:00
state = 'true'
2020-04-29 20:19:45 +02:00
2020-04-29 20:20:04 +02:00
cmd = 'dbus-send --system --print-reply --dest=org.blueman.Mechanism /org/blueman/mechanism org.blueman.Mechanism.SetRfkillState boolean:%s' % state
2020-04-29 20:19:45 +02:00
logging.debug('bt: toggling bluetooth')
core.util.execute(cmd)
2020-04-29 20:19:45 +02:00
def state(self, widget):
"""Get current state."""
state = []
2020-04-29 20:20:04 +02:00
if self._status == 'No Adapter Found':
state.append('critical')
elif self._status == 'On - 0':
state.append('warning')
elif 'On' in self._status and not(self._status == 'On - 0'):
state.append('ON')
2020-04-29 20:19:45 +02:00
else:
2020-04-29 20:20:04 +02:00
state.append('critical')
2020-04-29 20:19:45 +02:00
return state
def get_connected_devices(self):
devices = 0
objects = dbus.Interface(
2020-04-29 20:20:04 +02:00
self._bus.get_object('org.bluez', '/'),
'org.freedesktop.DBus.ObjectManager'
2020-04-29 20:19:45 +02:00
).GetManagedObjects()
for path, interfaces in objects.items():
2020-04-29 20:20:04 +02:00
if 'org.bluez.Device1' in interfaces:
2020-04-29 20:19:45 +02:00
if dbus.Interface(
2020-04-29 20:20:04 +02:00
self._bus.get_object('org.bluez', path),
'org.freedesktop.DBus.Properties'
2020-04-29 20:19:45 +02:00
).Get(
2020-04-29 20:20:04 +02:00
'org.bluez.Device1', 'Connected'
2020-04-29 20:19:45 +02:00
):
devices += 1
return devices
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4