main.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. # Convert the JSON string into a dictionary
  22. disc_data = input_str.split(":")
  23. if disc_data[0] == "ytmusic":
  24. disc_object = {
  25. "name":disc_data[1],
  26. "type":disc_data[2],
  27. "id":disc_data[3]
  28. }
  29. # Check if disc is the same as last inserted
  30. if (disc_object == check_current_disc(client)):
  31. # If disc is the same, PLAY
  32. control_player(client, "PLAY")
  33. else:
  34. # Pass the parsed data to the update_disc function
  35. control_player(client, "PLAY")
  36. update_disc(client, disc_data)
  37. else:
  38. if input_str == "EJECT":
  39. # PAUSE the current playing item
  40. control_player(client, "PAUSE")
  41. elif input_str == "PLAY":
  42. # PLAY the current playing item
  43. control_player(client, "PLAY")
  44. elif input_str == "PAUSE":
  45. # PAUSE the current playing item
  46. control_player(client, "PAUSE")
  47. else:
  48. print(f"Can't process {input_str}")