main.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. # Path to your .env file
  7. dotenv_path = '/home/dietpi/floppy-ytube-player/.env'
  8. # Load the .env file
  9. load_dotenv(dotenv_path)
  10. # Define the MQTT server details
  11. broker = os.environ.get("broker")
  12. port = int(os.environ.get("port"))
  13. # MQTT username and password
  14. username = os.environ.get('username')
  15. password = os.environ.get('password')
  16. print(f"Broker: {broker}, Port: {port}, Username: {username}")
  17. client = create_client(broker, port, username, password)
  18. create_config(client)
  19. # Check if any arguments are passed
  20. if len(sys.argv) > 1:
  21. # Get the JSON argument from the command line
  22. json_str = sys.argv[1]
  23. try:
  24. # Convert the JSON string into a dictionary
  25. disc_data = json.loads(json_str)
  26. # Pass the parsed data to the update_disc function
  27. update_disc(client, disc_data)
  28. except json.JSONDecodeError as e:
  29. try:
  30. if json_str == "EJECT":
  31. control_player(client, "EJECT")
  32. update_disc(client, {"type":"album", "id":"EJECT"})
  33. elif json_str == "PLAY":
  34. control_player(client, "PLAY")
  35. except Exception:
  36. print(f"Invalid JSON format: {e}")
  37. else:
  38. print("No JSON argument passed, running default control_player action.")
  39. # You can still have the default behavior if no JSON is passed
  40. # control_player(client, "EJECT")