main.py 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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, check_current_disc
  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. input_str = sys.argv[1]
  21. try:
  22. # Convert the JSON string into a dictionary
  23. disc_data = input_str.split(":")
  24. if disc_data[0] == "ytmusic":
  25. disc_object = {
  26. "Name":disc_data[1],
  27. "type":disc_data[2],
  28. "id":disc_data[3]
  29. }
  30. # Check if disc is the same as last inserted
  31. if (disc_object == json.loads(check_current_disc(client))):
  32. # If disc is the same, PLAY
  33. control_player(client, "PLAY")
  34. else:
  35. # Pass the parsed data to the update_disc function
  36. control_player(client, "PLAY")
  37. update_disc(client, disc_data)
  38. except json.JSONDecodeError as e:
  39. try:
  40. if input_str == "EJECT":
  41. # PAUSE the current playing item
  42. control_player(client, "PAUSE")
  43. elif input_str == "PLAY":
  44. # PLAY the current playing item
  45. control_player(client, "PLAY")
  46. elif input_str == "PAUSE":
  47. # PAUSE the current playing item
  48. control_player(client, "PAUSE")
  49. else:
  50. print(f"Can't process {input_str}")
  51. except Exception:
  52. print(f"Invalid JSON format: {e}")
  53. else:
  54. print("No Command or Track Info Passed")