main.py 1006 B

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