main.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import os
  2. import sys
  3. import json
  4. from dotenv import load_dotenv
  5. from lib.mqtt import create_client, update_disc, control_player, create_config
  6. # Load the .env file
  7. load_dotenv()
  8. # Define the MQTT server details
  9. broker = os.environ.get("broker")
  10. port = int(os.environ.get("port"))
  11. # MQTT username and password
  12. username = os.environ.get("username")
  13. password = os.environ.get("password")
  14. print(f"Broker: {broker}, Port: {port}, Username: {username}")
  15. client = create_client(broker, port, username, password)
  16. create_config(client)
  17. # Check if any arguments are passed
  18. if len(sys.argv) > 1:
  19. # Get the JSON argument from the command line
  20. json_str = sys.argv[1]
  21. try:
  22. # Convert the JSON string into a dictionary
  23. disc_data = json.loads(json_str)
  24. # Pass the parsed data to the update_disc function
  25. update_disc(client, disc_data)
  26. except json.JSONDecodeError as e:
  27. try:
  28. if json_str == "EJECT":
  29. control_player(client, "EJECT")
  30. update_disc(client, {"type": "album", "id": "EJECT"})
  31. elif json_str == "PLAY":
  32. control_player(client, "PLAY")
  33. except Exception:
  34. print(f"Invalid JSON format: {e}")
  35. else:
  36. print("No JSON argument passed, running default control_player action.")