webserver.go 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. WakeOnLan map[string]string
  16. Power bool
  17. }
  18. func (w *WebServer) Init(tv, host, port string) {
  19. w.Tv_ip = tv
  20. w.Host = host
  21. w.Port = port
  22. w.WakeOnLan = make(map[string]string)
  23. }
  24. func (w *WebServer) homepage(c echo.Context) error {
  25. //return c.String(http.StatusOK, "Hello World!")
  26. /*file, err := os.ReadFile("templates/index.html")
  27. if err != nil {
  28. return err
  29. }*/
  30. //return c.HTMLBlob(http.StatusOK, file)
  31. data := make(map[string]interface{})
  32. data["at"] = w.At
  33. return c.Render(http.StatusOK, "index.html", data)
  34. }
  35. func (w *WebServer) connectpage(c echo.Context) error {
  36. data := make(map[string]interface{})
  37. data["connected"] = "Connected: " + w.Tv_ip
  38. //var dev_list []string
  39. var list []string
  40. list = append(list, w.Device_list...)
  41. data["resp"] = list
  42. return c.Render(http.StatusOK, "connect.html", data)
  43. }
  44. func (w *WebServer) connector(c echo.Context) error {
  45. cmd := c.Param("cmd")
  46. w.Tv_ip = cmd
  47. log.Printf("Switched to %s", cmd)
  48. return c.Redirect(http.StatusOK, "/connect")
  49. }
  50. func (w *WebServer) con_refresh(c echo.Context) error {
  51. log.Printf("Recieved Connection Refresh")
  52. var list *[]string
  53. list, w.WakeOnLan = GetDevices(w.WakeOnLan)
  54. log.Printf("Found %d devices", len(*list))
  55. log.Printf("Obtained %d WOLs", len(w.WakeOnLan))
  56. for ip, mac := range w.WakeOnLan {
  57. fmt.Printf("IP='%v' MAC='%v'\n", ip, mac)
  58. }
  59. for _, ip := range *list {
  60. if ip != w.Tv_ip {
  61. w.Device_list = append(w.Device_list, ip)
  62. }
  63. }
  64. //w.Device_list = *list
  65. return c.Redirect(http.StatusTemporaryRedirect, "/connect")
  66. }
  67. func (w *WebServer) tvcmd(c echo.Context) error {
  68. //w.At = DebugInfo(w.Tv_ip)
  69. cmd := c.Param("cmd")
  70. switch cmd {
  71. case "power":
  72. PerformKey(w.Tv_ip, "power")
  73. case "back":
  74. PerformKey(w.Tv_ip, "back")
  75. case "home":
  76. PerformKey(w.Tv_ip, "home")
  77. case "up":
  78. PerformKey(w.Tv_ip, "up")
  79. case "left":
  80. PerformKey(w.Tv_ip, "left")
  81. case "ok":
  82. PerformKey(w.Tv_ip, "select")
  83. case "right":
  84. PerformKey(w.Tv_ip, "right")
  85. case "down":
  86. PerformKey(w.Tv_ip, "down")
  87. case "rewind":
  88. PerformKey(w.Tv_ip, "rev")
  89. case "play-pause":
  90. PerformKey(w.Tv_ip, "play")
  91. case "fast-forward":
  92. PerformKey(w.Tv_ip, "fwd")
  93. case "star":
  94. PerformKey(w.Tv_ip, "info")
  95. case "reload":
  96. PerformKey(w.Tv_ip, "instantreplay")
  97. case "vol+":
  98. PerformKey(w.Tv_ip, "volumeup")
  99. case "vol-":
  100. PerformKey(w.Tv_ip, "volumedown")
  101. case "mute":
  102. PerformKey(w.Tv_ip, "volumemute")
  103. case "display":
  104. w.At = DebugInfo(w.Tv_ip)
  105. device := GetDeviceInfo(w.Tv_ip)
  106. if device["power-mode"] == "PowerOn" {
  107. w.Power = true
  108. } else {
  109. w.Power = false
  110. }
  111. data := make(map[string]interface{})
  112. data["at"] = w.At
  113. data["power"] = w.Power
  114. return c.JSON(http.StatusOK, data)
  115. case "pluto":
  116. Post(fmt.Sprintf("http://%s:8060/launch/%d", w.Tv_ip, 74519))
  117. case "pluto-cops":
  118. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=367&mediaType=live", w.Tv_ip, 74519))
  119. case "pluto-thefirst":
  120. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=244&mediaType=live", w.Tv_ip, 74519))
  121. case "pluto-mst3k":
  122. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=488&mediaType=live", w.Tv_ip, 74519))
  123. case "pluto-rifftrax":
  124. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=489&mediaType=live", w.Tv_ip, 74519))
  125. case "pluto-startrek":
  126. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=150&mediaType=live", w.Tv_ip, 74519))
  127. default:
  128. c.Echo().Logger.Printf("Got '%v'\r\n", cmd)
  129. }
  130. return c.Redirect(http.StatusOK, "/")
  131. //return c.Render(http.StatusOK, "index.html", data)
  132. }
  133. func main() {
  134. web := WebServer{}
  135. web.Init("192.168.254.75", "", "8000")
  136. e := echo.New()
  137. e.Use(middleware.Logger())
  138. e.Use(middleware.Static("static"))
  139. e.Renderer = NewRenderer("./templates/*.html", true)
  140. e.GET("/", web.homepage)
  141. e.GET("/tv/:cmd", web.tvcmd)
  142. e.GET("/connect", web.connectpage)
  143. e.GET("/con/:cmd", web.connector)
  144. e.GET("/conn_refresh", web.con_refresh)
  145. e.Logger.Fatal(e.Start(fmt.Sprintf("%s:%s", web.Host, web.Port)))
  146. }