poster.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package main
  2. import (
  3. "fmt"
  4. "io"
  5. "log"
  6. "net/http"
  7. "red-green/glom"
  8. "github.com/beego/x2j"
  9. )
  10. // https://zetcode.com/golang/getpostrequest/ post_req_form.go
  11. func Post(where string) *http.Response {
  12. resp, err := http.PostForm(where, nil)
  13. if err != nil {
  14. log.Fatalf("POST got non 200 code, %v", err)
  15. }
  16. return resp
  17. }
  18. func Get(where string) *http.Response {
  19. resp, err := http.Get(where)
  20. if err != nil {
  21. log.Fatalf("GET got non 200 code, %v", err)
  22. }
  23. return resp
  24. }
  25. // https://developer.roku.com/docs/developer-program/debugging/external-control-api.md#keypress-key-values codes
  26. func KeyPress(ip, command string) string {
  27. return fmt.Sprintf("http://%s:8060/keypress/%s", ip, command)
  28. }
  29. // https://developer.roku.com/docs/developer-program/debugging/external-control-api.md#general-ecp-commands
  30. func Query(ip, what string) string {
  31. return fmt.Sprintf("http://%s:8060/query/%s", ip, what)
  32. }
  33. func PerformKey(ip, command string) {
  34. Post(KeyPress(ip, command))
  35. }
  36. func GetCurrentPlay(ip string) map[string]interface{} {
  37. resp := Get(Query(ip, "media-player"))
  38. body, err := io.ReadAll(resp.Body)
  39. if err != nil {
  40. log.Panicf("Reading from body got error, %v", err)
  41. }
  42. r := make(map[string]interface{})
  43. err = x2j.Unmarshal(body, &r)
  44. if err != nil {
  45. log.Panicf("Got a error parsing XML, %v", err)
  46. }
  47. return r
  48. }
  49. func GetQuery(ip, command string) map[string]interface{} {
  50. resp := Get(Query(ip, command))
  51. body, err := io.ReadAll(resp.Body)
  52. if err != nil {
  53. log.Panicf("Reading from body got error, %v", err)
  54. }
  55. r := make(map[string]interface{})
  56. err = x2j.Unmarshal(body, &r)
  57. if err != nil {
  58. log.Panicf("Got a error parsing XML, %v", err)
  59. }
  60. return r
  61. }
  62. func main() {
  63. keys := GetKeys()
  64. _ = keys // Keep alive
  65. PerformKey("192.168.254.75", keys["mute"])
  66. //Post("http://192.168.254.75:8060/launch/74519")
  67. //PerformKey("192.168.254.75", keys["home"])
  68. /*
  69. //resp := Post("http://192.168.254.75:8060/keypress/volumeMute")
  70. //resp := Post(KeyPress("192.168.254.75", "volumeMute"))
  71. //resp := Get(Query("192.168.254.75", "device-info"))
  72. //resp := GetQuery("192.168.254.75", "tv-active-channel")
  73. resp := GetQuery("192.168.254.75", "tv-channels")
  74. //result, err := glom.Glom(resp, "tv-channels.channel")
  75. _, err := glom.Glom(resp, "*")
  76. if err != nil {
  77. log.Println(err)
  78. } else {
  79. //fmt.Println(result)
  80. fmt.Println(glom.GetPossible(result))
  81. }
  82. */
  83. // Query the current playing thing, and get the tv channels
  84. r := GetQuery("192.168.254.75", "media-player")
  85. name, _ := glom.Glom(r, "player.plugin.-name")
  86. id, _ := glom.Glom(r, "player.plugin.-id")
  87. r1 := GetQuery("192.168.254.75", "tv-channels")
  88. chan_name, _ := glom.Glom(r1, "tv-channels.channel.name")
  89. chan_phy_id, _ := glom.Glom(r1, "tv-channels.channel.physical-channel")
  90. chan_number, _ := glom.Glom(r1, "tv-channels.channel.number")
  91. // Debug print
  92. fmt.Printf("Name: %v (%v)\r\n", name, id)
  93. fmt.Printf("Channel: %v (%v / %v)\r\n", chan_name, chan_phy_id, chan_number)
  94. }