webserver.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. package main
  2. import (
  3. "bufio"
  4. "fmt"
  5. "log"
  6. "net/http"
  7. "os"
  8. "strings"
  9. "github.com/labstack/echo/v4"
  10. "github.com/labstack/echo/v4/middleware"
  11. )
  12. type WebServer struct {
  13. Tv_ip string
  14. Port string
  15. Host string
  16. At string
  17. Device_list []string
  18. WakeOnLan map[string]string
  19. Power bool
  20. }
  21. func (w *WebServer) Init(tv, host, port string) {
  22. w.Tv_ip = tv
  23. w.Host = host
  24. w.Port = port
  25. w.WakeOnLan = make(map[string]string)
  26. if FileExists("WOL.txt") {
  27. log.Print("Loading WOLs from WOL.txt")
  28. file, err := os.Open("WOL.txt")
  29. if err != nil {
  30. log.Printf("Failed reading WOL.txt got %v", err)
  31. }
  32. defer file.Close()
  33. var scanner *bufio.Scanner = bufio.NewScanner(file)
  34. for scanner.Scan() {
  35. var line string = scanner.Text()
  36. if len(line) == 0 {
  37. continue
  38. }
  39. var parts []string = strings.Split(line, " = ")
  40. var ip string = parts[0]
  41. var mac string = parts[1]
  42. log.Printf("IP='%s' MAC='%s'", ip, mac)
  43. w.WakeOnLan[ip] = mac
  44. }
  45. }
  46. }
  47. func (w *WebServer) homepage(c echo.Context) error {
  48. //return c.String(http.StatusOK, "Hello World!")
  49. /*file, err := os.ReadFile("templates/index.html")
  50. if err != nil {
  51. return err
  52. }*/
  53. //return c.HTMLBlob(http.StatusOK, file)
  54. data := make(map[string]interface{})
  55. data["at"] = w.At
  56. return c.Render(http.StatusOK, "index.html", data)
  57. }
  58. func (w *WebServer) connectpage(c echo.Context) error {
  59. data := make(map[string]interface{})
  60. data["connected"] = "Connected: " + w.Tv_ip
  61. //var dev_list []string
  62. var list []string
  63. list = append(list, w.Device_list...)
  64. data["resp"] = list
  65. return c.Render(http.StatusOK, "connect.html", data)
  66. }
  67. func (w *WebServer) connector(c echo.Context) error {
  68. cmd := c.Param("cmd")
  69. w.Tv_ip = cmd
  70. log.Printf("Switched to %s", cmd)
  71. return c.Redirect(http.StatusOK, "/connect")
  72. }
  73. func (w *WebServer) con_refresh(c echo.Context) error {
  74. log.Printf("Recieved Connection Refresh")
  75. var list *[]string
  76. list, w.WakeOnLan = GetDevices(w.WakeOnLan)
  77. log.Printf("Found %d devices", len(*list))
  78. log.Printf("Obtained %d WOLs", len(w.WakeOnLan))
  79. var save_file []byte
  80. for ip, mac := range w.WakeOnLan {
  81. log.Printf("IP='%v' MAC='%v'\n", ip, mac)
  82. if ip != "" && mac != "" {
  83. for _, r := range ip {
  84. save_file = append(save_file, byte(r))
  85. }
  86. save_file = append(save_file, ' ')
  87. save_file = append(save_file, '=')
  88. save_file = append(save_file, ' ')
  89. for _, r := range mac {
  90. save_file = append(save_file, byte(r))
  91. }
  92. }
  93. }
  94. if len(save_file) != 0 {
  95. err := os.WriteFile("WOL.txt", save_file, 0775)
  96. if err != nil {
  97. log.Printf("Saving WOL.txt failed with %v", err)
  98. } else {
  99. log.Print("Saved WOL to WOL.txt")
  100. }
  101. }
  102. for _, ip := range *list {
  103. if ip != w.Tv_ip {
  104. w.Device_list = append(w.Device_list, ip)
  105. }
  106. }
  107. //w.Device_list = *list
  108. return c.Redirect(http.StatusTemporaryRedirect, "/connect")
  109. }
  110. func (w *WebServer) tvcmd(c echo.Context) error {
  111. //w.At = DebugInfo(w.Tv_ip)
  112. cmd := c.Param("cmd")
  113. switch cmd {
  114. case "power":
  115. PerformKey(w.Tv_ip, "power")
  116. case "back":
  117. PerformKey(w.Tv_ip, "back")
  118. case "home":
  119. PerformKey(w.Tv_ip, "home")
  120. case "up":
  121. PerformKey(w.Tv_ip, "up")
  122. case "left":
  123. PerformKey(w.Tv_ip, "left")
  124. case "ok":
  125. PerformKey(w.Tv_ip, "select")
  126. case "right":
  127. PerformKey(w.Tv_ip, "right")
  128. case "down":
  129. PerformKey(w.Tv_ip, "down")
  130. case "rewind":
  131. PerformKey(w.Tv_ip, "rev")
  132. case "play-pause":
  133. PerformKey(w.Tv_ip, "play")
  134. case "fast-forward":
  135. PerformKey(w.Tv_ip, "fwd")
  136. case "star":
  137. PerformKey(w.Tv_ip, "info")
  138. case "reload":
  139. PerformKey(w.Tv_ip, "instantreplay")
  140. case "vol+":
  141. PerformKey(w.Tv_ip, "volumeup")
  142. case "vol-":
  143. PerformKey(w.Tv_ip, "volumedown")
  144. case "mute":
  145. PerformKey(w.Tv_ip, "volumemute")
  146. case "display":
  147. w.At = DebugInfo(w.Tv_ip)
  148. device := GetDeviceInfo(w.Tv_ip)
  149. if device["power-mode"] == "PowerOn" {
  150. w.Power = true
  151. } else {
  152. w.Power = false
  153. }
  154. data := make(map[string]interface{})
  155. data["at"] = w.At
  156. data["power"] = w.Power
  157. return c.JSON(http.StatusOK, data)
  158. case "pluto":
  159. Post(fmt.Sprintf("http://%s:8060/launch/%d", w.Tv_ip, 74519))
  160. case "pluto-cops":
  161. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=367&mediaType=live", w.Tv_ip, 74519))
  162. case "pluto-thefirst":
  163. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=244&mediaType=live", w.Tv_ip, 74519))
  164. case "pluto-mst3k":
  165. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=488&mediaType=live", w.Tv_ip, 74519))
  166. case "pluto-rifftrax":
  167. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=489&mediaType=live", w.Tv_ip, 74519))
  168. case "pluto-startrek":
  169. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=150&mediaType=live", w.Tv_ip, 74519))
  170. default:
  171. c.Echo().Logger.Printf("Got '%v'\r\n", cmd)
  172. }
  173. return c.Redirect(http.StatusOK, "/")
  174. //return c.Render(http.StatusOK, "index.html", data)
  175. }
  176. func main() {
  177. web := WebServer{}
  178. web.Init("192.168.254.75", "", "8000")
  179. e := echo.New()
  180. e.Use(middleware.Logger())
  181. e.Use(middleware.Static("static"))
  182. e.Renderer = NewRenderer("./templates/*.html", true)
  183. e.GET("/", web.homepage)
  184. e.GET("/tv/:cmd", web.tvcmd)
  185. e.GET("/connect", web.connectpage)
  186. e.GET("/con/:cmd", web.connector)
  187. e.GET("/conn_refresh", web.con_refresh)
  188. e.Logger.Fatal(e.Start(fmt.Sprintf("%s:%s", web.Host, web.Port)))
  189. }