webserver.go 2.7 KB

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