Blame view

go/src/themaru/http.go 3.82 KB
476d2547e   김태훈   태마루 시스템 설정 / 업데이트...
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
  package main
  
  import (
  	"html/template"
  	"net/http"
  	"os"
  	"sync"
  
  	"github.com/gin-contrib/multitemplate"
  	"github.com/gin-gonic/gin"
  )
  
  var mu sync.Mutex
  
  var indexPage = template.Must(template.New("index.html").Parse(`
  <html>
  <head>
    <title>System Configuration</title>
    <style type="text/css">
      div { margin-left: 20px; }
    </style>
  </head>
  <body>
    <h1>{{.Device}} Configuration</h1>
    <div>
      <p>System Version: {{.Version}}</p>
    </div>
    <hr>
    <h1>Setting IP Address</h1>
    <div>
      <form action="/address" method="post">
        <input type="text" name="address" value="{{.IP}}" required />
        <input type="text" name="address2" value="{{.IP2}}" required />
        <input type="submit" value="Set" />
      </form>
    </div>
    <h1>Updating System</h1>
    <div>
      <form action="/system" method="post" enctype="multipart/form-data">
        <input type="file" name="image" />
        <input type="submit" value="Update" />
      </form>
    </div>
    <h1>Updating Application</h1>
    <div>
      <form action="/application" method="post" enctype="multipart/form-data">
        <input type="file" name="image" />
        <input type="submit" value="Update" />
      </form>
    </div>
    <h1>Restore System Image</h1>
    <div>
      <form action="/restore">
        <input type="submit" value="Restore" />
      </form>
    </div>
  </body>
  </html>
  `))
  
  var rebootPage = template.Must(template.New("reboot.html").Parse(`
  <html>
  <head>
    <title>OK</title>
  </head>
  <body>
    <p>{{.Message}}</p>
    <form action="/reboot/">
      <input type="submit" value="Reboot" />
    </form>
  </body>
  </html>
  `))
  
  func runHttp() {
  	gin.SetMode(gin.ReleaseMode)
  
  	g := gin.Default()
  
  	r := multitemplate.NewRenderer()
  	r.Add("index.html", indexPage)
  	r.Add("reboot.html", rebootPage)
  
  	g.HTMLRender = r
  
  	g.GET("/", renderIndex)
  
  	g.POST("/address", handleAddress)
  	g.POST("/system", handleSystem)
  	g.POST("/application", handleApplication)
  
  	g.GET("/reboot", handleReboot)
  	g.GET("/restore", handleRestore)
  
  	g.Run(":8988")
  }
  
  func handleAddress(c *gin.Context) {
  	mu.Lock()
  	defer mu.Unlock()
  
  	addr := c.PostForm("address")
  	addr2 := c.PostForm("address2")
  
  	if err := setIpAddress(addr, addr2); err != nil {
  		c.String(http.StatusBadRequest, "address: setIpAddress: %s", err.Error())
  		return
  	}
  
  	c.HTML(http.StatusOK, "reboot.html", gin.H{"Message": "IP address is updated."})
  }
  
  func handleSystem(c *gin.Context) {
  	mu.Lock()
  	defer mu.Unlock()
  
  	if err := saveFormFile(c, "image", "/tmp/system.zip"); err != nil {
  		c.String(http.StatusBadRequest, "system: saveFormFile: %s", err.Error())
  		return
  	}
  
  	if err := updateSystem(); err != nil {
  		c.String(http.StatusBadRequest, "system: updateSystem: %s", err.Error())
  		return
  	}
  
  	c.HTML(http.StatusOK, "reboot.html", gin.H{"Message": "System is updated."})
  }
  
  func handleApplication(c *gin.Context) {
  	mu.Lock()
  	defer mu.Unlock()
  
  	if err := saveFormFile(c, "image", "/tmp/application.zip"); err != nil {
  		c.String(http.StatusBadRequest, "application: saveFormFile: %s", err.Error())
  		return
  	}
  
  	if err := updateApp(); err != nil {
  		c.String(http.StatusBadRequest, "application: updateApplication: %s", err.Error())
  		return
  	}
  
  	c.HTML(http.StatusOK, "reboot.html", gin.H{"Message": "Application is updated."})
  }
  
  func handleReboot(c *gin.Context) {
  	reboot()
  
  	c.String(http.StatusOK, "OK")
  }
  
  func handleRestore(c *gin.Context) {
  	mu.Lock()
  	defer mu.Unlock()
  
  	restore()
  
  	c.HTML(http.StatusOK, "reboot.html", gin.H{"Message": "Restoration is done."})
  }
  
  func renderIndex(c *gin.Context) {
  	device := "System"
  	if len(os.Args) > 1 {
  		device = os.Args[1]
  	}
  
  	c.HTML(http.StatusOK, "index.html", gin.H{
  		"Device":  device,
  		"IP":      getIpAddress(),
  		"IP2":     getIpAddress2(),
  		"Version": getVersion(),
  	})
  }
  
  func saveFormFile(c *gin.Context, name string, dst string) error {
  	file, err := c.FormFile(name)
  	if err != nil {
  		return err
  	}
  
  	return c.SaveUploadedFile(file, dst)
  }