main.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import os
  2. import sys
  3. import time
  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. time.sleep(1)
  37. update_disc(client, disc_data)
  38. else:
  39. if input_str == "EJECT":
  40. # PAUSE the current playing item
  41. control_player(client, "PAUSE")
  42. elif input_str == "PLAY":
  43. # PLAY the current playing item
  44. control_player(client, "PLAY")
  45. elif input_str == "PAUSE":
  46. # PAUSE the current playing item
  47. control_player(client, "PAUSE")
  48. else:
  49. print(f"Can't process {input_str}")