poster.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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.Printf("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.Printf("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.Printf("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.Printf("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.Printf("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.Printf("Got a error parsing XML, %v", err)
  59. }
  60. return r
  61. }
  62. func DebugInfo(ip string) {
  63. // Query the current playing thing, and get the tv channels
  64. r := GetQuery(ip, "media-player")
  65. name, _ := glom.Glom(r, "player.plugin.-name")
  66. id, _ := glom.Glom(r, "player.plugin.-id")
  67. /*r1 := GetQuery(ip, "tv-channels")
  68. chan_name, _ := glom.Glom(r1, "tv-channels.channel.name")
  69. chan_phy_id, _ := glom.Glom(r1, "tv-channels.channel.physical-channel")
  70. chan_number, _ := glom.Glom(r1, "tv-channels.channel.number")*/
  71. // Debug print
  72. fmt.Printf("Name: %v (%v)\r\n", name, id)
  73. //fmt.Printf("Channel: %v (%v / %v)\r\n", chan_name, chan_phy_id, chan_number)
  74. }
  75. func examplePost() {
  76. keys := GetKeys()
  77. _ = keys // Keep alive
  78. PerformKey("192.168.254.75", keys["mute"])
  79. //Post("http://192.168.254.75:8060/launch/74519")
  80. //PerformKey("192.168.254.75", keys["home"])
  81. /*
  82. //resp := Post("http://192.168.254.75:8060/keypress/volumeMute")
  83. //resp := Post(KeyPress("192.168.254.75", "volumeMute"))
  84. //resp := Get(Query("192.168.254.75", "device-info"))
  85. //resp := GetQuery("192.168.254.75", "tv-active-channel")
  86. resp := GetQuery("192.168.254.75", "tv-channels")
  87. //result, err := glom.Glom(resp, "tv-channels.channel")
  88. _, err := glom.Glom(resp, "*")
  89. if err != nil {
  90. log.Println(err)
  91. } else {
  92. //fmt.Println(result)
  93. fmt.Println(glom.GetPossible(result))
  94. }
  95. */
  96. // Query the current playing thing, and get the tv channels
  97. r := GetQuery("192.168.254.75", "media-player")
  98. name, _ := glom.Glom(r, "player.plugin.-name")
  99. id, _ := glom.Glom(r, "player.plugin.-id")
  100. r1 := GetQuery("192.168.254.75", "tv-channels")
  101. chan_name, _ := glom.Glom(r1, "tv-channels.channel.name")
  102. chan_phy_id, _ := glom.Glom(r1, "tv-channels.channel.physical-channel")
  103. chan_number, _ := glom.Glom(r1, "tv-channels.channel.number")
  104. // Debug print
  105. fmt.Printf("Name: %v (%v)\r\n", name, id)
  106. fmt.Printf("Channel: %v (%v / %v)\r\n", chan_name, chan_phy_id, chan_number)
  107. }