2020-04-24 16:18:46 +02:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
|
|
|
"""Displays the current song being played
|
2020-05-05 20:33:27 +02:00
|
|
|
|
2020-04-24 16:18:46 +02:00
|
|
|
Requires the following library:
|
|
|
|
* python-dbus
|
2020-05-05 20:33:27 +02:00
|
|
|
|
2020-04-24 16:18:46 +02:00
|
|
|
Parameters:
|
2020-04-24 16:19:04 +02:00
|
|
|
* deezer.format: Format string (defaults to '{artist} - {title}')
|
2020-05-05 20:33:27 +02:00
|
|
|
Available values are: {album}, {title}, {artist}, {trackNumber}, {playbackStatus}
|
2020-04-24 16:18:46 +02:00
|
|
|
* deezer.previous: Change binding for previous song (default is left click)
|
|
|
|
* deezer.next: Change binding for next song (default is right click)
|
|
|
|
* deezer.pause: Change binding for toggling pause (default is middle click)
|
2020-05-05 20:33:27 +02:00
|
|
|
|
2020-04-24 16:18:46 +02:00
|
|
|
Available options for deezer.previous, deezer.next and deezer.pause are:
|
|
|
|
LEFT_CLICK, RIGHT_CLICK, MIDDLE_CLICK, SCROLL_UP, SCROLL_DOWN
|
2020-05-08 20:58:35 +02:00
|
|
|
|
|
|
|
contributed by `wwmoraes <https://github.com/wwmoraes>`_ - many thanks!
|
2020-04-24 16:18:46 +02:00
|
|
|
"""
|
|
|
|
|
2020-04-24 16:21:14 +02:00
|
|
|
import dbus
|
|
|
|
|
|
|
|
import core.module
|
|
|
|
import core.widget
|
|
|
|
import core.input
|
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
|
2020-04-24 16:21:14 +02:00
|
|
|
class Module(core.module.Module):
|
2020-04-26 16:39:24 +02:00
|
|
|
def __init__(self, config, theme):
|
|
|
|
super().__init__(config, theme, core.widget.Widget(self.deezer))
|
2020-04-24 16:21:14 +02:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
buttons = {
|
|
|
|
"LEFT_CLICK": core.input.LEFT_MOUSE,
|
|
|
|
"RIGHT_CLICK": core.input.RIGHT_MOUSE,
|
|
|
|
"MIDDLE_CLICK": core.input.MIDDLE_MOUSE,
|
|
|
|
"SCROLL_UP": core.input.WHEEL_UP,
|
|
|
|
"SCROLL_DOWN": core.input.WHEEL_DOWN,
|
|
|
|
}
|
|
|
|
|
|
|
|
self._song = ""
|
|
|
|
self._format = self.parameter("format", "{artist} - {title}")
|
|
|
|
prev_button = self.parameter("previous", "LEFT_CLICK")
|
|
|
|
next_button = self.parameter("next", "RIGHT_CLICK")
|
|
|
|
pause_button = self.parameter("pause", "MIDDLE_CLICK")
|
2020-04-24 16:18:46 +02:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
cmd = "dbus-send --session --type=method_call --dest=org.mpris.MediaPlayer2.deezer \
|
|
|
|
/org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player."
|
|
|
|
core.input.register(self, button=buttons[prev_button], cmd=cmd + "Previous")
|
|
|
|
core.input.register(self, button=buttons[next_button], cmd=cmd + "Next")
|
|
|
|
core.input.register(self, button=buttons[pause_button], cmd=cmd + "PlayPause")
|
2020-04-24 16:18:46 +02:00
|
|
|
|
|
|
|
def deezer(self, widget):
|
|
|
|
return str(self._song)
|
|
|
|
|
|
|
|
def hidden(self):
|
2020-05-03 11:15:52 +02:00
|
|
|
return str(self._song) == ""
|
2020-04-24 16:18:46 +02:00
|
|
|
|
2020-04-24 16:21:14 +02:00
|
|
|
def update(self):
|
2020-04-24 16:18:46 +02:00
|
|
|
try:
|
|
|
|
bus = dbus.SessionBus()
|
2020-05-03 11:15:52 +02:00
|
|
|
deezer = bus.get_object(
|
|
|
|
"org.mpris.MediaPlayer2.deezer", "/org/mpris/MediaPlayer2"
|
|
|
|
)
|
|
|
|
deezer_iface = dbus.Interface(deezer, "org.freedesktop.DBus.Properties")
|
|
|
|
props = deezer_iface.Get("org.mpris.MediaPlayer2.Player", "Metadata")
|
|
|
|
playback_status = str(
|
|
|
|
deezer_iface.Get("org.mpris.MediaPlayer2.Player", "PlaybackStatus")
|
|
|
|
)
|
|
|
|
self._song = self._format.format(
|
|
|
|
album=str(props.get("xesam:album")),
|
|
|
|
title=str(props.get("xesam:title")),
|
|
|
|
artist=",".join(props.get("xesam:artist")),
|
|
|
|
trackNumber=str(props.get("xesam:trackNumber")),
|
|
|
|
playbackStatus="\u25B6"
|
|
|
|
if playback_status == "Playing"
|
|
|
|
else "\u258D\u258D"
|
|
|
|
if playback_status == "Paused"
|
|
|
|
else "",
|
|
|
|
)
|
2020-04-24 16:18:46 +02:00
|
|
|
except Exception:
|
2020-05-03 11:15:52 +02:00
|
|
|
self._song = ""
|
|
|
|
|
2020-04-24 16:18:46 +02:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|