main.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import sys
  2. from lib.mqtt import create_client, update_disc, control_player, create_config, check_current_disc
  3. client = create_client()
  4. create_config(client)
  5. # Check if any arguments are passed
  6. if len(sys.argv) > 1:
  7. # Get the JSON argument from the command line
  8. input_str = sys.argv[1]
  9. # Convert the JSON string into a dictionary
  10. disc_data = input_str.split(":")
  11. if disc_data[0] == "ytmusic":
  12. disc_object = {
  13. "name":disc_data[1],
  14. "type":disc_data[2],
  15. "id":disc_data[3]
  16. }
  17. # Check if disc is the same as last inserted
  18. if (disc_object == check_current_disc(client)):
  19. # If disc is the same, PLAY
  20. control_player(client, "PLAY")
  21. else:
  22. # Pass the parsed data to the update_disc function
  23. control_player(client, "PLAY")
  24. update_disc(client, disc_data)
  25. else:
  26. if input_str == "EJECT":
  27. # PAUSE the current playing item
  28. control_player(client, "PAUSE")
  29. elif input_str == "PLAY":
  30. # PLAY the current playing item
  31. control_player(client, "PLAY")
  32. elif input_str == "PAUSE":
  33. # PAUSE the current playing item
  34. control_player(client, "PAUSE")
  35. else:
  36. print(f"Can't process {input_str}")