123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- package main
- import (
- "bufio"
- "fmt"
- "log"
- "net/http"
- "os"
- "strings"
- "github.com/labstack/echo/v4"
- "github.com/labstack/echo/v4/middleware"
- )
- type WebServer struct {
- Tv_ip string
- Port string
- Host string
- At string
- Device_list []string
- WakeOnLan map[string]string
- Power bool
- }
- func (w *WebServer) Init(tv, host, port string) {
- w.Tv_ip = tv
- w.Host = host
- w.Port = port
- w.WakeOnLan = make(map[string]string)
- if FileExists("WOL.txt") {
- log.Print("Loading WOLs from WOL.txt")
- file, err := os.Open("WOL.txt")
- if err != nil {
- log.Printf("Failed reading WOL.txt got %v", err)
- }
- defer file.Close()
- var scanner *bufio.Scanner = bufio.NewScanner(file)
- for scanner.Scan() {
- var line string = scanner.Text()
- if len(line) == 0 {
- continue
- }
- var parts []string = strings.Split(line, " = ")
- var ip string = parts[0]
- var mac string = parts[1]
- log.Printf("IP='%s' MAC='%s'", ip, mac)
- w.WakeOnLan[ip] = mac
- }
- }
- }
- func (w *WebServer) homepage(c echo.Context) error {
- //return c.String(http.StatusOK, "Hello World!")
- /*file, err := os.ReadFile("templates/index.html")
- if err != nil {
- return err
- }*/
- //return c.HTMLBlob(http.StatusOK, file)
- data := make(map[string]interface{})
- data["at"] = w.At
- return c.Render(http.StatusOK, "index.html", data)
- }
- func (w *WebServer) connectpage(c echo.Context) error {
- data := make(map[string]interface{})
- data["connected"] = "Connected: " + w.Tv_ip
- //var dev_list []string
- var list []string
- list = append(list, w.Device_list...)
- data["resp"] = list
- return c.Render(http.StatusOK, "connect.html", data)
- }
- func (w *WebServer) connector(c echo.Context) error {
- cmd := c.Param("cmd")
- w.Tv_ip = cmd
- log.Printf("Switched to %s", cmd)
- return c.Redirect(http.StatusTemporaryRedirect, "/connect")
- }
- func (w *WebServer) con_refresh(c echo.Context) error {
- log.Printf("Recieved Connection Refresh")
- var list *[]string
- list, w.WakeOnLan = GetDevices(w.WakeOnLan)
- log.Printf("Found %d devices", len(*list))
- log.Printf("Obtained %d WOLs", len(w.WakeOnLan))
- var save_file []byte
- for ip, mac := range w.WakeOnLan {
- log.Printf("IP='%v' MAC='%v'\n", ip, mac)
- if ip != "" && mac != "" {
- for _, r := range ip {
- save_file = append(save_file, byte(r))
- }
- save_file = append(save_file, ' ')
- save_file = append(save_file, '=')
- save_file = append(save_file, ' ')
- for _, r := range mac {
- save_file = append(save_file, byte(r))
- }
- }
- }
- if len(save_file) != 0 {
- err := os.WriteFile("WOL.txt", save_file, 0775)
- if err != nil {
- log.Printf("Saving WOL.txt failed with %v", err)
- } else {
- log.Print("Saved WOL to WOL.txt")
- }
- }
- for _, ip := range *list {
- if ip != w.Tv_ip {
- w.Device_list = append(w.Device_list, ip)
- }
- }
- //w.Device_list = *list
- return c.Redirect(http.StatusTemporaryRedirect, "/connect")
- }
- func (w *WebServer) tvcmd(c echo.Context) error {
- //w.At = DebugInfo(w.Tv_ip)
- cmd := c.Param("cmd")
- switch cmd {
- case "power":
- var r bool = PerformKey(w.Tv_ip, "power")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- }
- case "back":
- var r bool = PerformKey(w.Tv_ip, "back")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "back")
- }
- case "home":
- var r bool = PerformKey(w.Tv_ip, "home")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "home")
- }
- case "up":
- var r bool = PerformKey(w.Tv_ip, "up")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "up")
- }
- case "left":
- var r bool = PerformKey(w.Tv_ip, "left")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "left")
- }
- case "ok":
- var r bool = PerformKey(w.Tv_ip, "select")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "select")
- }
- case "right":
- var r bool = PerformKey(w.Tv_ip, "right")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "right")
- }
- case "down":
- var r bool = PerformKey(w.Tv_ip, "down")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "down")
- }
- case "rewind":
- var r bool = PerformKey(w.Tv_ip, "rev")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "rev")
- }
- case "play-pause":
- var r bool = PerformKey(w.Tv_ip, "play")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "play")
- }
- case "fast-forward":
- var r bool = PerformKey(w.Tv_ip, "fwd")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "fwd")
- }
- case "star":
- var r bool = PerformKey(w.Tv_ip, "info")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "info")
- }
- case "reload":
- var r bool = PerformKey(w.Tv_ip, "instantreplay")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "instantreplay")
- }
- case "vol+":
- var r bool = PerformKey(w.Tv_ip, "volumeup")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "volumeup")
- }
- case "vol-":
- var r bool = PerformKey(w.Tv_ip, "volumedown")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "volumedown")
- }
- case "mute":
- var r bool = PerformKey(w.Tv_ip, "volumemute")
- if !r {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- PerformKey(w.Tv_ip, "volumemute")
- }
- case "display":
- w.At = DebugInfo(w.Tv_ip)
- if w.At == "" {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- w.At = DebugInfo(w.Tv_ip)
- }
- device := GetDeviceInfo(w.Tv_ip)
- if device["power-mode"] == "PowerOn" {
- w.Power = true
- } else {
- w.Power = false
- }
- data := make(map[string]interface{})
- data["at"] = w.At
- data["power"] = w.Power
- return c.JSON(http.StatusOK, data)
- case "pluto":
- r := Post(fmt.Sprintf("http://%s:8060/launch/%d", w.Tv_ip, 74519))
- if r == nil {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- Post(fmt.Sprintf("http://%s:8060/launch/%d", w.Tv_ip, 74519))
- }
- case "pluto-cops":
- r := Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=367&mediaType=live", w.Tv_ip, 74519))
- if r == nil {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=367&mediaType=live", w.Tv_ip, 74519))
- }
- case "pluto-thefirst":
- r := Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=244&mediaType=live", w.Tv_ip, 74519))
- if r == nil {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=244&mediaType=live", w.Tv_ip, 74519))
- }
- case "pluto-mst3k":
- r := Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=488&mediaType=live", w.Tv_ip, 74519))
- if r == nil {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=488&mediaType=live", w.Tv_ip, 74519))
- }
- case "pluto-rifftrax":
- r := Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=489&mediaType=live", w.Tv_ip, 74519))
- if r == nil {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=489&mediaType=live", w.Tv_ip, 74519))
- }
- case "pluto-startrek":
- r := Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=150&mediaType=live", w.Tv_ip, 74519))
- if r == nil {
- sendEtherWake(w.WakeOnLan[w.Tv_ip])
- Post(fmt.Sprintf("http://%s:8060/launch/%d?contentId=150&mediaType=live", w.Tv_ip, 74519))
- }
- default:
- c.Echo().Logger.Printf("Got '%v'\n", cmd)
- }
- return c.Redirect(http.StatusTemporaryRedirect, "/")
- //return c.Render(http.StatusOK, "index.html", data)
- }
- func main() {
- // Write log.print ect into a file
- var logfilename string = "roku.log"
- var logf *os.File
- var err error
- logf, err = os.OpenFile(logfilename, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0666)
- if err != nil {
- log.Panicf("Error creating log file %s: %v", logfilename, err)
- }
- log.SetOutput(logf)
- log.SetFlags(log.Ldate | log.Ltime | log.Lshortfile)
- web := WebServer{}
- web.Init("192.168.254.75", "", "8000")
- e := echo.New()
- e.Use(middleware.Logger())
- e.Use(middleware.Static("static"))
- e.Renderer = NewRenderer("./templates/*.html", true)
- e.GET("/", web.homepage)
- e.GET("/tv/:cmd", web.tvcmd)
- e.GET("/connect", web.connectpage)
- e.GET("/con/:cmd", web.connector)
- e.GET("/conn_refresh", web.con_refresh)
- e.Logger.Fatal(e.Start(fmt.Sprintf("%s:%s", web.Host, web.Port)))
- }
|