spotify/spotify.py

121 lines
4.7 KiB
Python
Raw Normal View History

2022-07-23 21:51:13 +02:00
import config
import logging
2022-09-13 06:20:31 +01:00
import mqtt
2022-07-23 21:51:13 +02:00
import report
import socket
2022-07-23 21:51:13 +02:00
import subprocess
import time
2022-08-18 12:39:48 +02:00
import spotipy
from spotipy.oauth2 import SpotifyClientCredentials
import config
import json
2022-07-23 21:51:13 +02:00
try:
from config import APP_NAME as ROOT_LOGGER_NAME
except ImportError:
ROOT_LOGGER_NAME = 'root'
logger = logging.getLogger(ROOT_LOGGER_NAME).getChild('main')
2022-09-13 06:20:31 +01:00
mc = mqtt.mqtt_client(config.APP_NAME, config.MQTT_SERVER, 1883, config.MQTT_USER, config.MQTT_PASS)
2022-07-23 21:51:13 +02:00
class librespot(object):
ON_CMD = ['play', ]
OFF_CMD = ['pause', 'stop', ]
2022-08-18 12:39:48 +02:00
def __init__(self, state_callback, title_callback):
2022-07-23 21:51:13 +02:00
logger.info("Starting Librespot...")
self.__state_callback__ = state_callback
2022-08-18 12:39:48 +02:00
self.__title_callback__ = title_callback
2022-07-23 21:51:13 +02:00
self.__process__ = subprocess.Popen(["librespot", "-v", "--name", config.DEVICE_NAME],
shell=False,
# We pipe the output to an internal pipe
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
2022-07-23 21:51:13 +02:00
self.__state__ = None
2022-08-24 14:30:13 +01:00
self.__preload_state__ = False
2022-08-18 12:39:48 +02:00
self.__title__ = None
self.__title_preload__ = None
self.__title_published__ = None
2022-07-23 21:51:13 +02:00
self.set_state(False)
2022-08-18 12:39:48 +02:00
self.set_title("")
2022-07-23 21:51:13 +02:00
def run(self):
while True:
output = self.__process__.stdout.readline()
2022-07-23 21:51:13 +02:00
# Polling returns None when the program is still running, return_code otherwise
return_code = self.__process__.poll()
if return_code is not None:
self.__process__.close()
# Program ended, get exit/return code
raise RuntimeError("Command '{}' finished with exit code {}".format(command, return_code))
# If the output is not empty, feed it to the function, strip the newline first
if output:
out_txt = output.decode('utf-8').strip('\n').strip()
out_txt = out_txt[out_txt.find(']') + 2:]
2022-08-24 14:30:13 +01:00
#logger.debug("librespot output: %s", out_txt)
2022-08-18 12:39:48 +02:00
if out_txt.lower().startswith("loading"):
2022-08-24 14:30:13 +01:00
logger.debug("librespot: %s", out_txt)
title = out_txt[out_txt.index("<") + 1:out_txt.index(">")]
2022-08-24 14:30:13 +01:00
if self.__preload_state__:
self.__title_preload__ = title
logger.info("Upcomming Title %s identified", title)
2022-08-18 12:39:48 +02:00
else:
self.__title__ = title
logger.info("Current Title %s identified", title)
2022-07-23 21:51:13 +02:00
if "command=" in out_txt:
command = out_txt[out_txt.find('command=') + 8:].strip().lower()
logger.debug("librespot command: %s", command)
2022-08-24 14:30:13 +01:00
if command.startswith("preload"):
self.__preload_state__ = True
2022-07-23 21:51:13 +02:00
if command.startswith("load"):
self.set_state(command.split(',')[2].strip() == 'true')
2022-08-24 14:30:13 +01:00
#
self.__preload_state__ = False
if self.__title_preload__ is not None:
self.__title__ = self.__title_preload__
self.__title_preload__ = None
2022-07-23 21:51:13 +02:00
#
2022-08-24 14:30:13 +01:00
elif command in self.ON_CMD:
2022-07-23 21:51:13 +02:00
self.set_state(True)
2022-08-24 14:30:13 +01:00
elif command in self.OFF_CMD:
2022-07-23 21:51:13 +02:00
self.set_state(False)
2022-08-24 14:30:13 +01:00
if self.__state__:
self.set_title(self.__title__)
2022-08-24 14:30:13 +01:00
else:
self.set_title("")
2022-07-23 21:51:13 +02:00
def set_state(self, target_state):
if target_state != self.__state__:
self.__state__ = target_state
logger.info("spotify state changed to %s", self.__state__)
self.__state_callback__(self.__state__)
2022-08-18 12:39:48 +02:00
def set_title(self, title):
if self.__title_published__ != title:
self.__title_published__= title
logger.info("spotify title changed to \"%s\"", title)
self.__title_callback__(title)
2022-08-18 12:39:48 +02:00
def send_state_msg_mqtt(state):
2022-09-13 06:20:31 +01:00
topic = config.MQTT_TOPIC + "/state"
logger.info("Sending Spotify status information to mqtt %s = %s", topic, str(state))
mc.send(topic, "true" if state else "false")
2022-07-23 21:51:13 +02:00
2022-08-18 12:39:48 +02:00
def send_title_msg_mqtt(title):
2022-09-13 06:20:31 +01:00
topic = config.MQTT_TOPIC + "/title"
logger.info("Sending Spotify status information to mqtt %s = %s", topic, title)
mc.send(topic, title)
2022-07-23 21:51:13 +02:00
if __name__ == '__main__':
report.appLoggingConfigure(config.__BASEPATH__, config.LOGTARGET, ((config.APP_NAME, config.LOGLVL), ), fmt=config.formatter, host=config.LOGHOST, port=config.LOGPORT)
2022-08-18 12:39:48 +02:00
ls = librespot(send_state_msg_mqtt, send_title_msg_mqtt)
2022-07-23 21:51:13 +02:00
ls.run()
2022-08-18 12:39:48 +02:00