main.py 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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_dotenv()
  7. # Define the MQTT server details
  8. broker = os.environ.get("broker")
  9. port = int(os.environ.get("port"))
  10. # MQTT username and password
  11. username = os.environ.get('username')
  12. password = os.environ.get('password')
  13. client = create_client(broker, port, username, password)
  14. create_config(client)
  15. # Check if any arguments are passed
  16. if len(sys.argv) > 1:
  17. # Get the JSON argument from the command line
  18. json_str = sys.argv[1]
  19. try:
  20. # Convert the JSON string into a dictionary
  21. disc_data = json.loads(json_str)
  22. # Pass the parsed data to the update_disc function
  23. update_disc(client, disc_data)
  24. except json.JSONDecodeError as e:
  25. print(f"Invalid JSON format: {e}")
  26. else:
  27. print("No JSON argument passed, running default control_player action.")
  28. # You can still have the default behavior if no JSON is passed
  29. # control_player(client, "EJECT")