123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import os
- import sys
- import json
- from dotenv import load_dotenv
- from lib.mqtt import create_client, update_disc, control_player, create_config
- # Load the .env file
- load_dotenv()
- # Define the MQTT server details
- broker = os.environ.get("broker")
- port = int(os.environ.get("port"))
- # MQTT username and password
- username = os.environ.get("username")
- password = os.environ.get("password")
- print(f"Broker: {broker}, Port: {port}, Username: {username}")
- client = create_client(broker, port, username, password)
- create_config(client)
- # Check if any arguments are passed
- if len(sys.argv) > 1:
- # Get the JSON argument from the command line
- json_str = sys.argv[1]
- try:
- # Convert the JSON string into a dictionary
- disc_data = json.loads(json_str)
- # Pass the parsed data to the update_disc function
- update_disc(client, disc_data)
- except json.JSONDecodeError as e:
- try:
- if json_str == "EJECT":
- control_player(client, "EJECT")
- update_disc(client, {"type": "album", "id": "EJECT"})
- elif json_str == "PLAY":
- control_player(client, "PLAY")
- else:
- print(f"Can't process {json_str}")
- except Exception:
- print(f"Invalid JSON format: {e}")
- else:
- print("No Command or Track Info Passed")
|