forked from gohutool/docker.ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker.ui.go
375 lines (300 loc) · 9.67 KB
/
docker.ui.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
package main
import (
"expvar"
"fmt"
"github.com/alecthomas/kingpin"
"github.com/gohutool/boot4go-docker-ui/db"
"github.com/gohutool/boot4go-docker-ui/handle"
. "github.com/gohutool/boot4go-docker-ui/log"
constants "github.com/gohutool/boot4go-docker-ui/model"
prometheusfasthttp "github.com/gohutool/boot4go-prometheus/fasthttp"
util4go "github.com/gohutool/boot4go-util"
httputil "github.com/gohutool/boot4go-util/http"
routing "github.com/qiangxue/fasthttp-routing"
"github.com/shirou/gopsutil/cpu"
"github.com/shirou/gopsutil/disk"
"github.com/shirou/gopsutil/mem"
"github.com/valyala/fasthttp"
"github.com/valyala/fasthttp/expvarhandler"
"github.com/valyala/fasthttp/pprofhandler"
"io/ioutil"
"net"
"net/http"
_ "net/http/pprof"
"os"
"os/signal"
"strings"
"sync"
"syscall"
"time"
)
/**
* golang-sample源代码,版权归锦翰科技(深圳)有限公司所有。
* <p>
* 文件名称 : docker.ui.go
* 文件路径 :
* 作者 : DavidLiu
× Email: [email protected]
*
* 创建日期 : 2022/5/12 20:19
* 修改历史 : 1. [2022/5/12 20:19] 创建文件 by LongYong
*/
const (
SERVER_VERSION = "docker-ui-v1.0.0"
SERVER_MAJOR = 1
SERVER_MINOR = 0
SERVER_BUILD = 0
)
func main() {
app := kingpin.New("docker-ui", "A docker management with UI.")
addr_flag := app.Flag("addr", "Addr: docker management listen addr.").Short('l').Default(":8999").String()
issuer_flag := app.Flag("issuer", "Issuer: token's issuer.").Short('i').Default(constants.DEFAULT_ISSUER).String()
expired_flag := app.Flag("token_expire", "Token_expire: many hour(s) token will expire.").Short('e').Default("24").Int()
li_flag := app.Flag("license", "License: CubeUI License.").Default("").String()
endpoint_flag := app.Flag("endpoint", "Endpoint: the endpoint of docker, default is unix, if tcp is open, like as 192.168.56.102:2375").Default("unix").String()
app.HelpFlag.Short('h')
app.Version(SERVER_VERSION)
kingpin.MustParse(app.Parse(os.Args[1:]))
initLicenseFile(*li_flag)
initEndpointFile(*endpoint_flag)
db.InitDB()
Logger.Info("Database is load.")
l, err := net.Listen("tcp", *addr_flag)
if err != nil {
fmt.Println("Start server error " + err.Error())
return
}
if issuer_flag != nil && len(*issuer_flag) > 0 {
constants.Issuer = *issuer_flag
}
if expired_flag != nil && *expired_flag > 0 {
constants.TokenExpire = time.Duration(*expired_flag) * time.Hour
}
if err = initAdmin(); err != nil {
panic("Init Admin User error " + err.Error())
}
Logger.Info("Start " + SERVER_VERSION + " now .... ")
wg := &sync.WaitGroup{}
wg.Add(1)
Logger.Debug("%v %v %v %v", *addr_flag, *issuer_flag, *expired_flag, *li_flag)
go func(twg *sync.WaitGroup) {
sig := make(chan os.Signal, 2)
signal.Notify(sig, syscall.SIGTERM, syscall.SIGINT)
<-sig
fmt.Println("signal service close")
twg.Done()
}(wg)
startHttpServer(l)
wg.Wait()
l.Close()
Logger.Info(SERVER_VERSION + " is close")
time.Sleep(20 * time.Microsecond)
}
func initAdmin() error {
return nil
}
func initLicenseFile(li string) {
var txt string
if util4go.IsEmpty(li) {
txt = ""
} else {
txt = `
myConfig.li="%v";
`
txt = fmt.Sprintf(txt, li)
}
err2 := ioutil.WriteFile("./html/static/public/js/cubeui.li.js", []byte(txt), 0666) //写入文件(字节数组)
if err2 != nil {
panic("License check error:" + err2.Error())
}
}
func initEndpointFile(endpoint string) {
var txt string
if util4go.IsEmpty(endpoint) {
Logger.Info("Local Docker Endpoint is attached")
return
} else {
v2 := strings.Split(endpoint, ":")
host, port := "unix", "2375"
if len(v2) >= 1 {
host = v2[0]
}
if len(v2) >= 2 {
port = v2[1]
}
txt = `
local_node.node_host = "%v";
local_node.node_port = "%v";
`
txt = fmt.Sprintf(txt, host, port)
Logger.Info("%v Docker Endpoint is attached", endpoint)
}
err2 := ioutil.WriteFile("./html/api/node.config.js", []byte(txt), 0666) //写入文件(字节数组)
if err2 != nil {
panic("Endpoint check error:" + err2.Error())
}
}
func startHttpServer(listener net.Listener) {
router := routing.New()
v3Group := router.Group("/v3/api")
handle.PrometheusHandler.InitRouter(router, v3Group)
handle.UserHandler.InitRouter(router, v3Group)
fs := &fasthttp.FS{
Root: "./html",
IndexNames: []string{"index.html", "index.hml"},
GenerateIndexPages: true,
Compress: false,
AcceptByteRange: false,
PathNotFound: func(ctx *fasthttp.RequestCtx) {
ctx.Response.Header.SetContentType("application/json;charset=utf-8")
ctx.SetStatusCode(fasthttp.StatusNotFound)
ctx.Write([]byte(httputil.Result.Fail(fmt.Sprintf("Page Not Found, %v %v", string(ctx.Method()), string(ctx.RequestURI()))).Json()))
},
}
fsHandler := fs.NewRequestHandler()
router.Get("/stats", func(ctx *routing.Context) error {
expvarhandler.ExpvarHandler(ctx.RequestCtx)
return nil
})
var POOLSIZE int = 16
var testPool [][]byte = make([][]byte, POOLSIZE)
mu := sync.Mutex{}
var SIZE int = 1024 * 1024 * 12
router.Get("/usages", func(ctx *routing.Context) error {
v, _ := mem.VirtualMemory()
percent, _ := cpu.Percent(time.Second, false)
info2, _ := disk.Usage("/") //指定某路径的硬盘使用情况
data := make(map[string]any)
data["cpu"] = percent
data["disk"] = info2
data["memory"] = v
httputil.Result.Success(data, "ok").Response(ctx.RequestCtx)
mu.Lock()
defer mu.Unlock()
if len(testPool) >= POOLSIZE {
testPool = testPool[0:0]
}
testPool = append(testPool, make([]byte, SIZE))
return nil
})
router.Any("/debug/pprof/*", func(ctx *routing.Context) error {
pprofhandler.PprofHandler(ctx.RequestCtx)
return nil
})
//wsHanlder := &EchoWSHandler{}
wsGroup := router.Group("/docker-api-ws")
handle.InitWsRouter(router, wsGroup)
//router.Any("/docker-api-ws/echo", EchoWSHandler)
router.Any("/docker-api-stream/*", func(ctx *routing.Context) error {
ri, err := handle.GetRequestInfo("/docker-api-stream", ctx)
if err != nil {
return err
}
ctx.Response.Header.Set(fasthttp.HeaderTransferEncoding, "chunked")
if strings.Index(ri.Host, "unix") == 0 {
if err := httputil.WithHttpReverseUnixSocketProxy("/var/run/docker.sock", ri.Path, ctx.QueryArgs().String(), ctx.RequestCtx); err != nil {
Logger.Debug("Proxy stream error : %v", err)
} else {
return err
}
} else {
if err := httputil.WithHttpReverseProxy(ri.Host, "http", ri.Path, ctx.QueryArgs().String(), ctx.RequestCtx); err != nil {
Logger.Debug("Proxy stream error : %v", err)
} else {
return err
}
}
return nil
})
router.Any("/docker-api/*", func(ctx *routing.Context) error {
ri, err := handle.GetRequestInfo("/docker-api", ctx)
if err != nil {
return err
}
if strings.Index(ri.Host, "unix") == 0 {
if err := httputil.UnixSocketProxy("/var/run/docker.sock", ri.Host, "http", ri.Path, "", ctx.RequestCtx, 0); err != nil {
Logger.Debug("Proxy error : %v", err)
} else {
Logger.Debug("Proxy over : %v", string(ctx.RequestURI()))
return err
}
} else {
if err := httputil.Proxy(ri.Host, "http", ri.Path, "", ctx.RequestCtx, 0); err != nil {
Logger.Debug("Proxy error : %v", err)
} else {
Logger.Debug("Proxy over : %v", string(ctx.RequestURI()))
return err
}
}
return nil
})
router.Any("/*", func(context *routing.Context) error {
ctx := context.RequestCtx
fsHandler(ctx)
UpdateFSCounters(ctx)
return nil
})
requestHandler := func(ctx *fasthttp.RequestCtx) {
Logger.Debug("%v %v %v %v", string(ctx.Path()), ctx.URI().String(), string(ctx.Method()), ctx.QueryArgs().String())
defer func() {
if err := recover(); err != nil {
Logger.Debug(err)
// ctx.Error(fmt.Sprintf("%v", err), http.StatusInternalServerError)
httputil.Error(ctx, httputil.Result.Fail(fmt.Sprintf("%v", err)).Json(), http.StatusInternalServerError)
}
ctx.Response.Header.Set("tick", time.Now().String())
ctx.Response.Header.SetServer("Docker-UIManager")
prometheusfasthttp.RequestCounterHandler(nil)(ctx)
Logger.Debug("router.HandleRequest is finish")
}()
router.HandleRequest(ctx)
}
//go http.ListenAndServe("0.0.0.0:8887", nil)
// Start HTTP server.
Logger.Info("Starting HTTP server on %v", listener.Addr().String())
go func() {
s := &fasthttp.Server{
Handler: requestHandler,
}
//fix bug error when serving connection "[::1]:8999"<->"[::1]:27982": body size exceeds the given limit
s.MaxRequestBodySize = 4 * 1024 * 1024 * 1024
if err := s.Serve(listener); err != nil {
Logger.Critical("error in ListenAndServe: %v", err)
}
}()
}
// Various counters - see https://golang.org/pkg/expvar/ for details.
var (
// Counter for total number of fs calls
fsCalls = expvar.NewInt("fsCalls")
// Counters for various response status codes
fsOKResponses = expvar.NewInt("fsOKResponses")
fsNotModifiedResponses = expvar.NewInt("fsNotModifiedResponses")
fsNotFoundResponses = expvar.NewInt("fsNotFoundResponses")
fsOtherResponses = expvar.NewInt("fsOtherResponses")
// Total size in bytes for OK response bodies served.
fsResponseBodyBytes = expvar.NewInt("fsResponseBodyBytes")
)
func UpdateFSCounters(ctx *fasthttp.RequestCtx) {
// Increment the number of fsHandler calls.
fsCalls.Add(1)
// Update other stats counters
resp := &ctx.Response
switch resp.StatusCode() {
case fasthttp.StatusOK:
fsOKResponses.Add(1)
fsResponseBodyBytes.Add(int64(resp.Header.ContentLength()))
case fasthttp.StatusNotModified:
fsNotModifiedResponses.Add(1)
case fasthttp.StatusNotFound:
fsNotFoundResponses.Add(1)
default:
fsOtherResponses.Add(1)
}
}
func GetUserId(context *routing.Context) string {
return context.Get("userid").(string)
}
func SetUserId(context *routing.Context, userid string) {
context.Set("userid", userid)
}