bumblebee-status/modules/contrib/spotify.py

80 lines
3.3 KiB
Python
Raw Normal View History

2020-04-25 10:49:02 +02:00
# pylint: disable=C0111,R0903
"""Displays the current song being played
Requires the following library:
* python-dbus
Parameters:
2020-04-25 10:49:25 +02:00
* spotify.format: Format string (defaults to '{artist} - {title}')
2020-04-25 10:49:02 +02:00
Available values are: {album}, {title}, {artist}, {trackNumber}, {playbackStatus}
* spotify.previous: Change binding for previous song (default is left click)
* spotify.next: Change binding for next song (default is right click)
* spotify.pause: Change binding for toggling pause (default is middle click)
Available options for spotify.previous, spotify.next and spotify.pause are:
LEFT_CLICK, RIGHT_CLICK, MIDDLE_CLICK, SCROLL_UP, SCROLL_DOWN
"""
import sys
2020-04-25 10:51:40 +02:00
import dbus
2020-04-25 10:49:02 +02:00
2020-04-25 10:51:40 +02:00
import core.module
import core.widget
import core.input
import core.decorators
2020-04-25 10:49:02 +02:00
2020-04-25 10:51:40 +02:00
class Module(core.module.Module):
def __init__(self, config, theme):
super().__init__(config, theme, core.widget.Widget(self.spotify))
2020-04-25 10:49:02 +02:00
2020-04-25 10:51:40 +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,
2020-04-25 10:49:02 +02:00
}
2020-04-25 10:51:40 +02:00
self.__song = ''
self.__format = self.parameter('format', '{artist} - {title}')
2020-04-25 10:49:25 +02:00
prev_button = self.parameter('previous', 'LEFT_CLICK')
next_button = self.parameter('next', 'RIGHT_CLICK')
pause_button = self.parameter('pause', 'MIDDLE_CLICK')
2020-04-25 10:49:02 +02:00
2020-04-25 10:49:25 +02:00
cmd = 'dbus-send --session --type=method_call --dest=org.mpris.MediaPlayer2.spotify \
/org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.'
2020-04-25 10:51:40 +02:00
core.input.register(self, button=buttons[prev_button],
2020-04-25 10:49:25 +02:00
cmd=cmd + 'Previous')
2020-04-25 10:51:40 +02:00
core.input.register(self, button=buttons[next_button],
2020-04-25 10:49:25 +02:00
cmd=cmd + 'Next')
2020-04-25 10:51:40 +02:00
core.input.register(self, button=buttons[pause_button],
2020-04-25 10:49:25 +02:00
cmd=cmd + 'PlayPause')
2020-04-25 10:49:02 +02:00
2020-04-25 10:51:40 +02:00
@core.decorators.scrollable
2020-04-25 10:49:02 +02:00
def spotify(self, widget):
return self.string_song
def hidden(self):
2020-04-25 10:49:25 +02:00
return self.string_song == ''
2020-04-25 10:49:02 +02:00
2020-04-25 10:51:40 +02:00
def update(self):
2020-04-25 10:49:02 +02:00
try:
bus = dbus.SessionBus()
2020-04-25 10:49:25 +02:00
spotify = bus.get_object('org.mpris.MediaPlayer2.spotify', '/org/mpris/MediaPlayer2')
2020-04-25 10:49:02 +02:00
spotify_iface = dbus.Interface(spotify, 'org.freedesktop.DBus.Properties')
props = spotify_iface.Get('org.mpris.MediaPlayer2.Player', 'Metadata')
playback_status = str(spotify_iface.Get('org.mpris.MediaPlayer2.Player', 'PlaybackStatus'))
2020-04-25 10:51:40 +02:00
self.__song = self.__format.format(album=str(props.get('xesam:album')),
2020-04-25 10:49:02 +02:00
title=str(props.get('xesam:title')),
artist=','.join(props.get('xesam:artist')),
trackNumber=str(props.get('xesam:trackNumber')),
2020-04-25 10:49:25 +02:00
playbackStatus=u'\u25B6' if playback_status=='Playing' else u'\u258D\u258D' if playback_status=='Paused' else '',)
2020-04-25 10:49:02 +02:00
except Exception:
2020-04-25 10:51:40 +02:00
self.__song = ''
2020-04-25 10:49:02 +02:00
@property
def string_song(self):
if sys.version_info.major < 3:
2020-04-25 10:51:40 +02:00
return unicode(self.__song)
return str(self.__song)
2020-04-25 10:49:02 +02:00
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4