|
@@ -4,10 +4,8 @@ import (
|
|
|
"fmt"
|
|
|
"io"
|
|
|
"log"
|
|
|
- "net"
|
|
|
"net/http"
|
|
|
- "os"
|
|
|
- "time"
|
|
|
+ "strings"
|
|
|
|
|
|
"github.com/beanzilla/glom"
|
|
|
"github.com/beego/x2j"
|
|
@@ -52,6 +50,7 @@ func Post(where string) *http.Response {
|
|
|
}
|
|
|
}*/
|
|
|
|
|
|
+/*
|
|
|
func PostFind() {
|
|
|
file, err := os.ReadFile("finder.txt")
|
|
|
if err != nil {
|
|
@@ -100,6 +99,7 @@ func GetFind(data *[]string) {
|
|
|
}
|
|
|
*data = list
|
|
|
}
|
|
|
+*/
|
|
|
|
|
|
func Get(where string) *http.Response {
|
|
|
resp, err := http.Get(where)
|
|
@@ -189,12 +189,28 @@ func GetDeviceInfo(ip string) map[string]interface{} {
|
|
|
return dev
|
|
|
}
|
|
|
|
|
|
-func GetDevices() *[]string {
|
|
|
+func GetDevices(wake_on_lan map[string]string) (*[]string, map[string]string) {
|
|
|
var str []string
|
|
|
- go GetFind(&str)
|
|
|
- go PostFind()
|
|
|
- //fmt.Print(str)
|
|
|
- return &str
|
|
|
+ resp := strings.Split(PostFind(), "\n")
|
|
|
+ //fmt.Printf("Processing %d lines\n", len(resp))
|
|
|
+ ip := ""
|
|
|
+ for _, line := range resp {
|
|
|
+ if strings.Contains(line, "LOCATION") {
|
|
|
+ st := strings.ReplaceAll(line, "LOCATION: http://", "")
|
|
|
+ st = strings.ReplaceAll(st, ":8060/", "")
|
|
|
+ st = strings.ReplaceAll(st, "\r", "")
|
|
|
+ //fmt.Printf("IP='%s'", st)
|
|
|
+ str = append(str, st)
|
|
|
+ ip = st
|
|
|
+ } else if strings.Contains(line, "WAKEUP") {
|
|
|
+ st := strings.ReplaceAll(line, "WAKEUP: MAC=", "")
|
|
|
+ st = strings.ReplaceAll(st, ";Timeout=10", "")
|
|
|
+ st = strings.ReplaceAll(st, "\r", "")
|
|
|
+ //fmt.Printf("IP='%s' MAC='%s'", ip, st)
|
|
|
+ wake_on_lan[ip] = st
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return &str, wake_on_lan
|
|
|
}
|
|
|
|
|
|
func DebugInfo(ip string) string {
|