webserver.go 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  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.StatusTemporaryRedirect, "/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. var r bool = PerformKey(w.Tv_ip, "power")
  116. if !r {
  117. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  118. }
  119. case "back":
  120. var r bool = PerformKey(w.Tv_ip, "back")
  121. if !r {
  122. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  123. PerformKey(w.Tv_ip, "back")
  124. }
  125. case "home":
  126. var r bool = PerformKey(w.Tv_ip, "home")
  127. if !r {
  128. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  129. PerformKey(w.Tv_ip, "home")
  130. }
  131. case "up":
  132. var r bool = PerformKey(w.Tv_ip, "up")
  133. if !r {
  134. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  135. PerformKey(w.Tv_ip, "up")
  136. }
  137. case "left":
  138. var r bool = PerformKey(w.Tv_ip, "left")
  139. if !r {
  140. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  141. PerformKey(w.Tv_ip, "left")
  142. }
  143. case "ok":
  144. var r bool = PerformKey(w.Tv_ip, "select")
  145. if !r {
  146. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  147. PerformKey(w.Tv_ip, "select")
  148. }
  149. case "right":
  150. var r bool = PerformKey(w.Tv_ip, "right")
  151. if !r {
  152. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  153. PerformKey(w.Tv_ip, "right")
  154. }
  155. case "down":
  156. var r bool = PerformKey(w.Tv_ip, "down")
  157. if !r {
  158. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  159. PerformKey(w.Tv_ip, "down")
  160. }
  161. case "rewind":
  162. var r bool = PerformKey(w.Tv_ip, "rev")
  163. if !r {
  164. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  165. PerformKey(w.Tv_ip, "rev")
  166. }
  167. case "play-pause":
  168. var r bool = PerformKey(w.Tv_ip, "play")
  169. if !r {
  170. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  171. PerformKey(w.Tv_ip, "play")
  172. }
  173. case "fast-forward":
  174. var r bool = PerformKey(w.Tv_ip, "fwd")
  175. if !r {
  176. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  177. PerformKey(w.Tv_ip, "fwd")
  178. }
  179. case "star":
  180. var r bool = PerformKey(w.Tv_ip, "info")
  181. if !r {
  182. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  183. PerformKey(w.Tv_ip, "info")
  184. }
  185. case "reload":
  186. var r bool = PerformKey(w.Tv_ip, "instantreplay")
  187. if !r {
  188. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  189. PerformKey(w.Tv_ip, "instantreplay")
  190. }
  191. case "vol+":
  192. var r bool = PerformKey(w.Tv_ip, "volumeup")
  193. if !r {
  194. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  195. PerformKey(w.Tv_ip, "volumeup")
  196. }
  197. case "vol-":
  198. var r bool = PerformKey(w.Tv_ip, "volumedown")
  199. if !r {
  200. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  201. PerformKey(w.Tv_ip, "volumedown")
  202. }
  203. case "mute":
  204. var r bool = PerformKey(w.Tv_ip, "volumemute")
  205. if !r {
  206. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  207. PerformKey(w.Tv_ip, "volumemute")
  208. }
  209. case "display":
  210. w.At = DebugInfo(w.Tv_ip)
  211. if w.At == "" {
  212. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  213. w.At = DebugInfo(w.Tv_ip)
  214. }
  215. device := GetDeviceInfo(w.Tv_ip)
  216. if device["power-mode"] == "PowerOn" {
  217. w.Power = true
  218. } else {
  219. w.Power = false
  220. }
  221. data := make(map[string]interface{})
  222. data["at"] = w.At
  223. data["power"] = w.Power
  224. return c.JSON(http.StatusOK, data)
  225. case "pluto":
  226. r := Post(fmt.Sprintf("http://%s:8060/launch/%d", w.Tv_ip, 74519))
  227. if r == nil {
  228. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  229. Post(fmt.Sprintf("http://%s:8060/launch/%d", w.Tv_ip, 74519))
  230. }
  231. case "pluto-cops":
  232. r := Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=367&mediaType=live", w.Tv_ip, 74519))
  233. if r == nil {
  234. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  235. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=367&mediaType=live", w.Tv_ip, 74519))
  236. }
  237. case "pluto-thefirst":
  238. r := Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=244&mediaType=live", w.Tv_ip, 74519))
  239. if r == nil {
  240. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  241. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=244&mediaType=live", w.Tv_ip, 74519))
  242. }
  243. case "pluto-mst3k":
  244. r := Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=488&mediaType=live", w.Tv_ip, 74519))
  245. if r == nil {
  246. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  247. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=488&mediaType=live", w.Tv_ip, 74519))
  248. }
  249. case "pluto-rifftrax":
  250. r := Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=489&mediaType=live", w.Tv_ip, 74519))
  251. if r == nil {
  252. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  253. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=489&mediaType=live", w.Tv_ip, 74519))
  254. }
  255. case "pluto-startrek":
  256. r := Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=150&mediaType=live", w.Tv_ip, 74519))
  257. if r == nil {
  258. sendEtherWake(w.WakeOnLan[w.Tv_ip])
  259. Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=150&mediaType=live", w.Tv_ip, 74519))
  260. }
  261. default:
  262. c.Echo().Logger.Printf("Got '%v'\n", cmd)
  263. }
  264. return c.Redirect(http.StatusTemporaryRedirect, "/")
  265. //return c.Render(http.StatusOK, "index.html", data)
  266. }
  267. func main() {
  268. // Write log.print ect into a file
  269. var logfilename string = "roku.log"
  270. var logf *os.File
  271. var err error
  272. logf, err = os.OpenFile(logfilename, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0666)
  273. if err != nil {
  274. log.Panicf("Error creating log file %s: %v", logfilename, err)
  275. }
  276. log.SetOutput(logf)
  277. log.SetFlags(log.Ldate | log.Ltime | log.Lshortfile)
  278. web := WebServer{}
  279. web.Init("192.168.254.75", "", "8000")
  280. e := echo.New()
  281. e.Use(middleware.Logger())
  282. e.Use(middleware.Static("static"))
  283. e.Renderer = NewRenderer("./templates/*.html", true)
  284. e.GET("/", web.homepage)
  285. e.GET("/tv/:cmd", web.tvcmd)
  286. e.GET("/connect", web.connectpage)
  287. e.GET("/con/:cmd", web.connector)
  288. e.GET("/conn_refresh", web.con_refresh)
  289. e.Logger.Fatal(e.Start(fmt.Sprintf("%s:%s", web.Host, web.Port)))
  290. }