-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
147 lines (114 loc) · 3.11 KB
/
Copy pathmain.go
File metadata and controls
147 lines (114 loc) · 3.11 KB
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
package main
import (
"fmt"
"net/http"
"os"
"github.com/gclkaze/DockerServer/dockerserver"
"github.com/gin-gonic/gin"
)
func createNewSession(config string, programId string, _ http.Header, c *gin.Context) {
sock, err := dockerserver.TheServer.CreateSession(config, programId)
if err != nil {
c.IndentedJSON(http.StatusInternalServerError, err)
return
}
//c.IndentedJSON(http.StatusOK, )
d := []byte(`{"socket":"` + sock + `"}`)
c.Data(http.StatusOK, "application/json", d)
dockerserver.TheServer.OpenSession(sock, config, programId)
}
func stopCurrentSession(config string, programId string, header http.Header, c *gin.Context) {
_, err := dockerserver.TheServer.StopSession(config, programId)
if err != nil {
c.IndentedJSON(http.StatusInternalServerError, err)
return
}
c.IndentedJSON(http.StatusOK, config)
}
func doWriteFile(data string, programId string, header http.Header, c *gin.Context, filename string) {
res, err := dockerserver.TheServer.WriteFile(data, programId, filename)
if err != nil {
c.IndentedJSON(http.StatusInternalServerError, err)
return
}
c.IndentedJSON(http.StatusOK, res)
}
func doGetFile(data string, programId string, header http.Header, c *gin.Context, filename string) {
filePath, err := dockerserver.TheServer.GetFile(data, programId, filename)
if err != nil {
c.IndentedJSON(http.StatusInternalServerError, err)
return
}
c.File(filePath)
go func() {
os.Remove(filePath)
}()
}
func createSession(c *gin.Context) {
jsonData, err := c.GetRawData()
if err != nil {
c.IndentedJSON(http.StatusInternalServerError, nil)
return
}
h := c.Request.Header
prId := h["Programid"][0]
config := string(jsonData[:])
defer logExecutionError()
createNewSession(config, prId, h, c)
}
func writeFile(c *gin.Context) {
jsonData, err := c.GetRawData()
if err != nil {
c.IndentedJSON(http.StatusInternalServerError, nil)
return
}
h := c.Request.Header
prId := h["Programid"][0]
filename := h["Filename"][0]
config := string(jsonData[:])
defer logExecutionError()
doWriteFile(config, prId, h, c, filename)
}
func getFile(c *gin.Context) {
jsonData, err := c.GetRawData()
if err != nil {
c.IndentedJSON(http.StatusInternalServerError, nil)
return
}
h := c.Request.Header
prId := h["Programid"][0]
filename := h["Filename"][0]
config := string(jsonData[:])
defer logExecutionError()
doGetFile(config, prId, h, c, filename)
}
func stopSession(c *gin.Context) {
jsonData, err := c.GetRawData()
if err != nil {
//Handle Error
c.IndentedJSON(http.StatusInternalServerError, nil)
return
}
h := c.Request.Header
prId := h["Programid"][0]
config := string(jsonData[:])
go func() {
defer logExecutionError()
stopCurrentSession(config, prId, h, c)
}()
c.IndentedJSON(http.StatusOK, prId)
}
func logExecutionError() {
if r := recover(); r != nil {
fmt.Println("Caught:", r)
}
}
func main() {
dockerserver.InitDockerServer()
router := gin.Default()
router.POST("/create", createSession)
router.POST("/stop", stopSession)
router.POST("/writeFile", writeFile)
router.GET("/getFile", getFile)
router.Run(dockerserver.TheServer.GetAddress())
}