-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
167 lines (152 loc) · 4.82 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package main
import (
"encoding/json"
"fmt"
"github.com/julienschmidt/httprouter"
"github.com/julienschmidt/sse"
"github.com/kardianos/service"
"html/template"
"io/ioutil"
"net/http"
"path/filepath"
"strings"
"sync"
"time"
)
const version = "2022.1.2.14"
const programName = "Terminal local webservice"
const programDescription = "Display local web for rpi terminals"
var initiated = false
var homepageLoaded = false
type Page struct {
Title string
Body []byte
}
var streamCanRun = false
var streamSync sync.RWMutex
type program struct{}
func (p *program) Start(s service.Service) error {
go p.run()
return nil
}
func (p *program) Stop(s service.Service) error {
return nil
}
func main() {
serviceConfig := &service.Config{
Name: programName,
DisplayName: programName,
Description: programDescription,
}
prg := &program{}
s, _ := service.New(prg, serviceConfig)
_ = s.Run()
}
func (p *program) run() {
router := httprouter.New()
networkDataStreamer := sse.New()
router.GET("/image.png", image)
router.GET("/", indexPage)
router.GET("/screenshot", screenshotPage)
router.GET("/setup", setupPage)
router.GET("/setup-remote", setupRemotePage)
router.GET("/demo_1", demo1)
router.GET("/demo_2", demo2)
router.GET("/demo_3", demo3)
router.GET("/demo_4", demo4)
router.GET("/demo_5", demo5)
router.GET("/demo_6", demo6)
router.GET("/demo_7", demo7)
router.GET("/demo_8", demo8)
router.GET("/demo_9", demo9)
router.GET("/demo_10", demo10)
router.POST("/password", checkPassword)
router.POST("/restart", restartRpi)
router.POST("/check_cable", checkCable)
router.POST("/stop_stream", stopStream)
router.POST("/shutdown", shutdownRpi)
router.POST("/dhcp", changeToDhcp)
router.POST("/server", changeServerAddress)
router.POST("/static", changeToStatic)
router.ServeFiles("/font/*filepath", http.Dir("font"))
router.ServeFiles("/html/*filepath", http.Dir("html"))
router.ServeFiles("/css/*filepath", http.Dir("css"))
router.ServeFiles("/js/*filepath", http.Dir("js"))
router.ServeFiles("/pdf/*filepath", http.Dir("pdf"))
router.Handler("GET", "/networkdata", networkDataStreamer)
go StreamNetworkData(networkDataStreamer)
_ = http.ListenAndServe(":9999", router)
}
func setupRemotePage(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
streamSync.Lock()
streamCanRun = false
streamSync.Unlock()
interfaceIpAddress, interfaceMask, interfaceGateway, dhcpEnabled, _, _, mac := GetNetworkData()
interfaceServerIpAddress := LoadSettingsFromConfigFile()
tmpl := template.Must(template.ParseFiles("html/setup-remote.html"))
data := HomepageData{
IpAddress: interfaceIpAddress,
Mask: interfaceMask,
Gateway: interfaceGateway,
ServerIpAddress: interfaceServerIpAddress,
Dhcp: dhcpEnabled,
Mac: mac,
DhcpChecked: "",
Version: version,
}
if strings.Contains(dhcpEnabled, "yes") {
data.DhcpChecked = "checked"
}
_ = tmpl.Execute(w, data)
}
func checkCable(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
_, _, _, _, active, _, _ := GetNetworkData()
var responseData ChangeOutput
responseData.Result = active
w.Header().Set("Content-Type", "application/json")
_ = json.NewEncoder(w).Encode(responseData)
}
func LoadSettingsFromConfigFile() string {
configDirectory := filepath.Join(".", "config")
configFileName := "config.json"
configFullPath := strings.Join([]string{configDirectory, configFileName}, "/")
readFile, _ := ioutil.ReadFile(configFullPath)
ConfigFile := ServerIpAddress{}
_ = json.Unmarshal(readFile, &ConfigFile)
ServerIpAddress := ConfigFile.ServerIpAddress
return ServerIpAddress
}
func StreamNetworkData(streamer *sse.Streamer) {
for {
if streamCanRun {
fmt.Println("streaming data")
activeColor := "red"
serverActiveColor := "red"
interfaceIpAddress, interfaceMask, interfaceGateway, dhcpEnabled, active, _, mac := GetNetworkData()
interfaceServerIpAddress := LoadSettingsFromConfigFile()
serverAccessible := CheckServerIpAddress(interfaceServerIpAddress)
if dhcpEnabled == "yes" {
dhcpEnabled = "yes"
} else {
dhcpEnabled = "no"
}
serverActive := "server not accessible"
if serverAccessible {
serverActive = "server accessible"
serverActiveColor = "green"
}
if active == "cable connected" {
activeColor = "green"
}
streamer.SendString("", "networkdata", interfaceIpAddress+";"+interfaceMask+";"+interfaceGateway+";"+dhcpEnabled+";"+interfaceServerIpAddress+";"+mac+";"+active+";"+serverActive+";"+activeColor+";"+serverActiveColor+";"+mac)
}
time.Sleep(5 * time.Second)
}
}
func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
t, _ := template.ParseFiles("html/" + tmpl + ".html")
_ = t.Execute(w, p)
}
func image(writer http.ResponseWriter, request *http.Request, _ httprouter.Params) {
http.ServeFile(writer, request, "image.png")
}