poster.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. return nil
  23. } else {
  24. return resp
  25. }
  26. }
  27. // https://developer.roku.com/docs/developer-program/debugging/external-control-api.md#keypress-key-values codes
  28. func KeyPress(ip, command string) string {
  29. return fmt.Sprintf("http://%s:8060/keypress/%s", ip, command)
  30. }
  31. // https://developer.roku.com/docs/developer-program/debugging/external-control-api.md#general-ecp-commands
  32. func Query(ip, what string) string {
  33. return fmt.Sprintf("http://%s:8060/query/%s", ip, what)
  34. }
  35. func PerformKey(ip, command string) {
  36. Post(KeyPress(ip, command))
  37. }
  38. func GetCurrentPlay(ip string) map[string]interface{} {
  39. resp := Get(Query(ip, "media-player"))
  40. if resp == nil {
  41. return nil
  42. }
  43. body, err := io.ReadAll(resp.Body)
  44. if err != nil {
  45. log.Printf("Reading from body got error, %v", err)
  46. }
  47. r := make(map[string]interface{})
  48. err = x2j.Unmarshal(body, &r)
  49. if err != nil {
  50. log.Printf("Got a error parsing XML, %v", err)
  51. }
  52. return r
  53. }
  54. func GetQuery(ip, command string) map[string]interface{} {
  55. resp := Get(Query(ip, command))
  56. if resp == nil {
  57. return nil
  58. }
  59. body, err := io.ReadAll(resp.Body)
  60. if err != nil {
  61. log.Printf("Reading from body got error, %v", err)
  62. }
  63. r := make(map[string]interface{})
  64. err = x2j.Unmarshal(body, &r)
  65. if err != nil {
  66. log.Printf("Got a error parsing XML, %v", err)
  67. }
  68. return r
  69. }
  70. func DebugInfo(ip string) string {
  71. // Query the current playing thing, and get the tv channels
  72. r := GetQuery(ip, "media-player")
  73. if r == nil {
  74. return ""
  75. }
  76. name, _ := glom.Glom(r, "player.plugin.-name")
  77. id, _ := glom.Glom(r, "player.plugin.-id")
  78. /*r1 := GetQuery(ip, "tv-channels")
  79. chan_name, _ := glom.Glom(r1, "tv-channels.channel.name")
  80. chan_phy_id, _ := glom.Glom(r1, "tv-channels.channel.physical-channel")
  81. chan_number, _ := glom.Glom(r1, "tv-channels.channel.number")*/
  82. // Debug print
  83. fmt.Printf("Name: %v (%v)\r\n", name, id)
  84. //fmt.Printf("Channel: %v (%v / %v)\r\n", chan_name, chan_phy_id, chan_number)
  85. return fmt.Sprintf("%v (%v)", name, id)
  86. }
  87. func examplePost() {
  88. keys := GetKeys()
  89. _ = keys // Keep alive
  90. PerformKey("192.168.254.75", keys["mute"])
  91. //Post("http://192.168.254.75:8060/launch/74519")
  92. //PerformKey("192.168.254.75", keys["home"])
  93. /*
  94. //resp := Post("http://192.168.254.75:8060/keypress/volumeMute")
  95. //resp := Post(KeyPress("192.168.254.75", "volumeMute"))
  96. //resp := Get(Query("192.168.254.75", "device-info"))
  97. //resp := GetQuery("192.168.254.75", "tv-active-channel")
  98. resp := GetQuery("192.168.254.75", "tv-channels")
  99. //result, err := glom.Glom(resp, "tv-channels.channel")
  100. _, err := glom.Glom(resp, "*")
  101. if err != nil {
  102. log.Println(err)
  103. } else {
  104. //fmt.Println(result)
  105. fmt.Println(glom.GetPossible(result))
  106. }
  107. */
  108. // Query the current playing thing, and get the tv channels
  109. r := GetQuery("192.168.254.75", "media-player")
  110. name, _ := glom.Glom(r, "player.plugin.-name")
  111. id, _ := glom.Glom(r, "player.plugin.-id")
  112. r1 := GetQuery("192.168.254.75", "tv-channels")
  113. chan_name, _ := glom.Glom(r1, "tv-channels.channel.name")
  114. chan_phy_id, _ := glom.Glom(r1, "tv-channels.channel.physical-channel")
  115. chan_number, _ := glom.Glom(r1, "tv-channels.channel.number")
  116. // Debug print
  117. fmt.Printf("Name: %v (%v)\r\n", name, id)
  118. fmt.Printf("Channel: %v (%v / %v)\r\n", chan_name, chan_phy_id, chan_number)
  119. }