main.py 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. import sys
  2. from lib.mqtt import create_client, update_disc, control_player, create_config, check_current_disc
  3. from lib.home_assistant import load_disc, pause_media,play_media_again,play_radio,stop_media
  4. from dotenv import load_dotenv
  5. import os
  6. load_dotenv()
  7. client = create_client()
  8. create_config(client)
  9. use_mqtt = os.environ['use_mqtt'].lower() == 'true'
  10. # Check if any arguments are passed
  11. if len(sys.argv) > 1:
  12. # Get the JSON argument from the command line
  13. input_str = sys.argv[1]
  14. # Convert the JSON string into a dictionary
  15. disc_data = input_str.split(":")
  16. if disc_data[0] == "ytmusic":
  17. disc_object = {
  18. "name":disc_data[1],
  19. "type":disc_data[2],
  20. "id":disc_data[3]
  21. }
  22. # Check if disc is the same as last inserted
  23. if (disc_object == check_current_disc(client)):
  24. # If disc is the same, PLAY
  25. control_player(client, "PLAY")
  26. else:
  27. # Pass the parsed data to the update_disc function
  28. if use_mqtt:
  29. control_player(client, "PLAY")
  30. update_disc(client, disc_data)
  31. else:
  32. load_disc(disc_object)
  33. else:
  34. if input_str == "EJECT":
  35. # PAUSE the current playing item
  36. if use_mqtt:
  37. control_player(client, "PAUSE")
  38. else:
  39. pause_media()
  40. elif input_str == "PLAY":
  41. # PLAY the current playing item
  42. if use_mqtt:
  43. control_player(client, "PLAY")
  44. else:
  45. play_media_again()
  46. elif input_str == "PAUSE":
  47. # PAUSE the current playing item
  48. if use_mqtt:
  49. control_player(client, "PAUSE")
  50. else:
  51. pause_media()
  52. else:
  53. print(f"Can't process {input_str}")