webserver.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package main
  2. import (
  3. "fmt"
  4. "log"
  5. "net/http"
  6. "github.com/labstack/echo/v4"
  7. "github.com/labstack/echo/v4/middleware"
  8. )
  9. type WebServer struct {
  10. Tv_ip string
  11. Port string
  12. Host string
  13. At string
  14. Device_list []string
  15. }
  16. func (w *WebServer) Init(tv, host, port string) {
  17. w.Tv_ip = tv
  18. w.Host = host
  19. w.Port = port
  20. }
  21. func (w *WebServer) homepage(c echo.Context) error {
  22. //return c.String(http.StatusOK, "Hello World!")
  23. /*file, err := os.ReadFile("templates/index.html")
  24. if err != nil {
  25. return err
  26. }*/
  27. //return c.HTMLBlob(http.StatusOK, file)
  28. data := make(map[string]interface{})
  29. data["at"] = w.At
  30. return c.Render(http.StatusOK, "index.html", data)
  31. }
  32. func (w *WebServer) connectpage(c echo.Context) error {
  33. data := make(map[string]interface{})
  34. data["connected"] = "Connected: " + w.Tv_ip
  35. //var dev_list []string
  36. var list []string
  37. list = append(list, w.Device_list...)
  38. data["resp"] = list
  39. return c.Render(http.StatusOK, "connect.html", data)
  40. }
  41. func (w *WebServer) connector(c echo.Context) error {
  42. cmd := c.Param("cmd")
  43. w.Tv_ip = cmd
  44. log.Printf("Switched to %s", cmd)
  45. return c.Redirect(http.StatusOK, "/connect")
  46. }
  47. func (w *WebServer) con_refresh(c echo.Context) error {
  48. log.Printf("Recieved Connection Refresh")
  49. w.Device_list = GetDevices()
  50. log.Printf("Found %d devices", len(w.Device_list))
  51. return c.Redirect(http.StatusOK, "/connect")
  52. }
  53. func (w *WebServer) tvcmd(c echo.Context) error {
  54. //w.At = DebugInfo(w.Tv_ip)
  55. cmd := c.Param("cmd")
  56. switch cmd {
  57. case "power":
  58. PerformKey(w.Tv_ip, "power")
  59. case "back":
  60. PerformKey(w.Tv_ip, "back")
  61. case "home":
  62. PerformKey(w.Tv_ip, "home")
  63. case "up":
  64. PerformKey(w.Tv_ip, "up")
  65. case "left":
  66. PerformKey(w.Tv_ip, "left")
  67. case "ok":
  68. PerformKey(w.Tv_ip, "select")
  69. case "right":
  70. PerformKey(w.Tv_ip, "right")
  71. case "down":
  72. PerformKey(w.Tv_ip, "down")
  73. case "rewind":
  74. PerformKey(w.Tv_ip, "rev")
  75. case "play-pause":
  76. PerformKey(w.Tv_ip, "play")
  77. case "fast-forward":
  78. PerformKey(w.Tv_ip, "fwd")
  79. case "star":
  80. PerformKey(w.Tv_ip, "info")
  81. case "reload":
  82. PerformKey(w.Tv_ip, "instantreplay")
  83. case "vol+":
  84. PerformKey(w.Tv_ip, "volumeup")
  85. case "vol-":
  86. PerformKey(w.Tv_ip, "volumedown")
  87. case "mute":
  88. PerformKey(w.Tv_ip, "volumemute")
  89. case "display":
  90. w.At = DebugInfo(w.Tv_ip)
  91. data := make(map[string]interface{})
  92. data["at"] = w.At
  93. return c.String(http.StatusOK, w.At)
  94. case "pluto":
  95. Post(fmt.Sprintf("http://%s:8060/launch/%d", w.Tv_ip, 74519))
  96. case "pluto-cops":
  97. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=367&mediaType=live", w.Tv_ip, 74519))
  98. case "pluto-thefirst":
  99. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=244&mediaType=live", w.Tv_ip, 74519))
  100. case "pluto-mst3k":
  101. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=488&mediaType=live", w.Tv_ip, 74519))
  102. case "pluto-rifftrax":
  103. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=489&mediaType=live", w.Tv_ip, 74519))
  104. case "pluto-startrek":
  105. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=150&mediaType=live", w.Tv_ip, 74519))
  106. default:
  107. c.Echo().Logger.Printf("Got '%v'\r\n", cmd)
  108. }
  109. return c.Redirect(http.StatusOK, "/")
  110. //return c.Render(http.StatusOK, "index.html", data)
  111. }
  112. func main() {
  113. web := WebServer{}
  114. web.Init("192.168.254.75", "", "8000")
  115. e := echo.New()
  116. e.Use(middleware.Logger())
  117. e.Use(middleware.Static("static"))
  118. e.Renderer = NewRenderer("./templates/*.html", true)
  119. e.GET("/", web.homepage)
  120. e.GET("/tv/:cmd", web.tvcmd)
  121. e.GET("/connect", web.connectpage)
  122. e.GET("/con/:cmd", web.connector)
  123. e.GET("/conn_refresh", web.con_refresh)
  124. e.Logger.Fatal(e.Start(fmt.Sprintf("%s:%s", web.Host, web.Port)))
  125. }